https://github.com/mcsnurtle/receipt-calculator
A simple tkinter application to split the bill of a receipt
https://github.com/mcsnurtle/receipt-calculator
python receipt-scanner receipt-scanning tkinter
Last synced: about 1 year ago
JSON representation
A simple tkinter application to split the bill of a receipt
- Host: GitHub
- URL: https://github.com/mcsnurtle/receipt-calculator
- Owner: McSnurtle
- License: cc0-1.0
- Created: 2025-04-28T17:00:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-09T22:18:44.000Z (about 1 year ago)
- Last Synced: 2025-06-06T23:41:26.929Z (about 1 year ago)
- Topics: python, receipt-scanner, receipt-scanning, tkinter
- Language: Python
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# receipt-calculator
A simple tkinter application written in python to split the bill of any receipt. Simply input the items purchased and who they were for.

## Installation / Quick Start 🌨️
To install the project, first ensure you have it's sole dependency: [`Python3`](). Note that for automatic update checking and downloading
**1.** Clone the project
Press the big green Code button, then click download zip to install the source code, and extract the `.zip` file you download.
Alternatively, you can run `git clone https://github.com/McSnurtle/charter.git` to download the source directly.
**2.** Run the setup wizard
Depending on your platform, run the `setup.sh` or `setup.bat` files accordingly - `.sh` for unix based systems (macOS included), and `.bat` for windows.
This script executes the following commands (with some added juice) if you prefer to do this step manually:
for unix:
```shell
git fetch && git pull origin main \
python -m venv venv \
pip install --upgrade --verbose -r requirements.txt \
source ./venv/bin/activate \
python src/main.py
```
for windows:
```batch
git fetch; git pull origin main \
python -m venv venv \
pip install --upgrade --verbose -r requirements.txt \
call .\venv\Scripts\activate \
python src/main.py
```
## User Manual
STUB