Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thoth2357/fastapi-amazon-scraping
Scrapes data of Amazon and opens an API to use to filter through Scraped data
https://github.com/thoth2357/fastapi-amazon-scraping
amazon api-development fastapi web-scraping
Last synced: 4 days ago
JSON representation
Scrapes data of Amazon and opens an API to use to filter through Scraped data
- Host: GitHub
- URL: https://github.com/thoth2357/fastapi-amazon-scraping
- Owner: thoth2357
- Created: 2021-10-20T09:44:09.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-20T09:54:12.000Z (about 3 years ago)
- Last Synced: 2024-03-19T10:41:24.800Z (8 months ago)
- Topics: amazon, api-development, fastapi, web-scraping
- Language: HTML
- Homepage:
- Size: 194 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Setting up your development environment
### Installing the libraries
At the same directory as this file, run:
- `pip install pipenv`
- `pipenv install`### Running the API for development
Initialize your app using `pipenv`:- `pipenv shell`
Then run the following commands:
- `uvicorn app.main:app --reload`
And your app will be running on http://localhost:8000/
Tip:
Access http://localhost:8000/docs to use the built-in interface.
The app is available through a rest API.
API
- Allow the user to get a list of all products from the e-commerce platform, and present them in a structured way.
- Allows user to list only the best-selling products from the e-commerce sites.
- Allows user to list only the products with a rating higher than a given value.