Accounting calculator with the style of an Epson PX-8 Vintage Laptop
Designed for standard accounting calculations.
Gui powered by PyQt5.
- showing the entered operation
- write calculations results in CSV, JSON, MySQL database
- 12-digit display
- arithmetic calculations
- percentage calculations
- memory
- Python 3.8.6
- PyQt5
- mysql-connector-python
- MySQL 8
-
-
- get start installing MySQL 8
- create MySQL admin login in root_config.py
config = {'host': '127.0.0.1', 'user': 'root', 'password': 'randompassword'}
- configure and launch scripts:
- create_database.py (if necessary)
- create_user.py (if necessary)
- create_table.py
- configure the MySQL login and database for use by third-party users in config.py
config = {'host': '127.0.0.1', 'user': 'randomname', 'password': 'randompassword', 'database': 'randomdatabase'}
-
-