/pyqt-dark-calculator

Dark theme calculator made out of PyQt5

Primary LanguagePythonMIT LicenseMIT

pyqt-dark-calculator

PyQt dark theme calculator

Feature

  • Basic operation supported by most of the calculators(e.g. Arithmetic operation, square root, round)
  • Supporting parentheses calculation
  • Being able to open new calculator window
  • Show tooltip(helpful message to how the button works) when mouse cursor hovered to button

Requirements

  • PyQt5 >= 5.15

Included Packages

Setup

pip3 install git+https://github.com/yjg30737/pyqt-dark-calculator.git --upgrade

Usage

Code Sample

from pyqt_dark_calculator.calculatorApp import CalculatorApp

if __name__ == "__main__":
    import sys

    app = CalculatorApp(sys.argv)
    app.exec_()

Result

image