
● Python
唐大麦
只要往前走,就不会迟。精疲力尽的时侯应该选择休息,切不可放弃。
展开
-
理解Python协程:从yield/send到yield from再到async/await
Python中的协程大概经历了如下三个阶段: 1. 最初的生成器变形yield/send 2. 引入@asyncio.coroutine和yield from 3. 在最近的Python3.5版本中引入async/await关键字一、生原创 2017-10-27 10:16:20 · 22796 阅读 · 10 评论 -
常见的Python 2 和 3 差别
Python2.7print "hello"helloPython3.0print "hello" File "tmp.py", line 1 print "hello" ^SyntaxError: invalid syntax正确应为: Python3.0print("hello")helloPython2.7print {}.keys()[]Pyth原创 2017-10-30 11:20:30 · 2253 阅读 · 0 评论 -
在Scrapy中启动shell来调试
在Scrapy中写爬虫时,有时想在spider运行到某个位置时暂停,查看被处理的response, 以确认response是否是期望的。这可以通过 scrapy.shell.inspect_response 函数来实现。以下是如何在spider中调用该函数的例子:import scrapyclass MySpider(scrapy.Spider): name = "myspider"原创 2017-11-23 16:44:56 · 2913 阅读 · 0 评论