Looking for script for scrapping sites

afrabby

Registered Member
Joined
Aug 8, 2020
Messages
50
Reaction score
15
Hi, I'm looking for script of python or the tools which can able to scrapp data from other sites. Really appritiate your help. Thanks!
 
Don't expect free help from people. If you want to buy a script/tool post in the WTB/HAF section. There are some scrappers in the marketplace too.
 
If you can't code, you can use "no code bot builders" like BAS, Scrapebox or RTILA...
 
Try Selenium modulo, while using this package use a chrome driver.

from selenium import webdriver

DRIVER_PATH = '/path/to/chromedriver'
driver = webdriver.Chrome(executable_path=DRIVER_PATH)
driver.get('https://google.com')
 
Don't expect free help from people.
OP is not looking for any help (free or paid) in this thread. OP is simply asking for suggestions as to which tools can be used to scrape data from websites.

@afrabby , you may check these tools :
ParseHub, Diffbot, Octoparse, ScrapingBee, Grepsr, Scraper API, Scrapy, Import.io.
 
Hi, I'm looking for script of python or the tools which can able to scrapp data from other sites. Really appritiate your help. Thanks!
I use Scrapebox and Phantombuster for scraping data from websites.
 
Back
Top