Pyscraper shopee is a library build with python for web scraping shopee to get some products detail (notebook)
There are several things that need to be prepared to run this application locally:
- Python
- Download Chromedriver according to your browser version
-
Include chromedrive in the root folder
- structures
├── docs/ └── API.md ├── src/ └── producst.py └── producsts.py app.py chromedriver.exe README.md requirements.txt -
create and activate local environment
python -m venv env source ./env/Scripts/activate -
libraries to install, make sure u already have pip :
pip install -r requirements.txt -
running application
uvicorn app:app --reload # custom uvicorn --port 5000 --host 127.0.0.1 app:app --reloadsee API documentation