linked


Namelinked JSON
Version 0.0.3 PyPI version JSON
download
home_pagehttps://github.com/i2mint/linked
SummaryCreate and transform graphs
upload_time2024-12-19 10:25:39
maintainerNone
docs_urlNone
authorOtoSense
requires_pythonNone
licenseapache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # linked

Create and transform graphs

To install:	```pip install linked```

# Examples

## mini_dot_to_graph_jdict

```python
>>> from linked import mini_dot_to_graph_jdict
>>> mini_dot_to_graph_jdict('''
... 1 -> 2
... 2, 3 -> 5, 6, 7
... ''')
{'nodes': [{'id': '1'},
{'id': '2'},
{'id': '5'},
{'id': '6'},
{'id': '7'},
{'id': '3'}],
'links': [{'source': '1', 'target': '2'},
{'source': '2', 'target': '5'},
{'source': '2', 'target': '6'},
{'source': '2', 'target': '7'},
{'source': '3', 'target': '5'},
{'source': '3', 'target': '6'},
{'source': '3', 'target': '7'}]}
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/i2mint/linked",
    "name": "linked",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "OtoSense",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/bc/35/029180b32fe5a642bcd705b98bbf0afe212f69063a0c655ae5e7d44c05c9/linked-0.0.3.tar.gz",
    "platform": "any",
    "description": "# linked\n\nCreate and transform graphs\n\nTo install:\t```pip install linked```\n\n# Examples\n\n## mini_dot_to_graph_jdict\n\n```python\n>>> from linked import mini_dot_to_graph_jdict\n>>> mini_dot_to_graph_jdict('''\n... 1 -> 2\n... 2, 3 -> 5, 6, 7\n... ''')\n{'nodes': [{'id': '1'},\n{'id': '2'},\n{'id': '5'},\n{'id': '6'},\n{'id': '7'},\n{'id': '3'}],\n'links': [{'source': '1', 'target': '2'},\n{'source': '2', 'target': '5'},\n{'source': '2', 'target': '6'},\n{'source': '2', 'target': '7'},\n{'source': '3', 'target': '5'},\n{'source': '3', 'target': '6'},\n{'source': '3', 'target': '7'}]}\n```\n",
    "bugtrack_url": null,
    "license": "apache-2.0",
    "summary": "Create and transform graphs",
    "version": "0.0.3",
    "project_urls": {
        "Homepage": "https://github.com/i2mint/linked"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a75e4026953750e2debfe403da5bbf9948407de6620be25a6c25eb73541eeed",
                "md5": "2c2685b3a376af1334791198e1fd5699",
                "sha256": "ac7ce7bce3457dfec249c4e35f530eac973c4414990ba3047fdbb352468eed65"
            },
            "downloads": -1,
            "filename": "linked-0.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2c2685b3a376af1334791198e1fd5699",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 7597,
            "upload_time": "2024-12-19T10:25:37",
            "upload_time_iso_8601": "2024-12-19T10:25:37.252194Z",
            "url": "https://files.pythonhosted.org/packages/6a/75/e4026953750e2debfe403da5bbf9948407de6620be25a6c25eb73541eeed/linked-0.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc35029180b32fe5a642bcd705b98bbf0afe212f69063a0c655ae5e7d44c05c9",
                "md5": "1eed8fffbe2fc82ba9abc76706f033a7",
                "sha256": "5f0221e2ff7e8e327025de86337d8d7bd362f872dcd4b66432fe6b29e75e2880"
            },
            "downloads": -1,
            "filename": "linked-0.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "1eed8fffbe2fc82ba9abc76706f033a7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6686,
            "upload_time": "2024-12-19T10:25:39",
            "upload_time_iso_8601": "2024-12-19T10:25:39.217053Z",
            "url": "https://files.pythonhosted.org/packages/bc/35/029180b32fe5a642bcd705b98bbf0afe212f69063a0c655ae5e7d44c05c9/linked-0.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-19 10:25:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "i2mint",
    "github_project": "linked",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "linked"
}
        
Elapsed time: 0.64128s