
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
The TraitsUI project provides a toolkit-independent GUI abstraction layer,
which is used to support the "visualization" features of the
Traits <http://github.com/enthought/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.
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:
.. image:: https://raw.github.com/enthought/traitsui/main/README_example.png
Website and Documentation: <http://docs.enthought.com/traitsui>
__
<http://docs.enthought.com/traitsui/traitsui_user_manual>
__<http://docs.enthought.com/traitsui/tutorials>
__<http://docs.enthought.com/traitsui/api>
__Source code repository: <https://github.com/enthought/traitsui>
__
<https://github.com/enthought/traitsui/issues>
__Download releases: <https://pypi.python.org/pypi/traitsui>
__
Mailing list: <https://groups.google.com/forum/#!forum/ets-users>
__
If you want to run traitsui, you must also install:
<https://github.com/enthought/traits>
__<https://github.com/enthought/pyface>
__You will also need one of the following backends:
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 <http://docs.enthought.com/edm/>
__,
pip
or other package managers.
.. end_of_long_description
To run the test suite, you will need to install Git and
EDM <http://docs.enthought.com/edm/>
__ as well as have a Python environment
which has install Click <http://click.pocoo.org/>
__ available. You can then
follow the instructions in etstool.py
. In particular::
> python etstool.py test_all
will run tests in all supported environments automatically.
FAQs
Traits-capable user interfaces
We found that traitsui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.