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

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: traitsui-7.3.0.tar.gz
  • Upload date:
  • Size: 6.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/29.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.3 tqdm/4.62.3 importlib-metadata/4.4.0 keyring/16.0.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.12

File hashes

Hashes for traitsui-7.3.0.tar.gz
Algorithm Hash digest
SHA256 6644b3f8f602a25760702dc8721ba778ce7594504093af14a4869d239e8674f4
MD5 8257eff379d4b6f64af5494abee9f291
BLAKE2b-256 27b0fae6e4f0f0c2fda12f50fb873903a0fc488dadb83f0db6cb378efe71b031

See more details on using hashes here.

File details

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

File metadata

  • Download URL: traitsui-7.3.0-py3-none-any.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/29.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.3 tqdm/4.62.3 importlib-metadata/4.4.0 keyring/16.0.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.12

File hashes

Hashes for traitsui-7.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ecca585f7d810ccb9eb51e47c2284656e42fc4023292ebc9c412c437e5f43208
MD5 1e5a865a5f635dc5eb758d90015c0598
BLAKE2b-256 1d7cb16dc33edbfd89511e5c67f05ff16d0c5afe67e187ff9c8898edbeeaeec4

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