IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> uwsgi + nginx 部署python Flask项目 -> 正文阅读

[Python知识库]uwsgi + nginx 部署python Flask项目

uwsgi + nginx 部署python Flask项目

参考:

https://www.runoob.com/django/django-nginx-uwsgi.html

https://www.jianshu.com/p/6452596c4edb

1.基本流程

# 安装flask
$ pip install flask

然后写一个简单的服务,我就写一个控制直播推流的开关

from flask import Flask

app = Flask(__name__)

global status

@app.route('/on')
def turn_on():
    global status
    status = 1
    return 'living server is on!'

@app.route('/off')
def turn_off():
    global status
    status = 0
    return 'living server is off!'

@app.route('/status')
def live_status():
   global status
   return str(status);

if __name__ == '__main__':
    global status
    status = 1 ;
    app.run()
		

写好之后可以在本地跑起来试试,端口默认5000

然后安装uwsgi

$ pip install uwsgi

在/usr/local路径下建立目录写配置文件uwgsi.ini

(我们新建文件夹uwsgi_script用来放uwsgi信息)

socket          = 127.0.0.1:7100
chdir           = /usr/local/live
wsgi-file       = server.py
callable        = app 
processes       = 4
vacuum          = true
master          = true

再写nginx配置

server {
    
    listen 8080;
    
    server_name data.migelab.com;
    charset utf-8;
    
    client_max_body_size 75M;
    
    location / { 
 
        include uwsgi_params;                       # 导入uwsgi配置 
    
        uwsgi_pass 127.0.0.1:7100;                  # 转发端口,需要和uwsgi配置当中的监听端口一致
        uwsgi_param UWSGI_PYTHON /usr/bin/python3;  
        uwsgi_param UWSGI_CHDIR /usr/local/live;    # 项目根目录
        uwsgi_param UWSGI_SCRIPT server:app;           
    }   
}
# 启动nginx	
./nginx
#	启动uwsgi
uwsgi --ini /usr/local/live/uwsgi_script/uwsgi.ini &

2.功能升级

主要是升级两个内容:加入使用POST和GET方法;

? 返回 JSON对象的响应;

? 管理一个视频流升级为管理多个视频流

JSON格式响应:

参考链接:https://flask.palletsprojects.com/en/1.1.x/api/#flask.Flask.response_class

? https://blog.csdn.net/weixin_41665106/article/details/105599235

使用JSON格式去响应前端的请求:

@app.route('/on', methods=['POST','GET'])
def turn_on():
    global status
    if request.method =='POST':
       camera = request.form['camera']
       print(camera)
       if camera != KeyError:
           status[int(camera)] = 1
           response = make_response({
               'status':'success',
               'code':'200',
               'ERROR':''
           },200)
           response.headers={
               'content-type':'JSON'
            }
           return response
       else :
           response =  make_response({
               'status': 'fail',
               'code': '400',
               'ERROR':'camera code error!'
            },400)
           response.headers = {
               'content-type': 'JSON'
           }
           return response
    else:
        response = make_response({
            'status': 'fail',
            'code': '500',
            'ERROR': 'GET method error!'
        }, 500)
        response.headers = {
            'content-type': 'JSON'
        }
        return response

# 解决问题:如何构建响应
#          如何带参数

处理异常:

#   异常类
global InvalidUsage
class InvalidUsage(Exception):
    status_code = 400

    def __init__(self,message,status_code=400):
        Exception.__init__(self)
        self.message = message
        self.status_code = status_code

@app.errorhandler(InvalidUsage)
def invalid_usage(error):
    response = make_response(error.message)
    response.status_code = error.status_code
    return response

使用了抛出异常之后,之前的响应代码就简化了许多:

@app.route('/on', methods=['POST','GET'])
def turn_on():
    global status
    if request.method =='POST':
       camera = request.form['camera']
       print(camera)
       if camera != KeyError:
           status[int(camera)] = 1
           response = make_response({
               'status':'success',
               'code':'200',
               'ERROR':''
           },200)
           response.headers={
               'content-type':'JSON'
            }
           return response
       else :
           raise InvalidUsage('camera code is inValid or empty', status_code=400)
    else:
        raise InvalidUsage('GET method is InValid',status_code = 403)
        
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-02-14 21:05:39  更:2022-02-14 21:06:38 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 23:34:20-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码