top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Is there a library for Python that can easily create flowcharts using a simple API?

0 votes
456 views

We have few rules (changeable) are stored in a database, and I need to display them for the end user in the form of flow-chart.

Is there such thing for Python?

posted Jun 17, 2014 by Sumit Pokharna

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

+1 vote

Try http://pygraphviz.github.io/ - this one seems to have better documentation then pydot. pydot may be functional but I could not find documentation on it.

answer Jun 18, 2014 by Daler
0 votes

You can try diagram application Dia comes with a Python API:

https://wiki.gnome.org/Apps/Dia/Python

answer Jun 18, 2014 by Sonu Jindal
Similar Questions
0 votes

I can create a list that has repeated elements of another list as follows:

xx = ["a","b"]
nrep = 3
print xx
yy = []
for aa in xx:
 for i in range(nrep):
 yy.append(aa)
print yy

output:

['a', 'b']
['a', 'a', 'a', 'b', 'b', 'b']

Is there a one-liner to create a list with repeated elements?

+2 votes

Also is there a way to detect if the user presses a key in Python that works on most OS's? I've only seen 1 method and that only works in Python 2.6 and less. If you get the key, can you store it in a variable?

+1 vote

i want to create a chrome extension. its have complex mathematical queries. so i need to use python as scripting language. help me to implement python script in google chrome addon

+2 votes

I am looking for a python library that does mailing directly through "sendmail".

When I look into the docs, I see only an "smtlip" library but nothing that could serve with sendmail or postfix.

...