Tagged Questions
2
votes
1answer
1k views
Python Traits UI (Enthought)
I am working with some code that uses Traits UI to show a dialog from which the user is able to select two files:
class Files(HasTraits):
filename_1 = File(exists=True)
filename_2 = ...
0
votes
1answer
70 views
How can I fire a Traits static event notification on a List?
I am working through the traits presentation from PyCon 2010. At about 2:30:45 the presenter starts covering trait event notifications, which allow (among other things) the ability to automatically ...
0
votes
2answers
117 views
python GUI frameworks / libraries suited for data analysis programs
I'm looking for a good cross platform (mac, windows & linux) python GUI framework / library that will make my life easier while writing a data analysis program. Since my data is represented by ...
0
votes
1answer
101 views
How can I wrap a non-Traits model for use with Python Traits?
I would like to wrap a non-Traits model class for use with Python Traits. My goal is to write a Traits-based UI to manipulate an "external" model class. The external model class has been generated ...