Price Catcher is a Python-Flask based game that let's user guess grocery prices across Malaysia. There are two modes: "Delta" and "The Price is Right".
Data is based on OpenDOSM's Price Catcher catalogue.
Deployed on Render as webservices.
Flaskpandaspyarrowfastparquet
Install all libraries needed through pip
Note
Create a virtual environment to run this project. Then activate it with git bash.
$ git clone https://github.com/bropenguin847/Price_Catcher.git
$ cd price-catcher
$ pip install -r /path/to/requirements.txtLaunch app.py from terminal. Visit your localhost:(port) to launch the page.
.
└── PRICE_CATCHER/
├── .venv
├── .gitignore
├── requirements.txt
├── static/
│ └── styles/
│ └── style.css
├── templates/
│ ├── index.html
│ └── pricecatcher.html
├── app.py
└── game.py