├── .gitignore ├── LICENSE ├── README.md ├── parser.py ├── requirements.txt └── spet.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/spet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/spet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/spet/HEAD/README.md -------------------------------------------------------------------------------- /parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/spet/HEAD/parser.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | spotipy 2 | 3 | -------------------------------------------------------------------------------- /spet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/spet/HEAD/spet.py --------------------------------------------------------------------------------