# 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/27/18/9a28f09b3a1690be4f73a75c97d2343ba4010da79403f3f9cab365c9615c/enaml_extensions-0.4.3.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.3",
"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": "ce2a383cdbee22477f5c212ef8610f3687569aa0bc403b0941dfde01b89d007e",
"md5": "4c9a7579932269698c5cb7d7a7f388ff",
"sha256": "8614482052216db73962e7a117e713771a5270c35aba4b59be19227b2ecc2989"
},
"downloads": -1,
"filename": "enaml_extensions-0.4.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "4c9a7579932269698c5cb7d7a7f388ff",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 48736,
"upload_time": "2025-07-25T23:38:25",
"upload_time_iso_8601": "2025-07-25T23:38:25.375352Z",
"url": "https://files.pythonhosted.org/packages/ce/2a/383cdbee22477f5c212ef8610f3687569aa0bc403b0941dfde01b89d007e/enaml_extensions-0.4.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27189a28f09b3a1690be4f73a75c97d2343ba4010da79403f3f9cab365c9615c",
"md5": "7257977f5691eeb8eda4becfbb61771c",
"sha256": "5692e12004f6b00659bec62e3d778a07e6c1b6a55fe428158e35511d75dfca4f"
},
"downloads": -1,
"filename": "enaml_extensions-0.4.3.tar.gz",
"has_sig": false,
"md5_digest": "7257977f5691eeb8eda4becfbb61771c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 50066,
"upload_time": "2025-07-25T23:38:26",
"upload_time_iso_8601": "2025-07-25T23:38:26.442108Z",
"url": "https://files.pythonhosted.org/packages/27/18/9a28f09b3a1690be4f73a75c97d2343ba4010da79403f3f9cab365c9615c/enaml_extensions-0.4.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-25 23:38:26",
"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"
}