python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Scrapy with Celery not running on Docker container
I code a Scrapy CrawlerProcess to run from script.
It also uses Celery+RabbitMQ for controlling the urls to be scrapped.
The update.py script sends the urls to RabbitMQ, and the Celery worker runs the...
Sandro Wiggers
Votes: 0
Answers: 0
Passing Variables to Scrapy
I have a basic scrapy project where I have hard coded 2 variables - pProd and pReviews. I would now like either to read these variables from a csv file or pass them when calling the spider. I have bee...
Pratting_About
Votes: 0
Answers: 1
Scrapy symbol replace
I try to delete symsol ":" from dates and it doesn't work:
oper_dates=response.css('.textonline__date::text').extract()
for item in oper_dates:
clean_oper_date = item.replace(':', '')
...
Megos
Votes: 0
Answers: 1
Web Scraping - Table Without Class or ID
I am working on a project which requires me to scrape a table from the following website - https://www.cmegroup.com/markets/energy/crude-oil/brent-crude-oil.settlements.html#tradeDate=03%2F31%2F2022
T...
pspython
Votes: 0
Answers: 1