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

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for traitsui-7.4.3.tar.gz
Algorithm Hash digest
SHA256 db32517e9622a0580c23209e13f8032cea00e61c6774936709ff45e76335d5b9
MD5 f6286e8d661c042e7662cf52f9ca8545
BLAKE2b-256 b192e184c2f4a299945fd594ec1b40e4960c1a3d955ff2f5091d559e050311a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for traitsui-7.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e9ee458c0d18b486ce95bf31aa5fd1cf7545ec077ba10e4e7ad6185d762b7b8b
MD5 6fd5d399031d9a5d7fced08e7cd70e0b
BLAKE2b-256 6bea392eaa31cac6182c9e6eb01714579221d3636630ed4f20f0b6d0ae3fd606

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