diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 691565de..d305da70 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,8 +8,8 @@ updates: - package-ecosystem: "pip" directory: "/python-wrapper" schedule: - interval: "daily" + interval: "weekly" - package-ecosystem: "npm" directory: "/js-applet" schedule: - interval: "daily" + interval: "weekly" diff --git a/docs/extra/getting-started.ipynb b/docs/extra/getting-started.ipynb index 5ffaef16..5995d03b 100644 --- a/docs/extra/getting-started.ipynb +++ b/docs/extra/getting-started.ipynb @@ -27,7 +27,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 4, "id": "801d0bed", "metadata": { "tags": [ @@ -39,15 +39,15 @@ "data": { "text/html": [ "\n", - "
\n", + "
\n", " \n", @@ -57,7 +57,7 @@ "" ] }, - "execution_count": 5, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } @@ -92,7 +92,7 @@ "\n", "VG = VisualizationGraph(nodes=nodes, relationships=relationships)\n", "\n", - "VG.render()" + "VG.render(initial_zoom=2)" ] }, { @@ -113,7 +113,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 5, "id": "d935b3d4", "metadata": { "tags": [ @@ -125,15 +125,15 @@ "data": { "text/html": [ "\n", - "
\n", + "
\n", " \n", @@ -143,7 +143,7 @@ "" ] }, - "execution_count": 6, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } @@ -151,7 +151,7 @@ "source": [ "VG.color_nodes(\"caption\")\n", "\n", - "VG.render()" + "VG.render(initial_zoom=2)" ] }, { @@ -173,11 +173,10 @@ "\n", "Here are some suggestions for what to do next:\n", "\n", - "* Import a graph from pandas dataframes: [API reference](./api-reference/from_pandas.rst) and [notebook example](./tutorials/snowpark-nvl-example.nblink)\n", - "* Import a graph from Neo4j Graph Data Science: [API reference](./api-reference/from_gds.rst) and [notebook example](./tutorials/gds-nvl-example.nblink)\n", - "* Customize the appearance of the nodes and relationships: [Node API reference](./api-reference/node.rst) and [Relationship API reference](./api-reference/relationship.rst)\n", - "* Check out the rendering options and convenience methods of `VisualizationGraph`: [VisualizationGraph API reference](./api-reference/visualization-graph.rst)\n", - "* Browse the [tutorials](./tutorials/index.rst) for more examples and use cases\n" + "* Browse the [notebook examples](./tutorials/index.rst) for more examples and use cases\n", + "* Learn about the [integrations](./integration.rst) with other libraries such as Neo4j GDS and Pandas \n", + "* Check out the [rendering](./rendering.rst) options and convenience methods of `VisualizationGraph`\n", + "* Read about our [API reference](./api-reference/index.rst)\n" ] } ], diff --git a/docs/source/index.rst b/docs/source/index.rst index 9a091c18..525e10be 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -11,8 +11,11 @@ The library allows you to visualize graph data interactively in Python using a s The library wraps the `Neo4j Visualization JavaScript library (NVL) `_, and provides additional features for working with graph data in Python. -Notably, there are convenience methods for importing data from `Pandas DataFrames `_ and -`Neo4j Graph Data Science `_. +Notably, there are convenience methods for importing data from `Pandas DataFrames `_, +`Neo4j Graph Data Science `_ and `Neo4j Database `. + +The source code is available on https://github.com/neo4j/python-graph-visualization[GitHub]. +If you have a suggestion on how we can improve the library or want to report a problem, you can create a https://github.com/neo4j/python-graph-visualization/issues/new[new issue]. .. toctree:: diff --git a/python-wrapper/pyproject.toml b/python-wrapper/pyproject.toml index e589bd58..c7f57a28 100644 --- a/python-wrapper/pyproject.toml +++ b/python-wrapper/pyproject.toml @@ -72,6 +72,9 @@ notebook = [ [project.urls] Homepage = "https://neo4j.com/" +Repository = "https://github.com/neo4j/python-graph-visualization" +Issues = "https://github.com/neo4j/python-graph-visualization/issues" +Documentation = "https://neo4j.com/docs/nvl-python/preview" [tool.setuptools] include-package-data = true