Extra widgets and extensions for building UIs with Enaml
Project description
enaml-extensions
Extra widgets for Enaml
The flagship widget here is the Table
widget which aims for providing
an easy way to display tabular data in a grid in the UI. It was designed
to support working with list of dicts, list of namedtuples, list of tuples,
or even pandas DataFrame.
An example:
from enaml.widgets.api import *
from enamlext.widgets import Table, Column
enamldef Main(Window):
Container:
Table:
items = [{'name': 'Joe', 'age': 30},
{'name': 'Jane', 'age': 31}]
columns = [
Column('name'),
Column('age'),
]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
enaml-extensions-0.3.12.tar.gz
(44.6 kB
view hashes)
Built Distribution
Close
Hashes for enaml_extensions-0.3.12-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53bac81dd7de515b556b7b9fb6ae414342a5e171adee4d51da2481c8d1c8562d |
|
MD5 | 731075148d8b241edc66ec5f40147c23 |
|
BLAKE2b-256 | 4ab0c9f8ce03c0f91e94f0f1f43f86eb803840bf3b30fa67e05383585da2c64d |