Latest version
Released:
Generating flowchart for PyPPL
Project description
Flowchart generator for PyPPL.
Installation
Usage
2) Flowchart generator We are going to render the flowchart using graphviz. Graphviz can be easily intertated into Python to serve as flowchart generator. After the components are identified, those components can be transmitted into Graphviz and recomposed into new chart. 3) Algorithm evaluation (bonus work). Python does not have such a code-to-flowchart converter. As answered by Jason, one possible way to convert a Python code into a flowchart may be to: Convert the Python code into a C code. Apply doxygen to create UML class diagrams from C source.
Generating flowchart for your pipeline
Hiding some processes from flowchart
Theming
In your configuration:
We have two builtin themes: default
and dark
:
You can also default your own theme in the configuration:
Release historyRelease notifications | RSS feed
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.3
0.0.2.post2
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size pyppl_flowchart-0.1.5-py3-none-any.whl (5.5 kB) | File type Wheel | Python version py3 | Upload date | Hashes |
Filename, size pyppl_flowchart-0.1.5.tar.gz (5.2 kB) | File type Source | Python version None | Upload date | Hashes |
Hashes for pyppl_flowchart-0.1.5-py3-none-any.whl
Algorithm | Hash digest |
---|---|
SHA256 | a5a68287f79c44d9342772b54f1eece065acc706eae672fb0c3344b995288bce |
MD5 | e81ad391e1b7327a8e76482bbf118362 |
BLAKE2-256 | 7bd1f3fb2e3468cbb153394d1e1f00d1886573ada5b50070f39581fac199b3d8 |
Hashes for pyppl_flowchart-0.1.5.tar.gz
Algorithm | Hash digest |
---|---|
SHA256 | 41447a9f28f2b1e6f9ca29e68eb334bbf3de720595b6a153d384fff9da2b1c26 |
MD5 | d672385d35953d9589f66e21fdb1c881 |
BLAKE2-256 | b7c82d01e336ccc0251fcb16244986b858451150fcf262c5467401452b2f04cf |
Flowchart Generator Python
simple API? I have a set of business rules that can be represented by aflowchart. These rules are stored in a database, and I need to display
them for the end user. It is not a fixed set of rules, the users are
going to change them frequently. I already have a rather difficult GUI
where nodes and links are listed and they can be configured. But the
users want to see this as a visual flowchart too. It would be the best
to have it automatically arranged; or at least open it an editor so they
can move the nodes and see how they are connected.
Is there such thing for Python?
Thanks,
Laszlo