simpledatatable


Namesimpledatatable JSON
Version 0.3.4 PyPI version JSON
download
home_pagehttps://github.com/StanMathers/simple-datatable
SummaryThis package allows flet developers to easily import SQL, CSV, Excel or Json tables into flet's DataTable.
upload_time2023-01-28 08:22:38
maintainer
docs_urlNone
authorStan Mathers
requires_python
licenseMIT
keywords table datatable simpledt tableserializer sql csv excel json flet
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # simpledt


This is a third party party package for the framework **Flet**.

It enables **Flet** users to serialize

- Pandas DataFrame
- SQL
- CSV
- JSON
- Excel

Into Flet's **DataTable**.

For documentation and other details, please visit the project [repository](https://github.com/StanMathers/simple-datatable)

## Release notes:


### Version 0.3.4


- Added **kwargs to every shortcut function


#### Example usage:


```python
import flet as ft
from simpledt import CSVDataTable

def main(page: ft.Page):
    csv = CSVDataTable("MOCK_DATA2.csv", delimiter=";")
    datatable = csv.datatable
    page.add(datatable)

ft.app(target=main)
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/StanMathers/simple-datatable",
    "name": "simpledatatable",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "table,datatable,simpledt,tableserializer,sql,csv,excel,json,flet",
    "author": "Stan Mathers",
    "author_email": "sabagamgebeli@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/5d/04/479d7ce7b7913c411392f9ad34f473cd5a73d2fb3687b62ca9963f7ab98e/simpledatatable-0.3.4.tar.gz",
    "platform": null,
    "description": "# simpledt\n\n\nThis is a third party party package for the framework **Flet**.\n\nIt enables **Flet** users to serialize\n\n- Pandas DataFrame\n- SQL\n- CSV\n- JSON\n- Excel\n\nInto Flet's **DataTable**.\n\nFor documentation and other details, please visit the project [repository](https://github.com/StanMathers/simple-datatable)\n\n## Release notes:\n\n\n### Version 0.3.4\n\n\n- Added **kwargs to every shortcut function\n\n\n#### Example usage:\n\n\n```python\nimport flet as ft\nfrom simpledt import CSVDataTable\n\ndef main(page: ft.Page):\n    csv = CSVDataTable(\"MOCK_DATA2.csv\", delimiter=\";\")\n    datatable = csv.datatable\n    page.add(datatable)\n\nft.app(target=main)\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "This package allows flet developers to easily import SQL, CSV, Excel or Json tables into flet's DataTable.",
    "version": "0.3.4",
    "split_keywords": [
        "table",
        "datatable",
        "simpledt",
        "tableserializer",
        "sql",
        "csv",
        "excel",
        "json",
        "flet"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a35e680bfcb43721cc5a75dad0cb4463a7fc6437556f994a0a98f1bad49fea58",
                "md5": "8d0daa984c339a41160f8a81c3ab7f7b",
                "sha256": "d4f584d9c3c7be05e12339423ef45db86bc60eee57198dfbe20d9a79cf599bb6"
            },
            "downloads": -1,
            "filename": "simpledatatable-0.3.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8d0daa984c339a41160f8a81c3ab7f7b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 5260,
            "upload_time": "2023-01-28T08:22:36",
            "upload_time_iso_8601": "2023-01-28T08:22:36.440317Z",
            "url": "https://files.pythonhosted.org/packages/a3/5e/680bfcb43721cc5a75dad0cb4463a7fc6437556f994a0a98f1bad49fea58/simpledatatable-0.3.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d04479d7ce7b7913c411392f9ad34f473cd5a73d2fb3687b62ca9963f7ab98e",
                "md5": "34fcf98d4e4ff27757f83595cc5dff2c",
                "sha256": "ea486844f25bd06b413f86e0249aba1310b2389a984b99a8cb5363beed24f887"
            },
            "downloads": -1,
            "filename": "simpledatatable-0.3.4.tar.gz",
            "has_sig": false,
            "md5_digest": "34fcf98d4e4ff27757f83595cc5dff2c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6501,
            "upload_time": "2023-01-28T08:22:38",
            "upload_time_iso_8601": "2023-01-28T08:22:38.507293Z",
            "url": "https://files.pythonhosted.org/packages/5d/04/479d7ce7b7913c411392f9ad34f473cd5a73d2fb3687b62ca9963f7ab98e/simpledatatable-0.3.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-28 08:22:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "StanMathers",
    "github_project": "simple-datatable",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "simpledatatable"
}
        
Elapsed time: 0.03761s