# 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": "",
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "",
"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/60/9e/4a2f9e3bbe92fae53ebd7f0cec297e2a756a0fc049c67aefd0f43f70f3fe/enaml-extensions-0.3.16.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.3.16",
"project_urls": {
"Homepage": "http://github.com/gabrielcnr/enaml-extensions"
},
"split_keywords": [
"enaml",
"qt",
"widgets",
"extras",
"extensions",
"table",
"qt-table",
"ui",
"gui"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "ce0de1da7c79805925aa85441b11708b1626005580a1f2d17e73ffdcf5170a5b",
"md5": "b86909f9c7a9ca695d2113218f47f829",
"sha256": "7bf42c9052cd36361c570c1d3b24bec81e6587cfc4a343ec440f17a8387f3582"
},
"downloads": -1,
"filename": "enaml_extensions-0.3.16-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b86909f9c7a9ca695d2113218f47f829",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 46660,
"upload_time": "2023-11-21T21:55:09",
"upload_time_iso_8601": "2023-11-21T21:55:09.112243Z",
"url": "https://files.pythonhosted.org/packages/ce/0d/e1da7c79805925aa85441b11708b1626005580a1f2d17e73ffdcf5170a5b/enaml_extensions-0.3.16-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "609e4a2f9e3bbe92fae53ebd7f0cec297e2a756a0fc049c67aefd0f43f70f3fe",
"md5": "087474603ec4179a79d141b3d05cbc04",
"sha256": "cf2fd8373fa24102c349c176de237c6c4061b7c259833f67a250d80a477dff1d"
},
"downloads": -1,
"filename": "enaml-extensions-0.3.16.tar.gz",
"has_sig": false,
"md5_digest": "087474603ec4179a79d141b3d05cbc04",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 46921,
"upload_time": "2023-11-21T21:55:10",
"upload_time_iso_8601": "2023-11-21T21:55:10.976083Z",
"url": "https://files.pythonhosted.org/packages/60/9e/4a2f9e3bbe92fae53ebd7f0cec297e2a756a0fc049c67aefd0f43f70f3fe/enaml-extensions-0.3.16.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-11-21 21:55:10",
"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"
}