pyvisjs


Namepyvisjs JSON
Version 1.0.0b1 PyPI version JSON
download
home_pageNone
SummaryA Python wrapper for vis.js Network
upload_time2024-05-15 12:34:12
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT License Copyright (c) 2024 Andrey Morozov (andrey@morozov.lv) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords visjs visnetwork graph network
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pyvisjs: Python Wrapper for vis.js Network

pyvisjs is a Python package designed to provide seamless interaction with [vis.js](https://visjs.org) network visualizations, allowing users to manipulate and visualize network data using Python.

## Workflow

1. Create a network using python
2. Apply standatd vis.js options such as colors, shapes or physics
3. Apply pyvisjs specific options such as filtering or highlighting
4. Show or generate html file
5. Enjoy network interactions in your browser

## Installation

You can install PyVisjs via pip:

```bash
pip install pyvisjs
```

## Usage

```python
from pyvisjs import Network

# Create a Network instance
net = Network()

# Add nodes and edges
net.add_node(1)
net.add_node(2)
net.add_edge(1, 2)

# Display the network
net.show("example.html")
```

For more examples and detailed usage, please refer to the [documentation](link_to_docs).

## Contributing

Contributions are welcome! If you have suggestions, feature requests, or find any bugs, please open an issue or submit a pull request. Make sure to follow the [contribution guidelines](CONTRIBUTING.md).

## Acknowledgments

This project is inspired by the [pyvis](https://github.com/WestHealth/pyvis) Python package and the [visNetwork](https://github.com/datastorm-open/visNetwork) R-language package.

## License

This project is licensed under the [MIT License](link_to_license).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyvisjs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "visjs, visNetwork, graph, network",
    "author": null,
    "author_email": "Andrey Morozov <andrey@morozov.lv>",
    "download_url": "https://files.pythonhosted.org/packages/a0/d7/882e334dab5436d2c759cd7ee3da7d060b1d8a82524ffaec868ee15f4ddd/pyvisjs-1.0.0b1.tar.gz",
    "platform": null,
    "description": "# pyvisjs: Python Wrapper for vis.js Network\n\npyvisjs is a Python package designed to provide seamless interaction with [vis.js](https://visjs.org) network visualizations, allowing users to manipulate and visualize network data using Python.\n\n## Workflow\n\n1. Create a network using python\n2. Apply standatd vis.js options such as colors, shapes or physics\n3. Apply pyvisjs specific options such as filtering or highlighting\n4. Show or generate html file\n5. Enjoy network interactions in your browser\n\n## Installation\n\nYou can install PyVisjs via pip:\n\n```bash\npip install pyvisjs\n```\n\n## Usage\n\n```python\nfrom pyvisjs import Network\n\n# Create a Network instance\nnet = Network()\n\n# Add nodes and edges\nnet.add_node(1)\nnet.add_node(2)\nnet.add_edge(1, 2)\n\n# Display the network\nnet.show(\"example.html\")\n```\n\nFor more examples and detailed usage, please refer to the [documentation](link_to_docs).\n\n## Contributing\n\nContributions are welcome! If you have suggestions, feature requests, or find any bugs, please open an issue or submit a pull request. Make sure to follow the [contribution guidelines](CONTRIBUTING.md).\n\n## Acknowledgments\n\nThis project is inspired by the [pyvis](https://github.com/WestHealth/pyvis) Python package and the [visNetwork](https://github.com/datastorm-open/visNetwork) R-language package.\n\n## License\n\nThis project is licensed under the [MIT License](link_to_license).\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Andrey Morozov (andrey@morozov.lv)  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "A Python wrapper for vis.js Network",
    "version": "1.0.0b1",
    "project_urls": {
        "Homepage": "https://gitlab.com/22kittens/pyvisjs",
        "Issues": "https://gitlab.com/22kittens/pyvisjs/-/issues",
        "Repository": "https://gitlab.com/22kittens/pyvisjs.git"
    },
    "split_keywords": [
        "visjs",
        " visnetwork",
        " graph",
        " network"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ba7f108edbddf393a5e91b5ab4446cb59c71044e9bd087c25433391573f7555",
                "md5": "6fb0aa242896157b26090f4deeeddc49",
                "sha256": "082150ea28dd4bc6bf01a6b3ae857ce3997bfdcc7c3ba19d9291b2211add9d62"
            },
            "downloads": -1,
            "filename": "pyvisjs-1.0.0b1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6fb0aa242896157b26090f4deeeddc49",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 27651,
            "upload_time": "2024-05-15T12:34:10",
            "upload_time_iso_8601": "2024-05-15T12:34:10.569957Z",
            "url": "https://files.pythonhosted.org/packages/7b/a7/f108edbddf393a5e91b5ab4446cb59c71044e9bd087c25433391573f7555/pyvisjs-1.0.0b1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0d7882e334dab5436d2c759cd7ee3da7d060b1d8a82524ffaec868ee15f4ddd",
                "md5": "581c7605da3c3ee1397886f9375d934c",
                "sha256": "b4d5c914960766c4659b6d91433c93ed401a55dc0bdd0a2404199992b60dcb7b"
            },
            "downloads": -1,
            "filename": "pyvisjs-1.0.0b1.tar.gz",
            "has_sig": false,
            "md5_digest": "581c7605da3c3ee1397886f9375d934c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 26727,
            "upload_time": "2024-05-15T12:34:12",
            "upload_time_iso_8601": "2024-05-15T12:34:12.276680Z",
            "url": "https://files.pythonhosted.org/packages/a0/d7/882e334dab5436d2c759cd7ee3da7d060b1d8a82524ffaec868ee15f4ddd/pyvisjs-1.0.0b1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-15 12:34:12",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "22kittens",
    "gitlab_project": "pyvisjs",
    "lcname": "pyvisjs"
}
        
Elapsed time: 0.31386s