本文最后更新于 2024-07-26T20:49:51+08:00
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
import urllib_handler的基本使用.request url='https://movie.douban.com/j/chart/top_list?type=17&interval_id=100%3A90&action=&start=0&limit=20' headers={ 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3' } req=urllib.request.Request(url=url,headers=headers) res=urllib.request.urlopen(req) html=res.read().decode('utf-8')
with open('douban.json','w',encoding='utf-8')as f: f.write(html) print('豆瓣电影数据下载完成')
|
urllib——ajax的get请求豆瓣电影
https://ianwusb.blog/2024/07/26/urllib——ajax的get请求豆瓣电影/