gitextract_wj20g4fr/ ├── .github/ │ └── workflows/ │ └── install_lint_test.yml ├── .gitignore ├── Makefile ├── README.md ├── pydaria/ │ ├── __init__.py │ ├── app.py │ ├── blueprints/ │ │ ├── __init__.py │ │ ├── restapi/ │ │ │ ├── __init__.py │ │ │ └── resources.py │ │ └── webui/ │ │ ├── __init__.py │ │ ├── templates/ │ │ │ ├── index.html │ │ │ └── product.html │ │ └── views.py │ ├── ext/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── appearance.py │ │ ├── auth.py │ │ ├── commands.py │ │ ├── configuration.py │ │ └── database.py │ ├── models.py │ └── tests/ │ ├── __init__.py │ ├── conftest.py │ └── test_api.py ├── requirements.txt ├── requirements_dev.txt ├── requirements_test.txt └── settings.toml