【发布时间】:2021-07-02 20:15:09
【问题描述】:
我想将所有数据保存在一个 json 文件中。 如何使用元解析我的数据? 我不知道我的元格式是否可以。 最终在 json 文件中生成所有数据(我通过 meta 和我 parse_v) 请帮我解决这个问题。
现在我添加完整的代码。希望你能发现我的问题
import json
import scrapy
import time
import chompjs
from scrapy import Request
from scrapy.crawler import CrawlerProcess
class TrendyolSpider(scrapy.Spider):
name = 'data'
start_urls = ['https://www.trendyol.com/join-us/straplez-firfirli-simli-astarli-triko-elbise-krem-p-41896200']
def final_parse(self, response):
abc = response.xpath("//p/script[contains(@type,'application/ld+json')]/text()").extract_first()
json_text = json.loads(abc)
img = json_text.get('image')
products = response.css('div.pd-app-container')
for product in products:
category = product.css('div.breadcrumb>a:nth-child(3)+ a.breadcrumb-item span::text').get(),
product_name = product.css("h1.pr-new-br ::text").getall(),
price = product.css('div.pr-bx-nm span.prc-org::text').get().replace("TL", ""),
discount_price = product.css('div.pr-bx-nm span.prc-slg::text').get().replace("TL", ""),
brand = response.css("div.sl-nm a::text").get(),
image = img,
size = product.css("div.pr-in-at-sp ::text").getall(),
product_information = product.css("div.pr-in-dt-cn ::text").getall(),
product_features = product.css("div.pr-prop-content ::text").getall(),
all_info = response.xpath("//script[contains(@type,'application/javascript')]/text()").extract_first()
product_json = chompjs.parse_js_object(all_info)
ides = product_json['product']['productGroupId']
varient_url = "https://public.trendyol.com/discovery-web-productgw-service/api/productGroup/" + str(ides)
yield Request(url=varient_url, callback=self.parse_v, meta={
'category': category,
'product_name': product_name,
'price': price,
'discount_price': discount_price,
'brand': brand,
'image': image,
'size': size,
'product_information': product_information,
'product_features': product_features,
})
def parse_v(self, response):
json_tex5 = json.loads(response.body)
dataa = json_tex5.get('result').get("slicingAttributes")[0].get("attributes")
yield {
'category': response.meta['category'],
'product_name': response.meta['product_name'],
'price': response.meta['price'],
'discount_price': response.meta['discount_price'],
'brand': response.meta['brand'],
'image': response.meta['image'],
'size': response.meta['size'],
'product_information': response.meta['product_information'],
'product_features': response.meta['product_features'],
'renk': dataa
}
【问题讨论】:
标签: python scrapy web-crawler