https://github.com/emingure/shopping-tracker
Shopping tracker for 3 major Turkish e-shopping platform
https://github.com/emingure/shopping-tracker
Last synced: 11 months ago
JSON representation
Shopping tracker for 3 major Turkish e-shopping platform
- Host: GitHub
- URL: https://github.com/emingure/shopping-tracker
- Owner: emingure
- Created: 2018-08-30T15:31:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-11T19:48:23.000Z (over 7 years ago)
- Last Synced: 2025-05-16T04:08:01.591Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# shopping-tracker
This project aims to scrape daily deals from 3 major Turkish e-shopping platform with the information scheme below with the aim of stock tracking to create new trade oppurtunities. Data stores on Amazon DynamoDB with the index of urls.
```
{
'timestamp': "datetime",
'productId': "string",
'url': "string",
'name': "string",
'brand': "string",
'definition': "string",
'seller': "string",
'price': "string",
'originalPrice': "string",
'listings': [
{
'store': "string",
'price': "string",
'url': "string",
'stock': "string"
},
...
],
'stock': "string"
}
```