Skip to main content

traitsui: traits-capable user interfaces

Project description

The TraitsUI project provides a toolkit-independent GUI abstraction layer, which is used to support the “visualization” features of the Traits package. You can write a model using the Traits API and specify a GUI using the TraitsUI API (views, items, editors, etc.), and let TraitsUI and your selected toolkit back-end (Qt or Wx) take care of the details of displaying them.

Example

Given a Traits model like the following:

from traits.api import HasTraits, Str, Range, Enum

class Person(HasTraits):
    name = Str('Jane Doe')
    age = Range(low=0)
    gender = Enum('female', 'male')

person = Person(age=30)

And using TraitsUI to specify and display a GUI view:

from traitsui.api import Item, RangeEditor, View

person_view = View(
    Item('name'),
    Item('gender'),
    Item('age', editor=RangeEditor(mode='spinner', low=0, high=150)),
    buttons=['OK', 'Cancel'],
    resizable=True,
)

person.configure_traits(view=person_view)

It creates a GUI which looks like this:

https://raw.github.com/enthought/traitsui/main/README_example.png

Installation

If you want to run traitsui, you must also install:

You will also need one of the following backends:

  • wxPython

  • PySide2

  • PyQt5

Backends have additional dependencies and there are optional dependencies on NumPy and Pandas for some editors.

TraitsUI along with all dependencies can be installed in a straightforward way using the Enthought Deployment Manager, pip or other .

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

traitsui-7.4.0.tar.gz (6.8 MB view details)

Uploaded Source

Built Distribution

traitsui-7.4.0-py3-none-any.whl (1.5 MB view details)

Uploaded Python 3

File details

Details for the file traitsui-7.4.0.tar.gz.

File metadata

  • Download URL: traitsui-7.4.0.tar.gz
  • Upload date:
  • Size: 6.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for traitsui-7.4.0.tar.gz
Algorithm Hash digest
SHA256 25335affee2342d47e35c25df5e7785d22a533584fe1be0943ccba45dc1ae589
MD5 84a467e5be771618304399971191d31c
BLAKE2b-256 dfbacfc560a33c09c198a56a84b1b1237412b9add0ed6a1df7c32262dcc20831

See more details on using hashes here.

File details

Details for the file traitsui-7.4.0-py3-none-any.whl.

File metadata

  • Download URL: traitsui-7.4.0-py3-none-any.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for traitsui-7.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7e083cfcc8ce8fa3b7e3d36288f08e7ae535ad6d0f777dbc22d53e44425f8cc1
MD5 80f8318f7235da9c5a8c5e99ec1aa544
BLAKE2b-256 6a4ecff0a019c33615920ad2313d62fea7d4b188c072259dd05f568d814e5c30

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