import urllib.request

url = "https://suno.com/_next/static/immutable/chunks/1u2n6hg0pesdy.js"
req = urllib.request.Request(url, headers={'User-Agent': 'Mozilla/5.0'})
with urllib.request.urlopen(req) as resp:
    data = resp.read().decode('utf-8')
    with open('studio_stream.js', 'w', encoding='utf-8') as f:
        f.write(data)
    print("Saved studio_stream.js, length:", len(data))
