Skip to main content

build GUIs from functions, using magic.

Project description

icon

License Version Python Version Build Status Docs Code style: black codecov

magicgui: build GUIs from functions, using magic.

📖 Docs

Installation

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

pip install magicgui pyside2  # or pyqt5 instead of pyside2

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

Basic usage

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")
def snells_law(aoi=30.0, n1=Medium.Glass, n2=Medium.Water, degrees=True):
    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 will now have a new attribute "Gui"
# call it to create (and optionally show) the new GUI!
snell_gui = snells_law.Gui(show=True)

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.1.5.tar.gz (20.4 MB view details)

Uploaded Source

Built Distribution

magicgui-0.1.5-py2.py3-none-any.whl (20.3 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

  • Download URL: magicgui-0.1.5.tar.gz
  • Upload date:
  • Size: 20.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3

File hashes

Hashes for magicgui-0.1.5.tar.gz
Algorithm Hash digest
SHA256 65e7b6845e636a302aecf2e736232aba7f9651ea782230ab4bb58627d957e893
MD5 e1d02edb241a0d028eee1adbbfd513f0
BLAKE2b-256 1c4703300e759a7f40db857e30adfd3eea0bcfb2f499cd30cc1399ca9a9b1691

See more details on using hashes here.

File details

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

File metadata

  • Download URL: magicgui-0.1.5-py2.py3-none-any.whl
  • Upload date:
  • Size: 20.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3

File hashes

Hashes for magicgui-0.1.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 19c66bd9e57a0eb84c8c015ebabe7edb8fea280609e7d87cf17130476d87e465
MD5 abab488b2c072117df3ce98937e5b493
BLAKE2b-256 1ddbf5b7afc3e0ea97a1c3b2e96af9fa0cca152098586c4260db7aebc3e09ab8

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