파충류 - 자동차의 집
6248 단어 python 파충류
# -*- coding: utf-8 -*-
import scrapy
from AD.items import AdItem
class AdImgSpider(scrapy.Spider):
name = 'AD_img'
allowed_domains = ['car.autohome.com.cn']
start_urls = ['https://car.autohome.com.cn/pic/brand-33.html#pvareaid=2042194']
def parse(self, response):
uiboxs = response.xpath("//div[@class='uibox']")
for uibox in uiboxs:
title = uibox.xpath(".//span[@class='fn-left']/a/@title").get()
# print(title)
urls = uibox.xpath(".//ul/li/a/img/@src").getall()
# for url in urls:
# url = response.urljoin(url)
# print(url)
urls = list(map(lambda url: response.urljoin(url), urls))
item = AdItem(title=title, urls=urls)
yield item
pipelines 코드:
# -*- coding: utf-8 -*-
# Define your item pipelines here
#
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
# See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html
import os
from urllib import request
from scrapy.pipelines.images import ImagesPipeline
from AD import settings
class AdPipeline(object):
def __init__(self):
self.path = os.path.join(os.path.dirname(os.path.dirname(__file__)), "images")
if not os.path.exists(self.path):
os.mkdir(self.path)
def process_item(self, item, spider):
title = item["title"]
urls = item["urls"]
title_path = os.path.join(self.path, title)
if not os.path.exists(title_path):
os.mkdir(title_path)
for url in urls:
image_name = url.split("_")[-1]
request.urlretrieve(url, os.path.join(title_path, image_name))
return item
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python 파충류: 웹 요청 헤더에 User-Agent 추가텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.