rat/shared.py

32 lines
718 B
Python
Raw Normal View History

2023-07-11 14:23:48 +00:00
from aioflask import Flask
from flask_caching import Cache
from functools import wraps
from proxify import Asgiproxify
2023-07-11 14:23:48 +00:00
def awaitify(sync_func):
"""Wrap a synchronous callable to allow ``await``'ing it"""
@wraps(sync_func)
async def async_func(*args, **kwargs):
return sync_func(*args, **kwargs)
return async_func
app = Flask(__name__)
proxified = Asgiproxify(app)
2023-07-11 14:23:48 +00:00
2023-07-12 14:52:47 +00:00
######################################################################
host = 'localhost'
port = 8885
2023-07-12 14:52:47 +00:00
should_fetch_comments = True
app.config['DEBUG'] = False
app.config['TESTING'] = False
2023-07-12 14:52:47 +00:00
######################################################################
2023-07-11 14:23:48 +00:00
app.config['CACHE_TYPE'] = 'SimpleCache'
cache = Cache(app)