├── requirements.txt ├── static ├── img │ ├── syrics.png │ ├── syrics16.png │ ├── syrics32.png │ └── syrics96.png ├── js │ ├── script.js │ └── spotify.js └── css │ └── style.css ├── vercel.json ├── README.md ├── templates ├── index.html ├── base.html └── spotify.html ├── index.py ├── .gitignore └── spotify.py /requirements.txt: -------------------------------------------------------------------------------- 1 | flask==2.2.2 2 | Werkzeug==2.2.2 3 | spotipy==2.22.1 4 | -------------------------------------------------------------------------------- /static/img/syrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashrchandran/syrics-web/HEAD/static/img/syrics.png -------------------------------------------------------------------------------- /static/img/syrics16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashrchandran/syrics-web/HEAD/static/img/syrics16.png -------------------------------------------------------------------------------- /static/img/syrics32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashrchandran/syrics-web/HEAD/static/img/syrics32.png -------------------------------------------------------------------------------- /static/img/syrics96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashrchandran/syrics-web/HEAD/static/img/syrics96.png -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "builds": [ 4 | { 5 | "src": "index.py", 6 | "use": "@vercel/python" 7 | } 8 | ], 9 | "routes": [ 10 | { 11 | "src": "/(.*)", 12 | "dest": "index.py" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |  3 |
60 | Error Message
61 | some error ocurred
62 |
63 |