├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ ├── fly.yml │ └── python-app.yml ├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── fly.toml ├── requirements.dev.txt ├── requirements.txt ├── templates ├── _base.html ├── error.html └── video.html ├── tests.py └── yaas.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/fly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/.github/workflows/fly.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/README.md -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/fly.toml -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Jinja2==3.1.4 2 | starlette==0.25.0 3 | yt-dlp==2024.8.6 4 | uvicorn==0.30.5 5 | -------------------------------------------------------------------------------- /templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/templates/_base.html -------------------------------------------------------------------------------- /templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/templates/error.html -------------------------------------------------------------------------------- /templates/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/templates/video.html -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/tests.py -------------------------------------------------------------------------------- /yaas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanlao/yaas/HEAD/yaas.py --------------------------------------------------------------------------------