There is an audio stream
I learned to write it down:
import requests def save_stream(): stream_url = 'http://ic7.101.ru:8000/c15_3' r = requests.get(stream_url, stream=True) with open('./stream.mp3', 'wb') as f: try: for block in r.iter_content(1024): f.write(block) except KeyboardInterrupt: pass Now I want to learn how to play it?)
That's all, I figured it out) Here's the ready code , writes and immediately plays the audio stream.