├── .env.example ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── app ├── __init__.py ├── app.py ├── config.py ├── exceptions.py ├── lib │ ├── __init__.py │ ├── spotify.py │ └── supabase.py ├── models │ ├── __init__.py │ ├── spotify.py │ ├── spotify_api.py │ └── user.py ├── routes │ ├── __init__.py │ ├── auth.py │ └── spotify.py ├── templates.py ├── templates │ ├── base.html │ ├── customize.html │ ├── index.html │ ├── spotify.apple.html.j2 │ ├── spotify.default.html.j2 │ └── spotify.neon.html.j2 ├── theming.py └── utils.py ├── pyproject.toml ├── schema.sql └── uv.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/app.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/config.py -------------------------------------------------------------------------------- /app/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/exceptions.py -------------------------------------------------------------------------------- /app/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/lib/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/lib/spotify.py -------------------------------------------------------------------------------- /app/lib/supabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/lib/supabase.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/models/spotify.py -------------------------------------------------------------------------------- /app/models/spotify_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/models/spotify_api.py -------------------------------------------------------------------------------- /app/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/models/user.py -------------------------------------------------------------------------------- /app/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/routes/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/routes/auth.py -------------------------------------------------------------------------------- /app/routes/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/routes/spotify.py -------------------------------------------------------------------------------- /app/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/templates.py -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/customize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/templates/customize.html -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/spotify.apple.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/templates/spotify.apple.html.j2 -------------------------------------------------------------------------------- /app/templates/spotify.default.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/templates/spotify.default.html.j2 -------------------------------------------------------------------------------- /app/templates/spotify.neon.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/templates/spotify.neon.html.j2 -------------------------------------------------------------------------------- /app/theming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/theming.py -------------------------------------------------------------------------------- /app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/app/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/pyproject.toml -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/schema.sql -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaSunrise/spotify-playing-readme/HEAD/uv.lock --------------------------------------------------------------------------------