Skip to main content

build GUIs from functions, using magic.

Project description

icon

License Version conda-forge Python Version Build Status codecov

magicgui: build GUIs from functions, using magic.

📖 Docs

Installation

magicgui uses qtpy to support both pyside2 and pyqt5 backends. However, you must have one of those installed for magicgui to work.

install with pip

pip install magicgui[pyqt5]
# or
pip install magicgui[pyside2]

or with conda:

conda install -c conda-forge magicgui pyqt  # or pyside2 instead of pyqt

:information_source: If you'd like to help us extend support to a different backend, please open an issue.

Basic usage

from magicgui import magicgui
from enum import Enum

class Medium(Enum):
    Glass = 1.520
    Oil = 1.515
    Water = 1.333
    Air = 1.0003

# decorate your function with the @magicgui decorator
@magicgui(call_button="calculate", result_widget=True)
def snells_law(aoi=30.0, n1=Medium.Glass, n2=Medium.Water, degrees=True):
    import math

    aoi = math.radians(aoi) if degrees else aoi
    try:
        result = math.asin(n1.value * math.sin(aoi) / n2.value)
        return math.degrees(result) if degrees else result
    except ValueError:
        return "Total internal reflection!"

# your function is now capable of showing a GUI
snells_law.show(run=True)

snells

But that's just the beginning! Please see Documentation for many more details and usage examples.

Contributing

Contributions are welcome!

Please note: magicgui attempts to adhere to strict coding rules and employs the following static analysis tools to prevent errors from being introduced into the codebase:

To prevent continuous integration failures when contributing, please consider installing pre-commit in your environment to run all of these checks prior to checking in new code.

pre-commit install

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

magicgui-0.2.1.tar.gz (20.6 MB view details)

Uploaded Source

Built Distribution

magicgui-0.2.1-py2.py3-none-any.whl (65.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file magicgui-0.2.1.tar.gz.

File metadata

  • Download URL: magicgui-0.2.1.tar.gz
  • Upload date:
  • Size: 20.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.1

File hashes

Hashes for magicgui-0.2.1.tar.gz
Algorithm Hash digest
SHA256 a3d0cdd352400f6e116992b6931d7420e216b7deda6281ff690e04319522abd4
MD5 a92c4a7046c95f21db12bef6b0585b58
BLAKE2b-256 5d4ef40ed19c18dede4bb9853da41bda764f02e24a7efb1bc91785d0913697c8

See more details on using hashes here.

File details

Details for the file magicgui-0.2.1-py2.py3-none-any.whl.

File metadata

  • Download URL: magicgui-0.2.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 65.4 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.1

File hashes

Hashes for magicgui-0.2.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 37e5bc5c7c21d206748bf0c330566ed7205b85ff33e48c376a655fddfdaa7aba
MD5 0a131a60701d81aaf0183db8c9caa9dc
BLAKE2b-256 c92095fbff5f6f22a08bb1f2c2fdae8f587dc519c26fa35778bc0866cf4fa8ec

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page