
python
文章平均质量分 81
SevenZS
404
展开
-
数据分析笔记 python
数据分析师原创 2022-03-25 19:01:37 · 193 阅读 · 0 评论 -
爬虫Scrapy笔记
爬虫原创 2022-03-13 16:06:24 · 1840 阅读 · 0 评论 -
爬虫学习笔记
爬虫 1. 简单的爬虫 from urllib.request import urlopen url = "https://ssr1.scrape.center/" resp = urlopen(url) message = resp.read().decode("utf-8") print(message) with open("my_spyder.html", mode="w") as f: f.write(message) print("原创 2022-02-19 18:50:24 · 1937 阅读 · 2 评论