# 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:
```python
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'),
]
```
Raw data
{
"_id": null,
"home_page": "http://github.com/gabrielcnr/enaml-extensions",
"name": "enaml-extensions",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "enaml qt widgets extras extensions table qt-table ui gui",
"author": "Gabriel Reis",
"author_email": "gabrielcnr@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/75/6f/43f4a63d728211f5e254b9b30f5f04a166f5eed8dd21f86cd9e15403db23/enaml_extensions-0.4.2.tar.gz",
"platform": null,
"description": "# enaml-extensions\nExtra widgets for Enaml\n\nThe flagship widget here is the `Table` widget which aims for providing\nan easy way to display tabular data in a grid in the UI. It was designed\nto support working with list of dicts, list of namedtuples, list of tuples,\nor even pandas DataFrame.\n\nAn example:\n\n```python\nfrom enaml.widgets.api import *\nfrom enamlext.widgets import Table, Column\n\nenamldef Main(Window):\n Container:\n Table:\n items = [{'name': 'Joe', 'age': 30},\n {'name': 'Jane', 'age': 31}]\n columns = [\n Column('name'),\n Column('age'),\n ]\n```\n",
"bugtrack_url": null,
"license": "LGPL",
"summary": "Extra widgets and extensions for building UIs with Enaml",
"version": "0.4.2",
"project_urls": {
"Homepage": "http://github.com/gabrielcnr/enaml-extensions"
},
"split_keywords": [
"enaml",
"qt",
"widgets",
"extras",
"extensions",
"table",
"qt-table",
"ui",
"gui"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "454bfcb39cce38df44d51473ac249d9e1376470691f7bfe2ec3a99e30a0b986d",
"md5": "bda401d2f663f43236ebe010e9900336",
"sha256": "8a308902b6fd15362cfc4f0d51050045fa855b88f7cdb1426e566b9f6b3ff1f8"
},
"downloads": -1,
"filename": "enaml_extensions-0.4.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "bda401d2f663f43236ebe010e9900336",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 48572,
"upload_time": "2025-07-24T15:19:14",
"upload_time_iso_8601": "2025-07-24T15:19:14.121953Z",
"url": "https://files.pythonhosted.org/packages/45/4b/fcb39cce38df44d51473ac249d9e1376470691f7bfe2ec3a99e30a0b986d/enaml_extensions-0.4.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "756f43f4a63d728211f5e254b9b30f5f04a166f5eed8dd21f86cd9e15403db23",
"md5": "ae8103d25eb0f2699df27bc8cf67d0f9",
"sha256": "20d890621d4b7772c691bc985749104dd1dd861cb41431db1f6c195eaa386be0"
},
"downloads": -1,
"filename": "enaml_extensions-0.4.2.tar.gz",
"has_sig": false,
"md5_digest": "ae8103d25eb0f2699df27bc8cf67d0f9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 49761,
"upload_time": "2025-07-24T15:19:16",
"upload_time_iso_8601": "2025-07-24T15:19:16.828289Z",
"url": "https://files.pythonhosted.org/packages/75/6f/43f4a63d728211f5e254b9b30f5f04a166f5eed8dd21f86cd9e15403db23/enaml_extensions-0.4.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-24 15:19:16",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "gabrielcnr",
"github_project": "enaml-extensions",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "enaml-extensions"
}