skip to Main Content

Ebay API – How to get around 'NoneType' object has no attribute 'text'

I'm working on an eBay Scraper, and I'm having some trouble with a simple "AttributeError: 'NoneType' object has no attribute 'text'"... Here is my code url = 'https://www.ebay.com/sch/i.html?_from=R40&_nkw=2017+patrick+mahomes+psa+10+auto&_sacat=0&rt=nc&LH_Sold=1&LH_Complete=1&_ipg=100' def get_data(url): r = requests.get(url) soup = bs(r.text, 'html.parser') return soup def…

VIEW QUESTION

How to get list of url and use in scrapy python for web data extraction – Woocommerce

I am creating web scraper using scrapy python. Here is my code import scrapy class BlogSpider(scrapy.Spider): name = 'blogspider' start_urls = [ 'https://perfumehut.com.pk/shop/', ] def parse(self, response): yield { 'product_link': response.css('a.product-image-link::attr("href")').get(), 'product_title': response.css('h3.product-title>a::text').get(), 'product_price': response.css('span.price > span > bdi::text').get(), }…

VIEW QUESTION

Debian10 python3 problems

I'm currently on Debian10: $ cat /etc/os-release PRETTY_NAME="Debian GNU/Linux 10 (buster)" ... and many python3 modules seems not installed: $ lsb_release -a Traceback (most recent call last): File "/usr/bin/lsb_release", line 25, in <module> import lsb_release File "/usr/lib/python3/dist-packages/lsb_release.py", line 29, in…

VIEW QUESTION
Back To Top
Search