Skip to main content

A simple graph package

Project description

Introduction

The simple-graph module contains basic functions for graph.

License

simple-graph is a free software. See the file LICENSE for the full text.

Install

pip install simple-graph

or update

pip install --upgrade simple-graph

Usage

Basic operations

from simple_graph import Graph
G = Graph()
G.add_edge(1, 2)
print(G.has_edge(1, 2))

ouput:

True
G = Graph({0: [1, 2], 1: [2]})
print(G.neighbors(0))

output:

[1, 2]

Statistics

G = Graph({ 
    "a" : ["c"],
    "b" : ["c","e","f"],
    "c" : ["a","b","d","e"],
    "d" : ["c"],
    "e" : ["b","c","f"],
    "f" : ["b","e"]
})

print(graph.find_path('a', 'b'))
print(graph.diameter())

output:

['a', 'c', 'b']
3

Authors

qrcode_for_wechat_official_account

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simple_graph-0.0.3.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

simple_graph-0.0.3-py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page