Metadata-Version: 2.1
Name: kladia
Version: 0.0.1
Summary: A simple and minimal graph library based on Python dictionaries.
Author-email: Jocer Franquiz <author@example.com>
Project-URL: Homepage, https://github.com/jocerfranquiz/kladia
Project-URL: Bug Tracker, https://github.com/jocerfranquiz/kladia/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# Kladia 🌿

[![Python](https://img.shields.io/badge/python-v3.10%2B-blue)](https://www.python.org/)

### A simple and minimal graph library based on Python dictionaries

**Kladia** is a library that provides a simple and easy way to work with graphs data structures in Python, by representing them as dictionaries. 
**Kladia graphs** are simple enough to be used and adapted to any other libraries and frameworks, including Pandas, Numpy, Scikit-learn, etc.

## Installation

```bash
pip install kladia
```

## How it works?

Using **ONLY Python dictionaries** we can easily construct a simple **two node directed graph** in 4 steps:

1. Create a graph ``{'graph': None}``
2. Add a node ``{'graph': {0: None}}``
3. Add another node ``{'graph': {0: None, 1: None}}``
4. Add a link from node 0 to node 1 ``{'graph': {0: {1: None}, 1: None}}``

Then, we can replace the ``None`` values with desired properties or data. For example, we can add a node with a
property ``{'graph': {0: {'color': 'red'}}}`` or a link with a property ``{'graph': {0: {1: {'weight': 1.0}}}}``.

*Kladia* helps you to create and manipulate these graphs in a simple way.

```
from kladia.graph import graph

g = graph()  # create an empty graph
g.add(0, {'color': 'red'})  # add a node with a property
g.add(1, {'color': 'blue'})  # add another node with a property
g.add((0, 1), {'weight': 1.0})  # add a looping link with a property

print(g.to_dict())
```

Which will print (without the comments):

```
{
    'graph': {
        0: {                    # node 0
            'color': 'red',     # node 0 property
            1: {'weight': 1.0}  # link to node 1
        }, 
        1: {                    # node 1
            'color': 'blue'     # node 1 property
        }
    }
}
```
Just remember, ``color`` and ``weight`` are just examples of properties and are
NOT implemented in ``kladia.graph``. But, this is a very simple, minimal and flexible library, 
so you can adapt it to your needs. More examples can be found in the 
[examples](https://github.com/jocerfranquiz/kladia/tree/main/examples) folder.

## Why everything is a dictionary?

For convenience, the Graph class only manage dictionaries for graphs, nodes and links. 
By design **Properties has no restrictions whatsoever**.

Using dictionaries and integer labels, we can traverse the graph faster than using an object-oriented approach. 
You can work only with the structure of the graph, without worrying about the properties for faster operations. 
For example, this is a **directed binary tree** of 3 levels:

```
{
    'graph': {
        0: {1: None, 2: None},      # Node 0 is linked to nodes 1 and 2
        1: {3: None, 4: None},      # Node 1 is linked to nodes 3 and 4
        2: {5: None, 6: None},      # Node 2 is linked to nodes 5 and 6
        3: None,                    # Node 3 is a leaf
        4: None,                    # Node 4 is a leaf
        5: None,                    # Node 5 is a leaf
        6: None                     # Node 6 is a leaf
    }
}
```

Feel free to review the notes in [NOTES.rst](https://github.com/jocerfranquiz/kladia/blob/main/docs/NOTES.rst) 
for more information about the graph structure.

## Other features:
*Kladia* graphs are:
- Up to order 2 nested Python dictionaries (dicts, of dicts, of dicts)
- Graphs, nodes and links can have custom **properties** dictionary to store any kind of data, such as weights, labels, etc.
- Represented as a dictionary of nodes (vertices), where each node is a dictionary of links (edges), commonly known as [adjacency list](https://en.wikipedia.org/wiki/Adjacency_list)
- **Directed Graphs or DiGraphs** by default. To create **Bidirected graphs**, 
just add the same link in both directions.
- **Weighted graphs** can be represented by adding a property to the link, like ``{'weight': 1.0}``
- **MultiGraphs** can be represented by adding a property to the link, like ``{type: 'B', name: 'user1'}``
- **Undirected graphs** can be represented by adding the same link in both directions or by adding a property to the link, like ``{'undirected': True}``

For example, here is an **Undirected Graph** with 3 nodes:
    
```
{
    'graph': {
        0: {1: {'undirected': True}}, # Node 0 is undirectedly linked to node 1
        1: {2: {'undirected': True}}, # Node 1 is undirectedly linked to node 2
        2: {0: {'undirected': False}}, # Node 2 is directedly linked to node 0
        'graph_type': 'undirected'     # This flag helps to traverse the graph looking for the "undirected" property on each link
    }
}
```

Please, take this example as a **suggestion**. ``graph_type`` and ``undirected`` are not implemented as special 
keys in ``kladia.graph``. But, this is a very simple, minimal and flexible library, so you can adapt it to your needs.

## Why the name Kladia?

**Kladia**  🌿 is the latinization of the greek word **κλαδιά**, that means *branch* or *twig*. It is also the name of a genus of plants that includes
the *olive tree*.

## TODOs

- [x] Implement ``to_matrix`` method to convert a graph to an adjacency matrix
- [x] Implement ``from_matrix`` method to convert an adjacency matrix to a kladia graph
- [x] Implement operations on graphs: union, intersection
- [ ] Implement search algorithms, e.g. BFS, DFS, etc.
- [ ] Implement the shortest path algorithm (Dijkstra's algorithm)
- [ ] Implement minimum spanning tree (MST) algorithm (Kruskal's algorithm)
- [ ] Implement maximum flow problem (Ford-Fulkerson algorithm)
- [ ] Implement minimum cut set (min cut) problem (Karger's algorithm)
- [ ] Implement bipartite matching  (https://en.wikipedia.org/wiki/Bipartite_graph)
- [ ] Implement strongly connected components (SCC) (https://en.wikipedia.org/wiki/Strongly_connected_component)
- [ ] Implement topological sort (DAG) (https://en.wikipedia.org/wiki/Topological_sorting)
- [ ] Implement transitive closure (Warshall's algorithm)
- [x] Create unit tests for all methods and functions using pytest (https://docs.pytest.org/en/latest/)
- [ ] Generate documentation using Sphinx (https://www.sphinx-doc.org/en/master/)
- [x] Create an examples file
- [ ] Implement visualization using GraphViz (https://graphviz.readthedocs.io/en/stable/)
- [ ] Implement a web interface using Flask (https://flask.palletsprojects.com/en/1.1.x/)
