Project build using FastAPI to scrape https://dentalstall.com/shop/
Python 3.11.0
Framework - FastApi
In memory database - Redis
Using requests library for scraping for this project (note - if project can comprise performance than selenium should be used here as website is using javascript)
- Download project
- (Recommended but not mandatory) Create virtual invironment
pipenv shell # or via any other method
- Install dependencies (make sure you are in currect directory which is base directory)
pip install -r requirements.txt
- Run server
uvicorn main:app --reload