KrzyHonk / bpmn-python

Project for creating a Python library that allows to import/export BPMN diagram (as an XML file) and provides a simple visualization capabilities
GNU General Public License v3.0
66 stars 47 forks source link

Create basic inner structure for diagram #2

Closed KrzyHonk closed 8 years ago

KrzyHonk commented 8 years ago

For now, just create simple graph and load basic information about diagram elements into it. At this point it is important to import basic structure (flows between elements).

KrzyHonk commented 8 years ago

NetworkX is based on the idea that graphs can act like dictionaries. We can avoid creating specific classes for each BPMN element, but we have to keep this structure organized and well-documented. Also, we wouldn't be able to use some useful OO techniques.

KrzyHonk commented 8 years ago

Done