Skip to main content

build GUIs from python types

Project description

magicgui

magicgui is released under the MIT license. magicgui on PyPI magicgui on conda-forge magicgui python version support

magicgui build status magicgui code coverage cite magicgui

build GUIs from type annotations, using magic.

📖 Docs

https://pyapp-kit.github.io/magicgui/

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!

See contributing guide here.

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

Uploaded Source

Built Distribution

magicgui-0.8.0-py3-none-any.whl (123.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: magicgui-0.8.0.tar.gz
  • Upload date:
  • Size: 20.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for magicgui-0.8.0.tar.gz
Algorithm Hash digest
SHA256 f7015f638ebcb780caea3bfcec11182e636cafb137b9d89bdba11fb115ca4fa2
MD5 23f716a527fae80ddac1e514cfe5047a
BLAKE2b-256 13e172b98bdc09b2a708da51b872240dd0f36df201d93210002f786ad2ff674f

See more details on using hashes here.

File details

Details for the file magicgui-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: magicgui-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 123.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for magicgui-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dfba3657d1472ae68354c0886aa77d791cce12bd3fe5a09d242fe7e99c850369
MD5 17330adab162d348bc739f3445bc610c
BLAKE2b-256 9a4e35ba35224556bb56126ca5f6727d7fc171ee4031b0ea90b8ffb2c6e46fe2

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