├── .gitignore ├── LICENSE ├── README.md ├── main.py ├── requirements.txt └── spotifylyrics ├── api.py ├── auth ├── crypto.py ├── http.py ├── oauth.py └── utils.py ├── cache └── secrets.json ├── config.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/requirements.txt -------------------------------------------------------------------------------- /spotifylyrics/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/spotifylyrics/api.py -------------------------------------------------------------------------------- /spotifylyrics/auth/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/spotifylyrics/auth/crypto.py -------------------------------------------------------------------------------- /spotifylyrics/auth/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/spotifylyrics/auth/http.py -------------------------------------------------------------------------------- /spotifylyrics/auth/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/spotifylyrics/auth/oauth.py -------------------------------------------------------------------------------- /spotifylyrics/auth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/spotifylyrics/auth/utils.py -------------------------------------------------------------------------------- /spotifylyrics/cache/secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/spotifylyrics/cache/secrets.json -------------------------------------------------------------------------------- /spotifylyrics/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/spotifylyrics/config.py -------------------------------------------------------------------------------- /spotifylyrics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turreted/Spotify-Lyrics/HEAD/spotifylyrics/utils.py --------------------------------------------------------------------------------