python爬取wallhaven壁纸实例
python爬取wallhaven壁纸实例
1 | import os |
定义原始网页地址
1 | url = 'https://wallhaven.cc/search?categories=111&purity=100&resolutions=3840x2160&topRange=1w&sorting=toplist&order=desc&ai_art_filter=0&page=2' |
循环5次,每次处理一个网页
1 | for i in range(5): |
匹配提取网址中的数字,并累加1
1 | num_str = url.split('=')[-1] |
使用requests库获取网页内容
1 | response = requests.get(new_url) |
评论