-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathutils.py
29 lines (24 loc) · 938 Bytes
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from flask import Flask
from notebooker.constants import DEFAULT_SERIALIZER
from notebooker.settings import WebappConfig
from notebooker.web.app import create_app, setup_app
from notebooker.web.utils import get_all_possible_templates
def _gen_all_templates(template_dict):
for template_name, children in template_dict.items():
if children:
yield from _gen_all_templates(children)
else:
yield template_name
def all_templates():
web_config = WebappConfig(
PY_TEMPLATE_BASE_DIR="",
SERIALIZER_CLS=DEFAULT_SERIALIZER,
SERIALIZER_CONFIG={},
SCHEDULER_MONGO_COLLECTION="jobs",
SCHEDULER_MONGO_DATABASE="apscheduler",
)
flask_app = Flask("test")
flask_app.config.from_object(web_config)
with flask_app.app_context():
templates = list(_gen_all_templates(get_all_possible_templates(warn_on_local=False)))
return templates