Skip to main content

This package provides a simple graph implementation for Python.

Project description

Graph

This package provides a simple graph implementation for Python.



1. Installation

1.1. Using pip

Simply run the usual installation command for pip:

pip install jlvandenhout-graph

1.2. From source

To install from the latest source code, clone this repository and install from the repository:

git clone https://gitlab.com/jlvandenhout/graph.git
cd graph
pip install .

2. Basic usage

from jlvandenhout.graph import Graph

graph = Graph()

names = graph.nodes
transactions = graph.edges

names.add("Alice")
transactions.set("Bob", "Alice", 42)
transactions.set("Alice", "Charlie", 20)

print("\nListing transactions...")
for transaction in transactions:
    sender, receiver = transaction
    print(f"{sender} paid {transaction.get()} to {receiver}.")

print("\nChecking balances...")
for name in names:
    balance = 0
    for transaction in transactions.before(name):
        balance += transaction.get()
    for transaction in transactions.after(name):
        balance -= transaction.get()
    print(f"{name} has {balance}.")

print("\nRemoving Charlie from history...")
names.remove("Charlie")

print("\nListing transactions again...")
for transaction in transactions:
    sender, receiver = transaction
    print(f"{sender} paid {transaction.get()} to {receiver}.")

3. Support

If you have any questions, suggestions or found a bug, please open an issue in the issue tracker.

4. Contributing

Refer to CONTRIBUTING.

5. License

Refer to GNU General Public License v3 (GPLv3).

6. Changelog

Refer to CHANGELOG.

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

jlvandenhout-graph-2.0.0.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

jlvandenhout_graph-2.0.0-py3-none-any.whl (16.6 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