https://github.com/singhpratyush/baby-shopper
Find optimal shop for your baby shopping list
https://github.com/singhpratyush/baby-shopper
Last synced: 8 months ago
JSON representation
Find optimal shop for your baby shopping list
- Host: GitHub
- URL: https://github.com/singhpratyush/baby-shopper
- Owner: singhpratyush
- License: mit
- Created: 2017-05-03T07:15:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-03T09:29:01.000Z (over 8 years ago)
- Last Synced: 2025-01-26T16:35:04.775Z (9 months ago)
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Baby Shopper
Simple program to find optimal shop for your baby shopping list.
[](https://codeclimate.com/github/singhpratyush/baby-shopper)
### Requirements
`python>=3.5`
### Usage
```bash
$ python shopper.py [product1 product2 ...]
```
### Data File Format
The data file should be a CSV with delimiter `,`. Each line should contain
* Shop ID
* Price
* Products (separated by comma)
in exact order.
If the CSV has a header, modify the call to `data.read_data()` in `shopper.py` indicating argument 1 as `True`.
---
Created as a solution to challenge by DataOne Innovation Labs.