python
古月小哥
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python协程
#使用队列与协程结合来进行并发import asyncioimport timeasync def download(delay,what): await asyncio.sleep(delay) print(what)async def mutil_download(tlist,n): #create_task的动作必须在async函数中 tasklist = [] while True: if len(tlist)==0: .原创 2021-12-22 20:46:27 · 502 阅读 · 0 评论 -
python2.7下面安装matplotlib
matplotlib简易安装说明原创 2017-12-26 21:57:30 · 8533 阅读 · 0 评论 -
猫眼网基础爬虫-小白的第一次爬虫经历
以下为最近爬取猫眼TOP100榜单的代码:import requestsimport reimport jsonimport datetimeimport timedef get_one_page(url): #获取网页 headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x...原创 2018-08-12 21:56:08 · 520 阅读 · 0 评论
分享