It contains some web scraping examples implemented using Python.
Last updated Oct 15, 2025
31
Stars
11
Forks
2
Issues
0
Stars/day
Attention Score
18
Topics
Language breakdown
Python 100.0%
▸ Files
click to expand
README
Web-Scraping-Python 
It contains some web scraping examples implemented using Python.
1. Internshala :
Python codes for Scraping Internship from InternshalaAdditional Python Libraries Required :
- BeautifulSoup
- Pandas
- Requests
Usage :
This directory contains 2 python files :- 1. pythondjangointernship.py :
- This program is used to get details of all the Python/Django category internships from first page. It will store the details in pythondjangointernship.xlsx sheet. To Run the program :
- Open your Command Prompt or Terminal and change directory to the same folder where you have saved the program.
- Use Command :
- 2. keyword_internship.py :
- This program is used to get details of all the internship of specified Keyword. The keyword should be specified during the execution of program. The program will ask for keyword, after running it. It will store the details in keyword_internship.xlsx sheet. To Run the program :
- Open your Command Prompt or Terminal and change directory to the same folder where you have saved the program.
- Use Command :
2. Google image Downloader :
A Python program for downloading images from a Google Search.Additional Python Libraries Required :
- BeautifulSoup
- Requests
Usage :
Open your Command Prompt or Terminal and change directory to the same folder where you have saved the program. Type the following command in your CMD or Terminal:
python image_downloader.py -n 50 -s "apples" -d "E:\images" Here, change the following as per your needs:
-n: Number of Images to be downloaded (Default = 10).
-s: Search Query (Default = red roses).
-d: Directory where to save the images(Default = Download - the directory present with code).
3. Flipkart
A Python program to extract the Price, Name, and Rating of Laptops from Filpkart website.Pre-requisites :
1. Additional Python Libraries Required :
- Selenium
- BeautifulSoup
- Pandas
2. chromedriver (For Windows operating system you can download the chromedriver from this repository)
Usage :
- Open your Command Prompt or Terminal and change directory to the same folder where you have saved the program.
- Use Command :
- The laptops details will be stored in laptop_details.csv file.
4. Youtube :
A Python program to extract the information such as title, duration, channel, url, views, description, etc. of youtube trending videos.Additional Python Libraries Required :
- BeautifulSoup
- Pandas
- Requests
Usage :
- Open your Command Prompt or Terminal and change directory to the same folder where you have saved the program.
- Use Command :
- The videos details will be stored in youtube_trending.xlsx file.
🔗 More in this category