chartart


Namechartart JSON
Version 0.0.3.dev40 PyPI version JSON
download
home_pagehttps://github.com/pypa/sampleproject
SummaryChartArt python package
upload_time2025-02-12 07:03:28
maintainerNone
docs_urlNone
authorBR-Advisers
requires_python>=3.6
licenseNone
keywords chartart nlp
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ChartArt Package is under development

Use 
[Github-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
to write your content.

Change Log 

0.0.1 => 0.0.2 
Added support for =>
-Publish post without javascript package from notebook
-Pulish post from standalone python script (Non jupyter environment)


0.0.2 => 0.0.3 
Added support for features at the time of publishing post. Features will get used as filters.

0.0.3.dev5 => 0.0.3.dev6
-Support for status posts compatible with new low code platform.
Example: 

```

filters = {
    "dateAdded": datetime.datetime.now().isoformat() + 'Z',
    'rowSubscriptionCol': 'vendor',
    'type': 'aggregatePost'
}

data = {
    'count': 5,
    'status': 'Warning',
    'vendor': 'GCP'
}

post = Post(postId='GCP_aggregatePost', postTitle='# Aggregated Post')
post.addFilters(filters)
post.createPost(data=data)

```
0.0.3.dev6 => 0.0.3.dev7
-Added Exception handling code if response is not in json format

0.0.3.dev7 => 0.0.3.dev8
-Added code to retry 5xx error code 

0.0.3.dev7 => 0.0.3.dev10
-Resolved unauthorized error and changed sleep time

0.0.3.dev12 => 0.0.3.dev13
- Added line/bar/scatter chart subtypes
- line type : line, area, spline, stepLine, splineArea, stepArea, stackedLine, stackedArea, stackedArea100, stackedLine100
- bar type : bar,column,stackedBar,stackedColumn,stackedBar,stackedBar100,stackedColumn100  
- scatter : bubble , if size is specified as list of float scatter chart will get ploted as bubble chart

0.0.3.dev14 => 0.0.3.dev15
- Tree Map : c (color) param is optional
- Map : shapeDataField is new optional param (defaults to key 'Name'). primaryValueMapper and data is optional parameters now. This will be usefull for markers/bubbles where we dont need these inputs.
- Map : added support fo sub layers. 

0.0.3.dev18
- Added startAngle, endAngle, radius, groupTo in circular chart
- Added number format on axis

0.0.3.dev19
- added support to specify axis type 
- Made default bin interval is 0 . 0 means syncfusion will calculate internally.

0.0.3.dev20
- preview and previewPost url should route should start with /  e.g  earlier http://localhost:port/#preview  now http://localhost:port/#/preview

0.0.3.dev21
- Fix for communicate with Jupyter kernel

0.0.3.dev22
- Fix for setting axis type on figure object

0.0.3.dev23
- Added tooltip related parameters for map

0.0.3.dev25
- Added datetime.date as supported type for datetime axis

0.0.3.dev26
- Inmemory chart inside post

0.0.3.dev29
- Inmemory aggregate posts

0.0.3.dev30
- for table chart now we can specify column types.
- by default we will not show index column in table. User can specify it if needed.

0.0.3.dev31
- Resolved issue of technical indicator in charts

0.0.3.dev32
- Moved candle chart under cartesian chart ubrella
- Added generic method to add charts mainly required for drilldown table

0.0.3.dev33
- Multi axis support

0.0.3.dev34
- Date time axis x support for bar chart. Removed check of check_not_datetime(x)

0.0.3.dev35
- support for isVisibleInLegend on series

0.0.3.dev36
- support for drilldown details at figure level.

0.0.3.dev37
- Handling categorical value for line and bar

0.0.3.dev38
- Handling categorical value for line and bar

0.0.3.dev39
- Handling categorical value for line and bar

0.0.3.dev40
- support for pdf export

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pypa/sampleproject",
    "name": "chartart",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "chartart, NLP",
    "author": "BR-Advisers",
    "author_email": "info@br-advisers.com",
    "download_url": "https://files.pythonhosted.org/packages/23/10/054a40413398ec157e748d041f1ac9c68145485a506c8fb42a8d595ded48/chartart-0.0.3.dev40.tar.gz",
    "platform": null,
    "description": "# ChartArt Package is under development\n\nUse \n[Github-flavored Markdown](https://guides.github.com/features/mastering-markdown/)\nto write your content.\n\nChange Log \n\n0.0.1 => 0.0.2 \nAdded support for =>\n-Publish post without javascript package from notebook\n-Pulish post from standalone python script (Non jupyter environment)\n\n\n0.0.2 => 0.0.3 \nAdded support for features at the time of publishing post. Features will get used as filters.\n\n0.0.3.dev5 => 0.0.3.dev6\n-Support for status posts compatible with new low code platform.\nExample: \n\n```\n\nfilters = {\n    \"dateAdded\": datetime.datetime.now().isoformat() + 'Z',\n    'rowSubscriptionCol': 'vendor',\n    'type': 'aggregatePost'\n}\n\ndata = {\n    'count': 5,\n    'status': 'Warning',\n    'vendor': 'GCP'\n}\n\npost = Post(postId='GCP_aggregatePost', postTitle='# Aggregated Post')\npost.addFilters(filters)\npost.createPost(data=data)\n\n```\n0.0.3.dev6 => 0.0.3.dev7\n-Added Exception handling code if response is not in json format\n\n0.0.3.dev7 => 0.0.3.dev8\n-Added code to retry 5xx error code \n\n0.0.3.dev7 => 0.0.3.dev10\n-Resolved unauthorized error and changed sleep time\n\n0.0.3.dev12 => 0.0.3.dev13\n- Added line/bar/scatter chart subtypes\n- line type : line, area, spline, stepLine, splineArea, stepArea, stackedLine, stackedArea, stackedArea100, stackedLine100\n- bar type : bar,column,stackedBar,stackedColumn,stackedBar,stackedBar100,stackedColumn100  \n- scatter : bubble , if size is specified as list of float scatter chart will get ploted as bubble chart\n\n0.0.3.dev14 => 0.0.3.dev15\n- Tree Map : c (color) param is optional\n- Map : shapeDataField is new optional param (defaults to key 'Name'). primaryValueMapper and data is optional parameters now. This will be usefull for markers/bubbles where we dont need these inputs.\n- Map : added support fo sub layers. \n\n0.0.3.dev18\n- Added startAngle, endAngle, radius, groupTo in circular chart\n- Added number format on axis\n\n0.0.3.dev19\n- added support to specify axis type \n- Made default bin interval is 0 . 0 means syncfusion will calculate internally.\n\n0.0.3.dev20\n- preview and previewPost url should route should start with /  e.g  earlier http://localhost:port/#preview  now http://localhost:port/#/preview\n\n0.0.3.dev21\n- Fix for communicate with Jupyter kernel\n\n0.0.3.dev22\n- Fix for setting axis type on figure object\n\n0.0.3.dev23\n- Added tooltip related parameters for map\n\n0.0.3.dev25\n- Added datetime.date as supported type for datetime axis\n\n0.0.3.dev26\n- Inmemory chart inside post\n\n0.0.3.dev29\n- Inmemory aggregate posts\n\n0.0.3.dev30\n- for table chart now we can specify column types.\n- by default we will not show index column in table. User can specify it if needed.\n\n0.0.3.dev31\n- Resolved issue of technical indicator in charts\n\n0.0.3.dev32\n- Moved candle chart under cartesian chart ubrella\n- Added generic method to add charts mainly required for drilldown table\n\n0.0.3.dev33\n- Multi axis support\n\n0.0.3.dev34\n- Date time axis x support for bar chart. Removed check of check_not_datetime(x)\n\n0.0.3.dev35\n- support for isVisibleInLegend on series\n\n0.0.3.dev36\n- support for drilldown details at figure level.\n\n0.0.3.dev37\n- Handling categorical value for line and bar\n\n0.0.3.dev38\n- Handling categorical value for line and bar\n\n0.0.3.dev39\n- Handling categorical value for line and bar\n\n0.0.3.dev40\n- support for pdf export\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "ChartArt python package",
    "version": "0.0.3.dev40",
    "project_urls": {
        "Bug Tracker": "https://github.com/pypa/sampleproject/issues",
        "Homepage": "https://github.com/pypa/sampleproject"
    },
    "split_keywords": [
        "chartart",
        " nlp"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "088481d2051ef9caa44a271629f1884a73ef67992891cffe37d24d6c1a00b101",
                "md5": "e16a1b623a45420156371d8828e199ec",
                "sha256": "90f54c7226b5fb5c99eec7bf9946d68e261d0926d73374feb527e03eca739acf"
            },
            "downloads": -1,
            "filename": "chartart-0.0.3.dev40-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e16a1b623a45420156371d8828e199ec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 37455,
            "upload_time": "2025-02-12T07:03:26",
            "upload_time_iso_8601": "2025-02-12T07:03:26.040359Z",
            "url": "https://files.pythonhosted.org/packages/08/84/81d2051ef9caa44a271629f1884a73ef67992891cffe37d24d6c1a00b101/chartart-0.0.3.dev40-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2310054a40413398ec157e748d041f1ac9c68145485a506c8fb42a8d595ded48",
                "md5": "e5dee99475decf412f86dbb14fc77d74",
                "sha256": "258b60813bb56433471f77dba56ec5ae4104aa4475dc525c3f68fd65508db8bf"
            },
            "downloads": -1,
            "filename": "chartart-0.0.3.dev40.tar.gz",
            "has_sig": false,
            "md5_digest": "e5dee99475decf412f86dbb14fc77d74",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 37627,
            "upload_time": "2025-02-12T07:03:28",
            "upload_time_iso_8601": "2025-02-12T07:03:28.192600Z",
            "url": "https://files.pythonhosted.org/packages/23/10/054a40413398ec157e748d041f1ac9c68145485a506c8fb42a8d595ded48/chartart-0.0.3.dev40.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-12 07:03:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pypa",
    "github_project": "sampleproject",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "chartart"
}
        
Elapsed time: 0.42019s