mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 05:39:40 +02:00
36 lines
872 B
Python
36 lines
872 B
Python
|
from _gen_utils import render_python_template
|
||
|
from _static import PROJECT_DIR
|
||
|
|
||
|
template = """# GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
{% for file in data.files %}from .{{ file }} import *
|
||
|
{% endfor %}
|
||
|
"""
|
||
|
|
||
|
SCHEMA_PATH = PROJECT_DIR / "mealie" / "schema"
|
||
|
|
||
|
|
||
|
def generate_init_files() -> None:
|
||
|
|
||
|
for schema in SCHEMA_PATH.iterdir():
|
||
|
if not schema.is_dir():
|
||
|
print(f"Skipping {schema}")
|
||
|
continue
|
||
|
|
||
|
print(f"Generating {schema}")
|
||
|
init_file = schema.joinpath("__init__.py")
|
||
|
|
||
|
module_files = [
|
||
|
f.stem for f in schema.iterdir() if f.is_file() and f.suffix == ".py" and not f.stem.startswith("_")
|
||
|
]
|
||
|
render_python_template(template, init_file, {"files": module_files})
|
||
|
|
||
|
|
||
|
def main():
|
||
|
print("Starting...")
|
||
|
generate_init_files()
|
||
|
print("Finished...")
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|