rat/shared.py

25 lines
611 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
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__)
2023-07-12 14:52:47 +00:00
######################################################################
app.config['SERVER_NAME'] = '127.0.0.1:8886'
should_fetch_comments = True
######################################################################
2023-07-11 14:23:48 +00:00
app.config['CACHE_TYPE'] = 'SimpleCache'
cache = Cache(app)