课程完整代码:https://github.com/hunantangke/python3-crawler
(使用的是python3.5)
(使用的是python3.5)
2017-02-24
最新回答 / Bobzhangxiaotao
重点是这个:for data in self.datas: fout.write("<tr>") fout.write("<td>") fout.write(data['url']) fout.write("</td>") fout.write("<td>") fout.write(data['title']) fout.write("</td>") fout.write("<td>")...
2017-02-24
已采纳回答 / 马里奥的马里奥
class UrlManager(object): def __init__(self): self.new_urls=set() self.old_urls=set() def add_new_url(self,url): if url is None: return if url not in self.new_urls and ur...
2017-02-22
urllib.parse.urljoin(base,url)会自动将base中.com前的东西和url拼接起来真是神奇
2017-02-21