Flask框架基本模型

从Flask切换到FastAPI,备份一下。估计以后不会再用到Flask框架了。主要看中FastAPI的异步编程模型,可以和其它程序如mitmproxy比较好的融合在一个进程中。

主程序

python 复制代码
import os.path
import threading
from importlib import import_module

from flask import Flask
from flask_cors import CORS

import platform
import logging

# if platform.system() == 'Darwin':
#     logging_conf = os.path.join(os.path.dirname(__file__), '..', 'logging-dev.conf')
# else:
#     logging_conf = os.path.join(os.path.dirname(__file__), '..', 'logging-server.conf')
#
# logging.config.fileConfig(logging_conf)
# logger = logging.getLogger(__name__)


from twisted.web import server, wsgi
from twisted.internet import endpoints, reactor
class Main:
    def __init__(self):
        self.app = self.create_app()

        # self.messaging_methods = []
        # logger.info('CMS app initialized successfully.')

    def create_app(self):
        app = Flask(__name__)
        CORS(app, supports_credentials=True)  # 支持跨域请求
        # app.config.from_object('config')
        # self.register_database(app)
        self.register_blueprint(app)
        # init_login(app)
        # init_crawler(app)

        return app



    def register_blueprint(self, app):
        from qmtagent.api import api
        app.register_blueprint(api, url_prefix='/api')


    def start(self):
        root_resource = wsgi.WSGIResource(reactor, reactor.getThreadPool(), self.app)
        factory = server.Site(root_resource)
        # reactor.listenTCP(5000, factory)
        http_server = endpoints.TCP4ServerEndpoint(reactor, 5000)
        http_server.listen(factory)

        print("服务启动,监听端口为5000 ...")
        # start event loop
        reactor.run()

if __name__ == '__main__':
    Main().start()

Controller

python 复制代码
from . import api
from flask import jsonify, request
from playhouse.shortcuts import model_to_dict
from ..qmtclient import QMTClient


@api.route('/version')
def version():
    return 'v0.0.1'

@api.route('/acc_info')
def show_account():
    client = QMTClient()
    client.connect()
    accinfo = client.get_account_info()
    # json_obj = model_to_dict(accinfo.__class__, accinfo, recurse=False, only=['account_id', 'cash', 'market_value', 'total_asset'])
    json_obj = {'account_id': accinfo.account_id, 'cash':accinfo.cash, 'market_value': accinfo.market_value}
    response = jsonify(json_obj)
    return response


@api.route('/position')
def get_positions():
    return 'v0.0.1'

@api.route('/buy', methods=['POST'])
def buy():
    json_data = request.get_json()
    code = json_data['code']
    volume = json_data['volume']
    price = json_data['price']
    client = QMTClient()
    client.connect()
    client.buy(code, int(volume), float(price))


@api.route('/sell', methods=['POST'])
def sell():
    json_data = request.get_json()
    code = json_data['code']
    volume = json_data['volume']
    price = json_data['price']
    client = QMTClient()
    client.connect()
    client.sell(code, int(volume), float(price))


@api.route('/cancel')
def cancel_order():
    json_data = request.get_json()
    order_id = json_data['order_id']
    client = QMTClient()
    client.connect()
    client.cancel_order(order_id)

controller目录下放__init__.py,内容为:

python 复制代码
from flask import Blueprint

api = Blueprint('api', __name__)

from . import qmt_api
# from . import ebook_api
# from . import scrapy_api
相关推荐
jasmine s7 分钟前
Pandas
开发语言·python
郭wes代码7 分钟前
Cmd命令大全(万字详细版)
python·算法·小程序
leaf_leaves_leaf25 分钟前
win11用一条命令给anaconda环境安装GPU版本pytorch,并检查是否为GPU版本
人工智能·pytorch·python
夜雨飘零130 分钟前
基于Pytorch实现的说话人日志(说话人分离)
人工智能·pytorch·python·声纹识别·说话人分离·说话人日志
404NooFound37 分钟前
Python轻量级NoSQL数据库TinyDB
开发语言·python·nosql
天天要nx1 小时前
D102【python 接口自动化学习】- pytest进阶之fixture用法
python·pytest
minstbe1 小时前
AI开发:使用支持向量机(SVM)进行文本情感分析训练 - Python
人工智能·python·支持向量机
落魄实习生1 小时前
AI应用-本地模型实现AI生成PPT(简易版)
python·ai·vue·ppt
苏言の狗1 小时前
Pytorch中关于Tensor的操作
人工智能·pytorch·python·深度学习·机器学习
用余生去守护2 小时前
python报错系列(16)--pyinstaller ????????
开发语言·python