An open API service indexing awesome lists of open source software.

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

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
```