├── README.md ├── app.py ├── music ├── acousticbreeze.mp3 ├── happyrock.mp3 └── ukulele.mp3 ├── requirements.txt └── templates ├── design.html └── simple.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDem/flask-music-streaming/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDem/flask-music-streaming/HEAD/app.py -------------------------------------------------------------------------------- /music/acousticbreeze.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDem/flask-music-streaming/HEAD/music/acousticbreeze.mp3 -------------------------------------------------------------------------------- /music/happyrock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDem/flask-music-streaming/HEAD/music/happyrock.mp3 -------------------------------------------------------------------------------- /music/ukulele.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDem/flask-music-streaming/HEAD/music/ukulele.mp3 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.12.2 2 | tornado==5.0.2 3 | -------------------------------------------------------------------------------- /templates/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDem/flask-music-streaming/HEAD/templates/design.html -------------------------------------------------------------------------------- /templates/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDem/flask-music-streaming/HEAD/templates/simple.html --------------------------------------------------------------------------------