Go to file
2023-05-12 22:00:42 +07:00
Essential Update docstring 2023-05-12 20:28:04 +07:00
resources Change notfound.png size 2023-05-11 23:31:44 +07:00
.gitignore update some components 2023-05-12 19:26:34 +07:00
app.py update some components 2023-05-12 19:26:34 +07:00
main.ipynb Add comment 2023-05-12 13:46:32 +07:00
README.md First commit of README.md 2023-05-12 21:23:24 +07:00
requirements.txt Add setup file and require.txt 2023-05-12 19:47:08 +07:00

Packaged Food Explorer

GUI Application that explore and analyze packaged food dataset
Data Source

Table of contents

Quick start

  • Clone github repository
git clone https://github.com/Sosokker/Food-Nutrient-Viewer-Tkinter
  • run setup.py or pip
# pip
pip install -r requirements.txt
# or setup.py
python setup.py install

  • To start GUI window run app.py
python app.py

What's included

Main/
│── Essential/
│   ├── descriptive.py
│   ├── FoodSearch.py
│   ├── networkgraphprob.ipynb
│   ├── plotter.py
│   ├── prepare_db.py
│   ├── data/
│   │   ├── food_data.db
│   │   │── japan_data.csv
│   │   │── thai_data.csv
│   │   │── us_data_1.csv
│   │   │── us_data_2.csv
│   │   │── us_data_3.csv
│   │   └── us_data_4.csv
│── resources/
│   ├──loading.gif
│   └──notfound.png
│── app.py
│── main.ipynb
│── setup.py
│── requirements.txt
└── README.md