Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does python climb the daily selection of Sugar Stack?

2025-01-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article will explain in detail how python climbs the daily selection of sugar nets. The content of the article is of high quality. Therefore, Xiaobian shares it with you as a reference. I hope that after reading this article, you will have a certain understanding of relevant knowledge.

Basic environmental configuration

python 3.6

pycharm

requests

pip install requests

Implementation code import requestsurl = 'www.duitang.com/napi/vienna/feed/list/by_common/? start=0&limit=18'headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36'}response = requests.get(url=url, headers=headers)html_data = response.json()dit = html_data['data']['object_list']for i in dit: img_data = i['atlas']['blogs'] for j in img_data: img_url = j['photo']['path'] name = img_url.split('_')[-1] img_url_response = requests.get(url=img_url, headers=headers) with open ('G:\\python\\demo\\case\\heap sugar net\\picture\\' + name, mode ='wb') as f: f.write(img_url_response.content) print(img_url) to effect

About python how to climb the pile sugar network daily selection pictures to share here, I hope the above content can be of some help to everyone, you can learn more knowledge. If you think the article is good, you can share it so that more people can see it.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report