totrader/totrader/routes/api.py

14 lines
308 B
Python

from quart import Blueprint, current_app
from totrader.models import *
from totrader.tasks import trader
bp = Blueprint('tasks', 'tasks', url_prefix='/api/tasks')
@bp.route('/store_ticker_data')
async def store_ticker_data():
current_app.add_background_task(trader.store_ticker_data)
return '1'