91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介


資源截圖

代碼片段和文件信息

#?-*-?coding:?utf-8?-*-

import?urllib2
import?urlparse


def?download1(url):
????“““Simple?downloader“““
????return?urllib2.urlopen(url).read()


def?download2(url):
????“““Download?function?that?catches?errors“““
????print?‘Downloading:‘?url
????try:
????????html?=?urllib2.urlopen(url).read()
????except?urllib2.URLError?as?e:
????????print?‘Download?error:‘?e.reason
????????html?=?None
????return?html


def?download3(url?num_retries=2):
????“““Download?function?that?also?retries?5XX?errors“““
????print?‘Downloading:‘?url
????try:
????????html?=?urllib2.urlopen(url).read()
????except?urllib2.URLError?as?e:
????????print?‘Download?error:‘?e.reason
????????html?=?None
????????if?num_retries?>?0:
????????????if?hasattr(e?‘code‘)?and?500?<=?e.code?????????????????#?retry?5XX?HTTP

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????????174??2015-09-28?13:29??wswp-code-9e6b82b47087\.hg_archival.txt
?????文件????????1201??2015-09-28?13:29??wswp-code-9e6b82b47087\README.md
?????文件????????2364??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter01\common.py
?????文件?????????553??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter01\iteration_crawler1.py
?????文件?????????846??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter01\iteration_crawler2.py
?????文件?????????931??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter01\link_crawler1.py
?????文件????????1149??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter01\link_crawler2.py
?????文件????????4649??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter01\link_crawler3.py
?????文件?????????445??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter01\sitemap_crawler.py
?????文件?????????554??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter02\bs_example.py
?????文件?????????462??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter02\common.py
?????文件????????4816??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter02\link_crawler.py
?????文件?????????371??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter02\lxml_example.py
?????文件????????2293??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter02\performance.py
?????文件?????????333??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter02\regex_example.py
?????文件?????????700??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter02\scrape_callback1.py
?????文件?????????940??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter02\scrape_callback2.py
?????文件????????3686??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter03\disk_cache.py
?????文件????????3230??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter03\downloader.py
?????文件????????3183??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter03\link_crawler.py
?????文件????????2356??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter03\mongo_cache.py
?????文件?????????818??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter04\alexa_cb.py
?????文件?????????564??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter04\alexa_fn.py
?????文件????????3026??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter04\mongo_queue.py
?????文件????????2736??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter04\process_crawler.py
?????文件?????????471??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter04\process_test.py
?????文件?????????375??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter04\sequential_test.py
?????文件????????2491??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter04\threaded_crawler.py
?????文件?????????475??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter04\threaded_test.py
?????文件????????2747??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter05\browser_render.py
?????文件????????1101??2015-09-28?13:29??wswp-code-9e6b82b47087\chapter05\search1.py
............此處省略133個文件信息

評論

共有 條評論