{"id":26483545,"url":"https://github.com/faucetsdn/python3-networkx","last_synced_at":"2025-06-16T12:33:21.343Z","repository":{"id":30458001,"uuid":"124987445","full_name":"faucetsdn/python3-networkx","owner":"faucetsdn","description":null,"archived":false,"fork":false,"pushed_at":"2021-12-01T03:32:40.000Z","size":2154,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-20T04:55:50.178Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/faucetsdn.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-03-13T03:34:00.000Z","updated_at":"2021-12-01T03:31:50.000Z","dependencies_parsed_at":"2022-08-07T15:15:50.549Z","dependency_job_id":null,"html_url":"https://github.com/faucetsdn/python3-networkx","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/faucetsdn/python3-networkx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faucetsdn%2Fpython3-networkx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faucetsdn%2Fpython3-networkx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faucetsdn%2Fpython3-networkx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faucetsdn%2Fpython3-networkx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/faucetsdn","download_url":"https://codeload.github.com/faucetsdn/python3-networkx/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faucetsdn%2Fpython3-networkx/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260162589,"owners_count":22968080,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-20T04:55:54.104Z","updated_at":"2025-06-16T12:33:21.307Z","avatar_url":"https://github.com/faucetsdn.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"NetworkX\n========\n\n.. image:: https://img.shields.io/pypi/v/networkx.svg\n   :target: https://pypi.org/project/networkx/\n\n.. image:: https://img.shields.io/pypi/pyversions/networkx.svg\n   :target: https://pypi.org/project/networkx/\n\n.. image:: https://travis-ci.org/networkx/networkx.svg?branch=master\n   :target: https://travis-ci.org/networkx/networkx\n\n.. image:: https://ci.appveyor.com/api/projects/status/github/networkx/networkx?branch=master\u0026svg=true\n   :target: https://ci.appveyor.com/project/dschult/networkx-pqott\n\n.. image:: https://codecov.io/gh/networkx/networkx/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/networkx/networkx\n\nNetworkX is a Python package for the creation, manipulation,\nand study of the structure, dynamics, and functions\nof complex networks.\n\n- **Website (including documentation):** https://networkx.github.io\n- **Mailing list:** https://groups.google.com/forum/#!forum/networkx-discuss\n- **Source:** https://github.com/networkx/networkx\n- **Bug reports:** https://github.com/networkx/networkx/issues\n\nSimple example\n--------------\n\nFind the shortest path between two nodes in an undirected graph:\n\n.. code:: python\n\n    \u003e\u003e\u003e import networkx as nx\n    \u003e\u003e\u003e G = nx.Graph()\n    \u003e\u003e\u003e G.add_edge('A', 'B', weight=4)\n    \u003e\u003e\u003e G.add_edge('B', 'D', weight=2)\n    \u003e\u003e\u003e G.add_edge('A', 'C', weight=3)\n    \u003e\u003e\u003e G.add_edge('C', 'D', weight=4)\n    \u003e\u003e\u003e nx.shortest_path(G, 'A', 'D', weight='weight')\n    ['A', 'B', 'D']\n\nInstall\n-------\n\nInstall the latest version of NetworkX::\n\n    $ pip install networkx\n\nInstall with all optional dependencies::\n\n    $ pip install networkx[all]\n\nFor additional details, please see `INSTALL.rst`.\n\nBugs\n----\n\nPlease report any bugs that you find `here \u003chttps://github.com/networkx/networkx/issues\u003e`_.\nOr, even better, fork the repository on `GitHub \u003chttps://github.com/networkx/networkx\u003e`_\nand create a pull request (PR). We welcome all changes, big or small, and we\nwill help you make the PR if you are new to `git` (just ask on the issue and/or\nsee `CONTRIBUTING.rst`).\n\nLicense\n-------\n\nReleased under the 3-Clause BSD license (see `LICENSE.txt`)::\n\n   Copyright (C) 2004-2020 NetworkX Developers\n   Aric Hagberg \u003chagberg@lanl.gov\u003e\n   Dan Schult \u003cdschult@colgate.edu\u003e\n   Pieter Swart \u003cswart@lanl.gov\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaucetsdn%2Fpython3-networkx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffaucetsdn%2Fpython3-networkx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaucetsdn%2Fpython3-networkx/lists"}