Skip to content

guugimeness/calculator-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

calculator-py

About

Calculator project from Luiz Otávio Miranda's Python course to learn the principles of PySide6, a graphical user interface (GUI) library.

Visuals

Image

Keyboard Shortcuts

  • Enter: Enter, Return and '='
  • Clear: ESC and 'C'
  • Delete: Backspace, Delete and 'D'
  • Pow: 'P'

Installation

# Clone this repository
$ git clone https://github.com/guugimeness/calculator-py

# Access the project folder in your terminal
$ cd calculator-py

# Create and activate your virtual environment
$ python3 -m venv venv
$ source venv/bin/activate

# Install the dependencies using pip
$ pip install -r requirements.txt

# Use PyInstaller to create the calculator executable
$ pyinstaller Calculator.spec

# The application will be created in /dist

Tech Stack

The following tools were used in the construction of the project:

License

This project is under the license MIT

Status: Finished