yfiles-jupyter-graphs


Nameyfiles-jupyter-graphs JSON
Version 1.6.2 PyPI version JSON
download
home_pagehttps://www.yworks.com/products/yfiles-graphs-for-jupyter
SummaryA diagram visualization extension for JupyterLab and Jupyter Notebooks powered by yFiles for HTML
upload_time2024-03-14 16:31:44
maintainer
docs_urlNone
authoryWorks Support Team
requires_python>=3.6
licensehttps://github.com/yWorks/yfiles-jupyter-graphs/blob/main/LICENSE.md
keywords jupyter jupyterlab jupyterlab3ipython widgets yfiles visualization graph diagrams
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <img src="https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/yfiles-jupyter-graphs-logo.svg" alt='yFiles Graphs for Jupyter logo'  width="400px" style='max-width: 400px'>
</p>

[![PyPI version](https://badge.fury.io/py/yfiles-jupyter-graphs.svg)](https://badge.fury.io/py/yfiles-jupyter-graphs)

A graph diagram visualization widget for Jupyter Notebooks and Labs powered by [yFiles for HTML](https://www.yworks.com/yfiles-overview?utm_campaign=yfiles4jupyter&utm_source=github&utm_medium=readme).

Easily visualize graphs from various sources: [Networkx](https://networkx.org/)✅, [igraph](https://igraph.org/python/)✅, [neo4j](https://pypi.org/project/neo4j/)✅, [pygraphviz](https://pygraphviz.github.io/)✅, and any structured Python dictionaries and lists. Many more formats supported indirectly via [Networkx imports](https://networkx.org/documentation/stable/reference/readwrite/index.html#reading-and-writing-graphs)!

The widget is supported in the default Jupyter environments, but also in other environments like VS Code or Google Colab.

[![yFiles Graphs for Jupyter](https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/yfiles-jupyter-graphs.gif)](https://player.vimeo.com/video/715615671)

Try the [Introduction](https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/01_introduction.ipynb) notebook on Google Colab [here](https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/01_introduction.ipynb).

## Supported Environments
- [JupyterLab or Jupyter Notebook](https://jupyter.org/)
- [Visual Studio Code](https://code.visualstudio.com/)
- [Google Colaboratory](https://colab.research.google.com/)
- [Google Vertex AI Workbench](https://cloud.google.com/vertex-ai)
- [Google Dataproc](https://cloud.google.com/dataproc)
- [Azure Machine Learning Studio Notebooks](https://azure.microsoft.com/en-us/products/machine-learning/)
- [Amazon SageMaker](https://aws.amazon.com/sagemaker/)
- Just try it in your preferred platform for Jupyter notebooks

## Requirements
- [python](https://www.python.org/) >= 3.6
- [jupyter](https://jupyter.org/install) notebook or lab
- [ipywidgets](https://github.com/jupyter-widgets/ipywidgets) >= 7.6.0

## Installation

If you already have Jupyter installed, just `pip install` the prebuilt extension from the [Python Package Index](https://pypi.org/).

```bash
pip install yfiles_jupyter_graphs
```

If you want to start clean and get a fresh new Jupyter Lab with the widget readily installed and available, you can use [`docker`](https://www.docker.com/), too:

Form a shell, create a docker image that contains all that is required:

```bash
mkdir yfiles-jupyter && cd yfiles-jupyter
echo -e "FROM jupyter/scipy-notebook\nRUN pip install yfiles-jupyter-graphs" > Dockerfile
docker build -t yfiles-jupyter-graphs-on-docker .
```

(the above has been tested successfully with `scipy-notebook:lab-3.4.7` and `yfiles-jupyter-graphs==1.2.1`), but we want to make sure that it will also work with  upcoming versions - file an issue if it doesn't work for you!)

You can then create a fresh new instance of your server from this image like so:

```bash
docker run -it -p 8888:8888 --name yfiles-jupyter yfiles-jupyter-graphs-on-docker
```

## Usage

In a notebook which has the wiget installed in the server, in a Python cell, you can then do this:

```python
"""Execute in jupyter notebook or jupyter lab"""
from yfiles_jupyter_graphs import GraphWidget
# shows empty widget
GraphWidget()
```

You can find the full documentation [here](https://yworks.github.io/yfiles-jupyter-graphs/).

## Features
<table>
    <tr>
        <td><a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/28_little-alchemy_example.ipynb"><img src="https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/neighborhood.png" title="See Node Neighborhood" alt="neighborhood sidebar"></a>
        <a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/28_little-alchemy_example.ipynb">See Node Neighborhood</a><br><a target="_blank" href="https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/28_little-alchemy_example.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a></td>
        <td><a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/22_layouts.ipynb"><img src="https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/layouts.png" title="Choose Graph Layout" alt="layouts"></a>
        <a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/22_layouts.ipynb">Choose Graph Layout</a><br><a target="_blank" href="https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/22_layouts.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a></td>
    </tr>
    <tr>
        <td><a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb"><img src="https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/data.png" title="Investigate Nodes and Edges Data" alt="data sidebar"></a>
        <a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb">Investigate Nodes or Edges Data</a><br><a target="_blank" href="https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a></td>
        <td><a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb"><img src="https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/search.png" title="Search for Nodes or Edges" alt="search sidebar"></a>
        <a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb">Search for Nodes or Edges</a><br><a target="_blank" href="https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a></td>
    </tr>
    <tr>
        <td><a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/13_networkx_import.ipynb"><img src="https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/importer.png" title="Import Graph Data" alt="importer"></a>
        <a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/13_networkx_import.ipynb">Import Graph Data</a><br><a target="_blank" href="https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/13_networkx_import.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a></td>
        <td><a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/03_color_mapping.ipynb"><img src="https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/element_color_mapping.png" title="Make Data Dependent Property Changes" alt="element color mapping"></a>
        <a href="https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/03_color_mapping.ipynb">Make Data Dependent Property Changes</a><br><a target="_blank" href="https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/03_color_mapping.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a></td>
    </tr>
</table>

For example code look [here](https://github.com/yWorks/yfiles-jupyter-graphs/tree/master/examples).

### Google Colab Examples
You can try the [example notebooks](https://github.com/yWorks/yfiles-jupyter-graphs/tree/master/examples) in Google Colab by
opening GitHub notebook URL: `https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/<notebook.ipynb>`.

For example the [Introduction](https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/01_introduction.ipynb) notebook: <br>
https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/01_introduction.ipynb

## Documentation
You can find the documentation [here](https://yworks.github.io/yfiles-jupyter-graphs/).

## Code of Conduct
This project and everyone participating in it is governed by the [Code of Conduct](https://github.com/yWorks/yfiles-jupyter-graphs/blob/master/CODE_OF_CONDUCT.md).
By participating, you are expected to uphold this code.
Please report unacceptable behavior to [contact@yworks.com](mailto:contact@yworks.com).

## Feedback
This widget is by no means perfect.
If you find something is not working as expected
we are glad to receive an issue report from you.
Please make sure to [search for existing issues](https://github.com/yWorks/yfiles-jupyter-graphs/search?q=is%3Aissue+repo%3AyWorks%2Fyfiles-jupyter-graphs&type=issues) first
and check if the issue is not an unsupported feature or known issue.
If you did not find anything related, report a new issue with necessary information.
Please also provide a clear and descriptive title and stick to the issue templates.
See [issues](https://github.com/yWorks/yfiles-jupyter-graphs/issues).

## Dependencies
- [yFiles for HTML](https://www.yworks.com/yfiles)
- [@ctrl/tinycolor](https://github.com/scttcper/tinycolor)
- [@jupyter-widgets/base](https://github.com/jupyter-widgets/ipywidgets)
- [@mdi/js](https://github.com/Templarian/MaterialDesign-JS)
- [Vue](https://vuejs.org/)
- [vue-json-viewer](https://github.com/chenfengjw163/vue-json-viewer)

## License
See [LICENSE](https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/LICENSE.md) file.

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.yworks.com/products/yfiles-graphs-for-jupyter",
    "name": "yfiles-jupyter-graphs",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "Jupyter,JupyterLab,JupyterLab3ipython,widgets,yfiles,visualization,graph,diagrams",
    "author": "yWorks Support Team",
    "author_email": "yfileshtml@yworks.com",
    "download_url": "https://files.pythonhosted.org/packages/aa/3c/e238c6c503c9cdd1063b5ac085e948b02ca31d7669ae955a8573bf4e0dfd/yfiles_jupyter_graphs-1.6.2.tar.gz",
    "platform": "Linux",
    "description": "<p align=\"center\">\n    <img src=\"https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/yfiles-jupyter-graphs-logo.svg\" alt='yFiles Graphs for Jupyter logo'  width=\"400px\" style='max-width: 400px'>\n</p>\n\n[![PyPI version](https://badge.fury.io/py/yfiles-jupyter-graphs.svg)](https://badge.fury.io/py/yfiles-jupyter-graphs)\n\nA graph diagram visualization widget for Jupyter Notebooks and Labs powered by [yFiles for HTML](https://www.yworks.com/yfiles-overview?utm_campaign=yfiles4jupyter&utm_source=github&utm_medium=readme).\n\nEasily visualize graphs from various sources: [Networkx](https://networkx.org/)\u2705, [igraph](https://igraph.org/python/)\u2705, [neo4j](https://pypi.org/project/neo4j/)\u2705, [pygraphviz](https://pygraphviz.github.io/)\u2705, and any structured Python dictionaries and lists. Many more formats supported indirectly via [Networkx imports](https://networkx.org/documentation/stable/reference/readwrite/index.html#reading-and-writing-graphs)!\n\nThe widget is supported in the default Jupyter environments, but also in other environments like VS Code or Google Colab.\n\n[![yFiles Graphs for Jupyter](https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/yfiles-jupyter-graphs.gif)](https://player.vimeo.com/video/715615671)\n\nTry the [Introduction](https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/01_introduction.ipynb) notebook on Google Colab [here](https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/01_introduction.ipynb).\n\n## Supported Environments\n- [JupyterLab or Jupyter Notebook](https://jupyter.org/)\n- [Visual Studio Code](https://code.visualstudio.com/)\n- [Google Colaboratory](https://colab.research.google.com/)\n- [Google Vertex AI Workbench](https://cloud.google.com/vertex-ai)\n- [Google Dataproc](https://cloud.google.com/dataproc)\n- [Azure Machine Learning Studio Notebooks](https://azure.microsoft.com/en-us/products/machine-learning/)\n- [Amazon SageMaker](https://aws.amazon.com/sagemaker/)\n- Just try it in your preferred platform for Jupyter notebooks\n\n## Requirements\n- [python](https://www.python.org/) >= 3.6\n- [jupyter](https://jupyter.org/install) notebook or lab\n- [ipywidgets](https://github.com/jupyter-widgets/ipywidgets) >= 7.6.0\n\n## Installation\n\nIf you already have Jupyter installed, just `pip install` the prebuilt extension from the [Python Package Index](https://pypi.org/).\n\n```bash\npip install yfiles_jupyter_graphs\n```\n\nIf you want to start clean and get a fresh new Jupyter Lab with the widget readily installed and available, you can use [`docker`](https://www.docker.com/), too:\n\nForm a shell, create a docker image that contains all that is required:\n\n```bash\nmkdir yfiles-jupyter && cd yfiles-jupyter\necho -e \"FROM jupyter/scipy-notebook\\nRUN pip install yfiles-jupyter-graphs\" > Dockerfile\ndocker build -t yfiles-jupyter-graphs-on-docker .\n```\n\n(the above has been tested successfully with `scipy-notebook:lab-3.4.7` and `yfiles-jupyter-graphs==1.2.1`), but we want to make sure that it will also work with  upcoming versions - file an issue if it doesn't work for you!)\n\nYou can then create a fresh new instance of your server from this image like so:\n\n```bash\ndocker run -it -p 8888:8888 --name yfiles-jupyter yfiles-jupyter-graphs-on-docker\n```\n\n## Usage\n\nIn a notebook which has the wiget installed in the server, in a Python cell, you can then do this:\n\n```python\n\"\"\"Execute in jupyter notebook or jupyter lab\"\"\"\nfrom yfiles_jupyter_graphs import GraphWidget\n# shows empty widget\nGraphWidget()\n```\n\nYou can find the full documentation [here](https://yworks.github.io/yfiles-jupyter-graphs/).\n\n## Features\n<table>\n    <tr>\n        <td><a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/28_little-alchemy_example.ipynb\"><img src=\"https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/neighborhood.png\" title=\"See Node Neighborhood\" alt=\"neighborhood sidebar\"></a>\n        <a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/28_little-alchemy_example.ipynb\">See Node Neighborhood</a><br><a target=\"_blank\" href=\"https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/28_little-alchemy_example.ipynb\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a></td>\n        <td><a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/22_layouts.ipynb\"><img src=\"https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/layouts.png\" title=\"Choose Graph Layout\" alt=\"layouts\"></a>\n        <a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/22_layouts.ipynb\">Choose Graph Layout</a><br><a target=\"_blank\" href=\"https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/22_layouts.ipynb\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a></td>\n    </tr>\n    <tr>\n        <td><a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb\"><img src=\"https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/data.png\" title=\"Investigate Nodes and Edges Data\" alt=\"data sidebar\"></a>\n        <a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb\">Investigate Nodes or Edges Data</a><br><a target=\"_blank\" href=\"https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a></td>\n        <td><a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb\"><img src=\"https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/search.png\" title=\"Search for Nodes or Edges\" alt=\"search sidebar\"></a>\n        <a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb\">Search for Nodes or Edges</a><br><a target=\"_blank\" href=\"https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/23_sidebar.ipynb\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a></td>\n    </tr>\n    <tr>\n        <td><a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/13_networkx_import.ipynb\"><img src=\"https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/importer.png\" title=\"Import Graph Data\" alt=\"importer\"></a>\n        <a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/13_networkx_import.ipynb\">Import Graph Data</a><br><a target=\"_blank\" href=\"https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/13_networkx_import.ipynb\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a></td>\n        <td><a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/03_color_mapping.ipynb\"><img src=\"https://raw.githubusercontent.com/yWorks/yfiles-jupyter-graphs/main/screenshots/element_color_mapping.png\" title=\"Make Data Dependent Property Changes\" alt=\"element color mapping\"></a>\n        <a href=\"https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/03_color_mapping.ipynb\">Make Data Dependent Property Changes</a><br><a target=\"_blank\" href=\"https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/03_color_mapping.ipynb\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a></td>\n    </tr>\n</table>\n\nFor example code look [here](https://github.com/yWorks/yfiles-jupyter-graphs/tree/master/examples).\n\n### Google Colab Examples\nYou can try the [example notebooks](https://github.com/yWorks/yfiles-jupyter-graphs/tree/master/examples) in Google Colab by\nopening GitHub notebook URL: `https://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/<notebook.ipynb>`.\n\nFor example the [Introduction](https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/examples/01_introduction.ipynb) notebook: <br>\nhttps://colab.research.google.com/github/yWorks/yfiles-jupyter-graphs/blob/main/examples/01_introduction.ipynb\n\n## Documentation\nYou can find the documentation [here](https://yworks.github.io/yfiles-jupyter-graphs/).\n\n## Code of Conduct\nThis project and everyone participating in it is governed by the [Code of Conduct](https://github.com/yWorks/yfiles-jupyter-graphs/blob/master/CODE_OF_CONDUCT.md).\nBy participating, you are expected to uphold this code.\nPlease report unacceptable behavior to [contact@yworks.com](mailto:contact@yworks.com).\n\n## Feedback\nThis widget is by no means perfect.\nIf you find something is not working as expected\nwe are glad to receive an issue report from you.\nPlease make sure to [search for existing issues](https://github.com/yWorks/yfiles-jupyter-graphs/search?q=is%3Aissue+repo%3AyWorks%2Fyfiles-jupyter-graphs&type=issues) first\nand check if the issue is not an unsupported feature or known issue.\nIf you did not find anything related, report a new issue with necessary information.\nPlease also provide a clear and descriptive title and stick to the issue templates.\nSee [issues](https://github.com/yWorks/yfiles-jupyter-graphs/issues).\n\n## Dependencies\n- [yFiles for HTML](https://www.yworks.com/yfiles)\n- [@ctrl/tinycolor](https://github.com/scttcper/tinycolor)\n- [@jupyter-widgets/base](https://github.com/jupyter-widgets/ipywidgets)\n- [@mdi/js](https://github.com/Templarian/MaterialDesign-JS)\n- [Vue](https://vuejs.org/)\n- [vue-json-viewer](https://github.com/chenfengjw163/vue-json-viewer)\n\n## License\nSee [LICENSE](https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/LICENSE.md) file.\n",
    "bugtrack_url": null,
    "license": "https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/LICENSE.md",
    "summary": "A diagram visualization extension for JupyterLab and Jupyter Notebooks powered by yFiles for HTML",
    "version": "1.6.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/yWorks/yfiles-jupyter-graphs/issues",
        "Documentation": "https://yworks.github.io/yfiles-jupyter-graphs/",
        "Homepage": "https://www.yworks.com/products/yfiles-graphs-for-jupyter",
        "License": "https://github.com/yWorks/yfiles-jupyter-graphs/blob/main/LICENSE.md"
    },
    "split_keywords": [
        "jupyter",
        "jupyterlab",
        "jupyterlab3ipython",
        "widgets",
        "yfiles",
        "visualization",
        "graph",
        "diagrams"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f20dfec1c1fe9ad7abfe6689029c389c0f41124474d7efa278771a03b38cb64",
                "md5": "4a894db35b69f6645249ed452a48bb65",
                "sha256": "3e00fb70eeaf08ce3492b333ec61b12f18ab6aa0072dd96b71cac696ac1b907d"
            },
            "downloads": -1,
            "filename": "yfiles_jupyter_graphs-1.6.2-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4a894db35b69f6645249ed452a48bb65",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.6",
            "size": 15258682,
            "upload_time": "2024-03-14T16:31:39",
            "upload_time_iso_8601": "2024-03-14T16:31:39.151090Z",
            "url": "https://files.pythonhosted.org/packages/5f/20/dfec1c1fe9ad7abfe6689029c389c0f41124474d7efa278771a03b38cb64/yfiles_jupyter_graphs-1.6.2-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa3ce238c6c503c9cdd1063b5ac085e948b02ca31d7669ae955a8573bf4e0dfd",
                "md5": "fa0f26d8f1696c007a22981dbe19f705",
                "sha256": "adc8c8947271cbc27e32ba015a2aeafb90c66249676cabbf67876c2fb89b536a"
            },
            "downloads": -1,
            "filename": "yfiles_jupyter_graphs-1.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "fa0f26d8f1696c007a22981dbe19f705",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 9163854,
            "upload_time": "2024-03-14T16:31:44",
            "upload_time_iso_8601": "2024-03-14T16:31:44.787461Z",
            "url": "https://files.pythonhosted.org/packages/aa/3c/e238c6c503c9cdd1063b5ac085e948b02ca31d7669ae955a8573bf4e0dfd/yfiles_jupyter_graphs-1.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-14 16:31:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "yWorks",
    "github_project": "yfiles-jupyter-graphs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "yfiles-jupyter-graphs"
}
        
Elapsed time: 0.17426s