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

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

magicgui-0.10.2-py3-none-any.whl (128.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: magicgui-0.10.2.tar.gz
  • Upload date:
  • Size: 20.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for magicgui-0.10.2.tar.gz
Algorithm Hash digest
SHA256 ae7a4cbb7ef2028b827b1877cf0b06743d756074fe6ef849391d62448ab7b65d
MD5 81549c7ccca7e575e84e8b470b0433a3
BLAKE2b-256 ba9c0d918ee0a9b31f16e9b76c1b86b81b5d4b7bc491354c76030b87790f0cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for magicgui-0.10.2.tar.gz:

Publisher: test_and_deploy.yml on pyapp-kit/magicgui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: magicgui-0.10.2-py3-none-any.whl
  • Upload date:
  • Size: 128.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for magicgui-0.10.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0f304d4da1a4309ad15d38cb809ef73269cea73a3195ac944f38d7c56d8e0fd5
MD5 38c2a3bec91cb3843f66add6ef9ce664
BLAKE2b-256 56bb5ba264d3ccc13294e74c48c3ef0c2e96b8b13765562628515654012cc47e

See more details on using hashes here.

Provenance

The following attestation bundles were made for magicgui-0.10.2-py3-none-any.whl:

Publisher: test_and_deploy.yml on pyapp-kit/magicgui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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