thief_music_api/server/soar_rank.py

10 lines
183 B
Python
Raw Permalink Normal View History

2023-07-25 18:39:59 +08:00
import requests
from requests_html import HTMLSession
url = "https://music.163.com/api/playlist/detail?id=19723756"
response = requests.get(url)
data = response.json()
print(data)