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.3.tar.gz
(35.2 kB
view hashes)
Built Distribution
Close
Hashes for enaml_extensions-0.3.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d72042d7931ef47a4483a9b64f4de790dcfdb0693f30ce96db4e14b1d18a369e |
|
MD5 | e97299fb2b73223bee6d13d3aeb6b6e2 |
|
BLAKE2b-256 | 4aa16946b789f883acf26e5643fe62853e84840efc1045e8248830482a188af2 |