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

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for traitsui-7.4.1.tar.gz
Algorithm Hash digest
SHA256 4c5b3d3aaeaabd1ec81a0a8c40f9ccd28fa8cb9d64ed13917c990d174654fa1d
MD5 f4499237b93143d8169b4b404a3f8734
BLAKE2b-256 d19a6387da49c98a0e247d4feba3925a3472e35d62c0c43add357d57f4dd59fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: traitsui-7.4.1-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.14

File hashes

Hashes for traitsui-7.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e763e696e017b2ccb6bf0ffe56e9db4bf98f8616de36c2766050f585bec5772c
MD5 483a83618ca9fbce246a1340d3c2beee
BLAKE2b-256 6f1d23e53b162c971b81b1493af0ef1cd9450a5e8756a94f9c8c8e2411f40f6c

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