gh0st-SimpleDiagramTool


Namegh0st-SimpleDiagramTool JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttps://github.com/gh0stintheshe11/gh0st-SImpleDiagramTool
SummaryA simple diagram drawing tool
upload_time2024-03-14 06:27:41
maintainer
docs_urlNone
authorgh0stintheshe11
requires_python
licenseMIT
keywords diagram flowchart matplotlib
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## Quick Start Guide

Here's how to create a simple diagram with a block, a line, and an arrow:

```python
from gh0st_SimpleDiagramTool import SimpleDiagramTool

tool = SimpleDiagramTool()
tool.add_block((0.1, 0.1), (0.2, 0.1), "Start", boundary_color='blue', text_size=12)
tool.add_line((0.3, 0.15), (0.4, 0.15), line_color='green')
tool.add_arrow((0.4, 0.15), (0.5, 0.15), arrow_color='red')
tool.show()
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gh0stintheshe11/gh0st-SImpleDiagramTool",
    "name": "gh0st-SimpleDiagramTool",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "diagram flowchart matplotlib",
    "author": "gh0stintheshe11",
    "author_email": "gh0stintheshe11@gmail.com",
    "download_url": "",
    "platform": null,
    "description": "## Quick Start Guide\n\nHere's how to create a simple diagram with a block, a line, and an arrow:\n\n```python\nfrom gh0st_SimpleDiagramTool import SimpleDiagramTool\n\ntool = SimpleDiagramTool()\ntool.add_block((0.1, 0.1), (0.2, 0.1), \"Start\", boundary_color='blue', text_size=12)\ntool.add_line((0.3, 0.15), (0.4, 0.15), line_color='green')\ntool.add_arrow((0.4, 0.15), (0.5, 0.15), arrow_color='red')\ntool.show()\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A simple diagram drawing tool",
    "version": "0.0.1",
    "project_urls": {
        "Homepage": "https://github.com/gh0stintheshe11/gh0st-SImpleDiagramTool"
    },
    "split_keywords": [
        "diagram",
        "flowchart",
        "matplotlib"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f804cbbccb54b5f0b81255a848d11181662081f7247611506f15b1b4212eadfe",
                "md5": "f02bda751193eb508176629687e61280",
                "sha256": "76a7d27b1953ec5f0ab8b6fd9f3fb485de47063cc79b026ef1c87bb01e404327"
            },
            "downloads": -1,
            "filename": "gh0st_SimpleDiagramTool-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f02bda751193eb508176629687e61280",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 3483,
            "upload_time": "2024-03-14T06:27:41",
            "upload_time_iso_8601": "2024-03-14T06:27:41.559267Z",
            "url": "https://files.pythonhosted.org/packages/f8/04/cbbccb54b5f0b81255a848d11181662081f7247611506f15b1b4212eadfe/gh0st_SimpleDiagramTool-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-14 06:27:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gh0stintheshe11",
    "github_project": "gh0st-SImpleDiagramTool",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gh0st-simplediagramtool"
}
        
Elapsed time: 0.20410s