2
如何使用urllib3讀取關於播放歌曲的信息?我應該使用哪些標題?Python 3 - Urllib3讀取互聯網廣播元數據
import urllib3
http = urllib3.PoolManager()
response = http.request("GET", "http://pool.cdn.lagardere.cz/fm-evropa2-128", headers={
'User-Agent': 'User-Agent: VLC/2.0.5 LibVLC/2.0.5',
'Icy-MetaData': '1',
'Range': 'bytes=0-',
})
print(response.data)
我試過了。但它發送請求。誰能幫我?感謝您的回答。
也許這有助於http://docs.python-requests.org/en/latest/user/advanced/ –
感謝它看起來很好! –