Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
71 views
in Technique[技术] by (71.8m points)

python 3.x - How to remove from a json file

when I try to save the scraped data inside a json file using terminal there is a after Brand and Brand name ({"Brand": " Libra ", "Price": "$24.95"},). How to solve this problem.

import scrapy


class GlassSpider(scrapy.Spider):
    name = 'glass'
    allowed_domains = ['www.glassesshop.com']
    start_urls = ['https://www.glassesshop.com/bestsellers/']

    def parse(self, response):
        for item in response.xpath("//div[@class='col-12 pb-5 mb-lg-3 col-lg-4 product-list-row text-center product-list-item']"):
            yield {
                'Brand': item.xpath(".//div[@class='p-title']/a/text()").get(),
                'Price': item.xpath(".//div[@class='product-title p-tab p-tab-13145']/span/text()").get()
            }
question from:https://stackoverflow.com/questions/65644722/how-to-remove-n-from-a-json-file

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use str replace method:

...
    yield {
        'Brand': item.xpath(".//div[@class='p-title']/a/text()").get("").replace("
",""),
        'Price': item.xpath(".//div[@class='product-title p-tab p-tab-13145']/span/text()").get("").replace("
","")
        }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...