tags:

views:

89

answers:

2

hi, please let me know how to create a uml diagram along with its equivalent documentation for the source code(.py format) using enterprise architecture 7.5 please help me find the solution, i have read the solution for the question on this website related to my topic but in vain

A: 

I don't know about any direct solution, but some existing tools might help you in the process. The Eric Python IDE supports generating class diagrams from Python code, for example.

fviktor
A: 
  1. File / New Project / enter your project name.
  2. In the Project Browser, create a package named "source"
  3. Right-click the source package, "Code Engineering", "Import Source Directory".
  4. Pick the directory containing your module(s) as the "Root Directory"
  5. Set "Source Type" to Python
  6. Enable "Recursively Process Subdirectories"
  7. Select "Package Per File"
  8. Click "OK".
Peter