Reputation: 57
I've been struggling for quite some time to find a static dataflow graph generator for Python.
This is my ideal:
Given a small python script example.py
, (written in Python3), return some representation of the data flow graph.
I was able to achieve this result using IBM's pyflowgraph, https://github.com/IBM/pyflowgraph which outputs data in graph.ml
format, unfortunately this package only performs dynamic analysis.
I'm wondering if anyone knows of a DFG tool that could do this type of static dataflow analysis for Python?
Upvotes: 2
Views: 2645