gak / pycallgraph

pycallgraph is a Python module that creates call graphs for Python programs.
GNU General Public License v2.0
1.82k stars 335 forks source link

get .dot file as output #185

Open namndh opened 6 years ago

namndh commented 6 years ago

I have followed the instructions from this link and got a very nice image that shows the flow of my code as expected but I would like to get .dot file for further purpose. I have tried to change graphviz.output_file = 'flow.png' to graphviz.output_file = 'data_frame.dot' and tried to run the command line pycallgraph graphviz -l dot -- mycode.py but I do not have the .dot file as output file. How can I solve this problem?

kylefoley76 commented 5 years ago

How did you get this to work. I've gotten the program to run to the end without an error but I cannot find where the output is located.