forked from jackfrued/Python-100-Days
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
166 changed files
with
393 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Define here the models for your scraped items | ||
# | ||
# See documentation in: | ||
# https://doc.scrapy.org/en/latest/topics/items.html | ||
|
||
import scrapy | ||
|
||
|
||
class GoodsItem(scrapy.Item): | ||
|
||
price = scrapy.Field() | ||
deal = scrapy.Field() | ||
title = scrapy.Field() | ||
|
||
|
||
class BeautyItem(scrapy.Item): | ||
|
||
title = scrapy.Field() | ||
tag = scrapy.Field() | ||
width = scrapy.Field() | ||
height = scrapy.Field() | ||
url = scrapy.Field() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Define here the models for your spider middleware | ||
# | ||
# See documentation in: | ||
# https://doc.scrapy.org/en/latest/topics/spider-middleware.html | ||
|
||
from scrapy import signals | ||
from scrapy.http import HtmlResponse | ||
|
||
from selenium import webdriver | ||
from selenium.common.exceptions import TimeoutException | ||
|
||
|
||
class Image360SpiderMiddleware(object): | ||
# Not all methods need to be defined. If a method is not defined, | ||
# scrapy acts as if the spider middleware does not modify the | ||
# passed objects. | ||
|
||
@classmethod | ||
def from_crawler(cls, crawler): | ||
# This method is used by Scrapy to create your spiders. | ||
s = cls() | ||
crawler.signals.connect(s.spider_opened, signal=signals.spider_opened) | ||
return s | ||
|
||
def process_spider_input(self, response, spider): | ||
# Called for each response that goes through the spider | ||
# middleware and into the spider. | ||
|
||
# Should return None or raise an exception. | ||
return None | ||
|
||
def process_spider_output(self, response, result, spider): | ||
# Called with the results returned from the Spider, after | ||
# it has processed the response. | ||
|
||
# Must return an iterable of Request, dict or Item objects. | ||
for i in result: | ||
yield i | ||
|
||
def process_spider_exception(self, response, exception, spider): | ||
# Called when a spider or process_spider_input() method | ||
# (from other spider middleware) raises an exception. | ||
|
||
# Should return either None or an iterable of Response, dict | ||
# or Item objects. | ||
pass | ||
|
||
def process_start_requests(self, start_requests, spider): | ||
# Called with the start requests of the spider, and works | ||
# similarly to the process_spider_output() method, except | ||
# that it doesn’t have a response associated. | ||
|
||
# Must return only requests (not items). | ||
for r in start_requests: | ||
yield r | ||
|
||
def spider_opened(self, spider): | ||
spider.logger.info('Spider opened: %s' % spider.name) | ||
|
||
|
||
class Image360DownloaderMiddleware(object): | ||
# Not all methods need to be defined. If a method is not defined, | ||
# scrapy acts as if the downloader middleware does not modify the | ||
# passed objects. | ||
|
||
@classmethod | ||
def from_crawler(cls, crawler): | ||
# This method is used by Scrapy to create your spiders. | ||
s = cls() | ||
crawler.signals.connect(s.spider_opened, signal=signals.spider_opened) | ||
return s | ||
|
||
def process_request(self, request, spider): | ||
# Called for each request that goes through the downloader | ||
# middleware. | ||
|
||
# Must either: | ||
# - return None: continue processing this request | ||
# - or return a Response object | ||
# - or return a Request object | ||
# - or raise IgnoreRequest: process_exception() methods of | ||
# installed downloader middleware will be called | ||
return None | ||
|
||
def process_response(self, request, response, spider): | ||
# Called with the response returned from the downloader. | ||
|
||
# Must either; | ||
# - return a Response object | ||
# - return a Request object | ||
# - or raise IgnoreRequest | ||
return response | ||
|
||
def process_exception(self, request, exception, spider): | ||
# Called when a download handler or a process_request() | ||
# (from other downloader middleware) raises an exception. | ||
|
||
# Must either: | ||
# - return None: continue processing this exception | ||
# - return a Response object: stops process_exception() chain | ||
# - return a Request object: stops process_exception() chain | ||
pass | ||
|
||
def spider_opened(self, spider): | ||
spider.logger.info('Spider opened: %s' % spider.name) | ||
|
||
|
||
class TaobaoDownloaderMiddleWare(object): | ||
|
||
def __init__(self, timeout=None): | ||
self.timeout = timeout | ||
self.browser = webdriver.Chrome() | ||
self.browser.set_window_size(1000, 600) | ||
self.browser.set_page_load_timeout(self.timeout) | ||
|
||
def __del__(self): | ||
self.browser.close() | ||
|
||
def process_request(self, request, spider): | ||
try: | ||
self.browser.get(request.url) | ||
return HtmlResponse(url=request.url, body=self.browser.page_source, | ||
request=request, encoding='utf-8', status=200) | ||
except TimeoutException: | ||
return HtmlResponse(url=request.url, status=500, request=request) | ||
|
||
def process_response(self, request, response, spider): | ||
return response | ||
|
||
def process_exception(self, request, exception, spider): | ||
pass | ||
|
||
@classmethod | ||
def from_crawler(cls, crawler): | ||
return cls(timeout=10) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Define your item pipelines here | ||
# | ||
# Don't forget to add your pipeline to the ITEM_PIPELINES setting | ||
# See: https://doc.scrapy.org/en/latest/topics/item-pipeline.html | ||
import logging | ||
|
||
from pymongo import MongoClient | ||
from scrapy import Request | ||
from scrapy.exceptions import DropItem | ||
from scrapy.pipelines.images import ImagesPipeline | ||
|
||
|
||
logger = logging.getLogger('SaveImagePipeline') | ||
|
||
|
||
class SaveImagePipeline(ImagesPipeline): | ||
|
||
def get_media_requests(self, item, info): | ||
yield Request(url=item['url']) | ||
|
||
def item_completed(self, results, item, info): | ||
logger.debug('图片下载完成!') | ||
if not results[0][0]: | ||
raise DropItem('下载失败') | ||
return item | ||
|
||
def file_path(self, request, response=None, info=None): | ||
return request.url.split('/')[-1] | ||
|
||
|
||
class SaveToMongoPipeline(object): | ||
|
||
def __init__(self, mongo_url, db_name): | ||
self.mongo_url = mongo_url | ||
self.db_name = db_name | ||
self.client = None | ||
self.db = None | ||
|
||
def process_item(self, item, spider): | ||
return item | ||
|
||
def open_spider(self, spider): | ||
self.client = MongoClient(self.mongo_url) | ||
self.db = self.client[self.db_name] | ||
|
||
def close_spider(self, spider): | ||
self.client.close() | ||
|
||
@classmethod | ||
def from_crawler(cls, crawler): | ||
return cls(crawler.settings.get('MONGO_URL'), | ||
crawler.settings.get('MONGO_DB')) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Scrapy settings for image360 project | ||
# | ||
# For simplicity, this file contains only settings considered important or | ||
# commonly used. You can find more settings consulting the documentation: | ||
# | ||
# https://doc.scrapy.org/en/latest/topics/settings.html | ||
# https://doc.scrapy.org/en/latest/topics/downloader-middleware.html | ||
# https://doc.scrapy.org/en/latest/topics/spider-middleware.html | ||
|
||
BOT_NAME = 'image360' | ||
|
||
SPIDER_MODULES = ['image360.spiders'] | ||
NEWSPIDER_MODULE = 'image360.spiders' | ||
|
||
MONGO_URL = 'mongodb://120.77.222.217:27017' | ||
MONGO_DB = 'image360' | ||
|
||
|
||
# Crawl responsibly by identifying yourself (and your website) on the user-agent | ||
USER_AGENT = 'Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.133 Mobile Safari/535.19' | ||
|
||
# Obey robots.txt rules | ||
ROBOTSTXT_OBEY = False | ||
|
||
# Configure maximum concurrent requests performed by Scrapy (default: 16) | ||
CONCURRENT_REQUESTS = 2 | ||
|
||
# Configure a delay for requests for the same website (default: 0) | ||
# See https://doc.scrapy.org/en/latest/topics/settings.html#download-delay | ||
# See also autothrottle settings and docs | ||
DOWNLOAD_DELAY = 3 | ||
RANDOMIZE_DOWNLOAD_DELAY = True | ||
# The download delay setting will honor only one of: | ||
#CONCURRENT_REQUESTS_PER_DOMAIN = 16 | ||
#CONCURRENT_REQUESTS_PER_IP = 16 | ||
|
||
# Disable cookies (enabled by default) | ||
#COOKIES_ENABLED = False | ||
|
||
# Disable Telnet Console (enabled by default) | ||
#TELNETCONSOLE_ENABLED = False | ||
|
||
# Override the default request headers: | ||
#DEFAULT_REQUEST_HEADERS = { | ||
# 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | ||
# 'Accept-Language': 'en', | ||
#} | ||
|
||
# Enable or disable spider middlewares | ||
# See https://doc.scrapy.org/en/latest/topics/spider-middleware.html | ||
#SPIDER_MIDDLEWARES = { | ||
# 'image360.middlewares.Image360SpiderMiddleware': 543, | ||
#} | ||
|
||
# Enable or disable downloader middlewares | ||
# See https://doc.scrapy.org/en/latest/topics/downloader-middleware.html | ||
DOWNLOADER_MIDDLEWARES = { | ||
# 'image360.middlewares.Image360DownloaderMiddleware': 543, | ||
'image360.middlewares.TaobaoDownloaderMiddleWare': 500, | ||
} | ||
|
||
# Enable or disable extensions | ||
# See https://doc.scrapy.org/en/latest/topics/extensions.html | ||
#EXTENSIONS = { | ||
# 'scrapy.extensions.telnet.TelnetConsole': None, | ||
#} | ||
|
||
IMAGES_STORE = './resources/' | ||
|
||
# Configure item pipelines | ||
# See https://doc.scrapy.org/en/latest/topics/item-pipeline.html | ||
# ITEM_PIPELINES = { | ||
# 'image360.pipelines.SaveImagePipeline': 300, | ||
# 'image360.pipelines.SaveToMongoPipeline': 301, | ||
# } | ||
|
||
LOG_LEVEL = 'DEBUG' | ||
|
||
# Enable and configure the AutoThrottle extension (disabled by default) | ||
# See https://doc.scrapy.org/en/latest/topics/autothrottle.html | ||
#AUTOTHROTTLE_ENABLED = True | ||
# The initial download delay | ||
#AUTOTHROTTLE_START_DELAY = 5 | ||
# The maximum download delay to be set in case of high latencies | ||
#AUTOTHROTTLE_MAX_DELAY = 60 | ||
# The average number of requests Scrapy should be sending in parallel to | ||
# each remote server | ||
#AUTOTHROTTLE_TARGET_CONCURRENCY = 1.0 | ||
# Enable showing throttling stats for every response received: | ||
#AUTOTHROTTLE_DEBUG = False | ||
|
||
# Enable and configure HTTP caching (disabled by default) | ||
# See https://doc.scrapy.org/en/latest/topics/downloader-middleware.html#httpcache-middleware-settings | ||
#HTTPCACHE_ENABLED = True | ||
#HTTPCACHE_EXPIRATION_SECS = 0 | ||
#HTTPCACHE_DIR = 'httpcache' | ||
#HTTPCACHE_IGNORE_HTTP_CODES = [] | ||
#HTTPCACHE_STORAGE = 'scrapy.extensions.httpcache.FilesystemCacheStorage' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# This package will contain the spiders of your Scrapy project | ||
# | ||
# Please refer to the documentation for information on how to create and manage | ||
# your spiders. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# -*- coding: utf-8 -*- | ||
from json import loads | ||
from urllib.parse import urlencode | ||
|
||
import scrapy | ||
|
||
from image360.items import BeautyItem | ||
|
||
|
||
class ImageSpider(scrapy.Spider): | ||
name = 'image' | ||
allowed_domains = ['image.so.com'] | ||
|
||
def start_requests(self): | ||
base_url = 'http://image.so.com/zj?' | ||
param = {'ch': 'beauty', 'listtype': 'new', 'temp': 1} | ||
for page in range(10): | ||
param['sn'] = page * 30 | ||
full_url = base_url + urlencode(param) | ||
yield scrapy.Request(url=full_url) | ||
|
||
def parse(self, response): | ||
model_dict = loads(response.text) | ||
for elem in model_dict['list']: | ||
item = BeautyItem() | ||
item['title'] = elem['group_title'] | ||
item['tag'] = elem['tag'] | ||
item['width'] = elem['cover_width'] | ||
item['height'] = elem['cover_height'] | ||
item['url'] = elem['qhimg_url'] | ||
yield item |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# -*- coding: utf-8 -*- | ||
from urllib.parse import urlencode | ||
|
||
import scrapy | ||
|
||
from image360.items import GoodsItem | ||
|
||
|
||
class TaobaoSpider(scrapy.Spider): | ||
name = 'taobao' | ||
allowed_domains = ['www.taobao.com'] | ||
|
||
def start_requests(self): | ||
base_url = 'https://s.taobao.com/search?' | ||
params = {} | ||
for keyword in ['ipad', 'iphone', '小米手机']: | ||
params['q'] = keyword | ||
for page in range(10): | ||
params['s'] = page * 44 | ||
full_url = base_url + urlencode(params) | ||
yield scrapy.Request(url=full_url, callback=self.parse) | ||
|
||
def parse(self, response): | ||
goods_list = response.xpath('//*[@id="mainsrp-itemlist"]/div/div/div[1]') | ||
for goods in goods_list: | ||
item = GoodsItem() | ||
item['price'] = goods.xpath('div[5]/div[2]/div[1]/div[1]/strong/text()').extract_first() | ||
item['deal'] = goods.xpath('div[5]/div[2]/div[1]/div[2]/text()').extract_first() | ||
item['title'] = goods.xpath('div[6]/div[2]/div[2]/a/text()').extract_first() | ||
yield item | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.