Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agentender/endergraph
Simple graphing module for python
https://github.com/agentender/endergraph
Last synced: about 1 month ago
JSON representation
Simple graphing module for python
- Host: GitHub
- URL: https://github.com/agentender/endergraph
- Owner: AgentEnder
- License: mit
- Created: 2018-03-04T22:20:09.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-30T01:16:23.000Z (almost 7 years ago)
- Last Synced: 2024-10-11T17:13:32.075Z (3 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EnderGraph
## What is it?
EnderGraph is a graph theory library for python. It is in no way comprehensive, namely it currently lacks algorithmic analysis of graphs. It contains methods to create a graph, add nodes and edges, remove edges, set edge weights, make a graph complete, and display graphs.
## How does it work?
EnderGraph has 2 dependencies, but they are both included in the base python distribution. The turtle library, and the math library. Both dependencies are only used in the display method, so if that is not needed they can be removed.
The only object contained in EnderGraph.py is the Graph class. It contains all current methods.