Skip to main content

How to generate class diagrams pictures in a Django/Open-edX project from console

A class diagram in the Unified Modeling Language (UML) is a type of static structure diagram that describes the structure of a system by showing the system’s classes, their attributes, operations (or methods), and the relationships among objects.

https://github.com/django-extensions/django-extensions
Step 1:  Install django extensions

Command: pip install django-extensions

Step 2: Add to installed apps


INSTALLED_APPS = (
    ...
    'django_extensions',
    ...
)

Step 3: Install diagrams generators
You have to choose between two diagram generators:
  • Graphviz or
  • Dotplus
before using the command or you will get:

python manage.py graph_models -a -o myapp_models.png

Note: I prefer to use pydotplus as it easier to install than Graphviz and its dependencies so we use pip install pydotplus.

Command:  pip install pydotplus

Step 4: Generate diagrams
Now we have everything installed and ready to generate diagrams using the command python manage.py graph_models



Command  :: 
python manage.py graph_models -a -o myapp_models.png




This will give use the entire Wagtail class diagram:

Thank for visiting :)




Popular posts from this blog

How to read or extract text data from passport using python utility.

Hi ,  Lets get start with some utility which can be really helpful in extracting the text data from passport documents which can be images, pdf.  So instead of jumping to code directly lets understand the MRZ, & how it works basically. MRZ Parser :                 A machine-readable passport (MRP) is a machine-readable travel document (MRTD) with the data on the identity page encoded in optical character recognition format Most travel passports worldwide are MRPs.  It can have 2 lines or 3 lines of machine-readable data. This method allows to process MRZ written in accordance with ICAO Document 9303 (endorsed by the International Organization for Standardization and the International Electrotechnical Commission as ISO/IEC 7501-1)). Some applications will need to be able to scan such data of someway, so one of the easiest methods is to recognize it from an image file. I 'll show you how to retrieve the MRZ infor...

Open edX installation and configuration

1  Introduction According to the [homepage],  “The Open edX platform is a free--and open source--course management system (CMS) that was originally developed by edX. The Open edX platform is used all over the world to host Massive Open Online Courses (MOOCs) as well as smaller classes and training modules.” The following content will apply to a May 2018 Ginko 2-4 installation on Ubuntu 16LTS. The Eucalyptus (2017) was described  here . See also: Open edX 2  Installation of the Bitnami stack There are  many different ways to install and run an edX server . As of March 31 2017, we managed to install a Bitnami stack as described below.  As of May 2018  some contents below are outdated. Use with care. We got it from here: https://bitnami.com/stack/edx Log onto your server machine and use something like: wget https://bitnami.com/redirect/to/193216/bitnami-edx-ginkgo.2-4-linux-x64-installer.run We also suggest to read the official...