Skip to content

omkarcloud/web-scraping-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

5 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

omkar

✨ Web Scraping Template ✨

(Programming Language - Python 3)

web-scraping-template forks Repo stars web-scraping-template License issues

View


This Web Scraping Template provides you with a great starting point when creating web scraping bots.

⭐ Usecase of Web Scraping Template

This template can be utilized in various scenarios, including:

  • Scraping articles from a blog, like the Omkar Cloud Blog.

  • Extracting product information from e-commerce stores, for example, by scraping products from Amazon.

  • Gathering items from paginated lists, such as extracting product details from g2.

πŸš€ Getting Started

1️⃣ Clone the Magic πŸ§™β€β™€οΈ:

git clone https://github.com/omkarcloud/web-scraping-template
cd web-scraping-template

2️⃣ Install Dependencies πŸ“¦:

python -m pip install -r requirements.txt

3️⃣ Write Code to scrape your target website. πŸ€–

4️⃣ Run Scraper 😎:

python main.py

✨ Best Practices for Web Scraping?

Here are some best practices for web scraping:

  1. Instead of individually visiting each page to gather links, it is advisable to search for pagination links within sitemaps or RSS feeds. In most cases, these sources provide all links in an organized manner.

sitemap

  1. Make the bot look humane by adding random waits using methods like driver.short_random_sleep and driver.long_random_sleep.

  2. If you need to scrape a large amount of data in a short time, consider using proxies to prevent IP-based blocking.

  3. If you are responsible for maintaining the scraper in the long run, it is recommended to avoid using hash-based selectors. These selectors will break with the next build of the website, resulting in increased maintenance work.

Note that most websites do not implement bot protection as many frontend developers are not taught bot protection in their courses.

So, it is recommended to only add IP rotation or random waits if you are getting blocked.