https://github.com/arvind-4/web-scraping-using-async-python
Web Scrape and Store the Data in a File
https://github.com/arvind-4/web-scraping-using-async-python
async asynchronous asyncio html python3 webscraping
Last synced: 12 months ago
JSON representation
Web Scrape and Store the Data in a File
- Host: GitHub
- URL: https://github.com/arvind-4/web-scraping-using-async-python
- Owner: arvind-4
- License: mit
- Created: 2021-08-01T16:07:40.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-03T09:28:45.000Z (almost 2 years ago)
- Last Synced: 2025-05-15T19:11:23.492Z (about 1 year ago)
- Topics: async, asynchronous, asyncio, html, python3, webscraping
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Web Scraping Using Async Python
This Code lets you Scrape Box Office Mojo Website.
[Box Office Mojo Webite](https://www.boxofficemojo.com)
This is Only for Educational Purpose.
# Code
### Run it on Your Local Machine
#### 1. Create Virtual Environment & Install the Requirements
```
cd ~/Dev
mkdir web_scrape
cd web_scrape
python3.10 -m virtualenv .
source bin/activate
```
#### 2. Create A Folder & Run the Code!
```
cd ~/Dev/web_scrape
git clone https://github.com/Arvind-4/web-scraping-using-async-python.git .
pip install -r requirements.txt
python src/main.py
```