An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Baby Shopper

Simple program to find optimal shop for your baby shopping list.

[![Code Climate](https://codeclimate.com/github/singhpratyush/baby-shopper/badges/gpa.svg)](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.