This is probably a moon shot, but I'm looking to get started with my first Python project and I'm looking for advice.
The goal is to write some code that would be able to create the following graph. The issue is that I would need the code to be dynamic in that it could read source data (Parent/Child relations).
The output would look something like this Organizational Chart.
I've started looking into networkx MultiDiGraph, but there's a lot to learn.
EDIT Would this count as a loop with regards to MultiDiGraph, or would it be just a node to node loop? (direct vs indirect loop) Organizational Chart Indirect Loop
Any help would be greatly appreciated.