├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── config.py ├── core │ └── exceptions.py ├── routes │ ├── album_routes.py │ ├── lyrics_routes.py │ ├── playlist_routes.py │ └── song_routes.py ├── schemas │ ├── album_schema.py │ ├── playlist_schema.py │ └── song_schema.py └── services │ ├── crypto_service.py │ └── saavn_service.py ├── docker-compose.yml ├── main.py └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/README.md -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/config.py -------------------------------------------------------------------------------- /app/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/core/exceptions.py -------------------------------------------------------------------------------- /app/routes/album_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/routes/album_routes.py -------------------------------------------------------------------------------- /app/routes/lyrics_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/routes/lyrics_routes.py -------------------------------------------------------------------------------- /app/routes/playlist_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/routes/playlist_routes.py -------------------------------------------------------------------------------- /app/routes/song_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/routes/song_routes.py -------------------------------------------------------------------------------- /app/schemas/album_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/schemas/album_schema.py -------------------------------------------------------------------------------- /app/schemas/playlist_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/schemas/playlist_schema.py -------------------------------------------------------------------------------- /app/schemas/song_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/schemas/song_schema.py -------------------------------------------------------------------------------- /app/services/crypto_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/services/crypto_service.py -------------------------------------------------------------------------------- /app/services/saavn_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/app/services/saavn_service.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxkhn/jiosaavn-api/HEAD/requirements.txt --------------------------------------------------------------------------------