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
相关推荐
大模型铲屎官21 分钟前
【Python-Day 14】玩转Python字典(上篇):从零开始学习创建、访问与操作
开发语言·人工智能·pytorch·python·深度学习·大模型·字典
yunvwugua__24 分钟前
Python训练营打卡 Day27
开发语言·python
Stara05111 小时前
基于多头自注意力机制(MHSA)增强的YOLOv11主干网络—面向高精度目标检测的结构创新与性能优化
人工智能·python·深度学习·神经网络·目标检测·计算机视觉·yolov11
源码方舟1 小时前
SpringBoot + Shiro + JWT 实现认证与授权完整方案实现
java·spring boot·后端
那雨倾城2 小时前
使用 OpenCV 将图像中标记特定颜色区域
人工智能·python·opencv·计算机视觉·视觉检测
LuckyTHP5 小时前
java 使用zxing生成条形码(可自定义文字位置、边框样式)
java·开发语言·python
热河暖男5 小时前
【实战解决方案】Spring Boot+Redisson构建高并发Excel导出服务,彻底解决系统阻塞难题
spring boot·后端·excel
mahuifa6 小时前
(7)python开发经验
python·qt·pyside6·开发经验
学地理的小胖砸8 小时前
【Python 操作 MySQL 数据库】
数据库·python·mysql
安迪小宝8 小时前
6 任务路由与负载均衡
运维·python·celery