A UML Generator for Django and Django Rest Framework projects
Project description
Django UML Generator
Uml-Django is a library that aims to convert project models into a UML diagram, indicating their attributes, methods and the relationships of all entities.
How it Works
From a file created at the root of the project (this is an important step that will be demonstrated below), it will be necessary to create an instance of the Library Class, passing the path to the project's "settings.py" file as a parameter.
With this configuration duly performed and executing the created file, an inspection will be carried out throughout the project in search of all the models of the apps present. Once identified, their attributes, methods, and their relationships with other models, if any, will be saved.
After that, a png file named "class diagram.png" will be created (also in the project root) with a simple class diagram of all classes of the identified models.
Installation and Usage
Before starting the installation, below are important guidelines to ensure the proper functioning of the application.
-
Make sure that python and pip are properly updated, in the current release the library was created with python Python 3.9.6 and Pip 21.2.4. Be with equal or higher versions.
-
Install in the same environment as the project's dependencies, for example with the python virtual environment activated (venv), so that the inspection is effective.
- Start by downloading the "django_uml" dependency via pip
pip3 install uml-django
- Create a .py file at the root of the project (this step is important), below is an example of a simple project and the extension file called "inspect_class.py"
.
├── db.sqlite3
├── django_project/
│  ├── __init__.py
│  ├── asgi.py
│  ├── settings.py
│  ├── urls.py
│  └── wsgi.py
├── manage.py
├── app_01/
├── app_02/
└── app_03/
├── requirements.txt
├── inspect_class.py <---
├── venv
- The project has 3 apps and the "django_project" directory where the configuration file "settings.py" is located. In addition, the file "inspect_class.py" was added to the root of the project
- With the file created, just follow the code below, which consists of instantiating an object and parameterizing the path to the project's "settings.py" file, then just call two functions as shown below.
from uml_django.inspect import Inspect
inspect_obj = Inspect('django_project.settings')
inspect_obj.inspect()
inspect_obj.create_UML()
- Run the file "inspect_class.py"
python3 inspect_class.py
After the guidelines, the png file with the diagram will appear in the root of the project with the name "class_diagram.png", containing all the project models synthesized in a class diagram
Final Considerations
This is an Open-Source project, so you are free to receive suggestions for improvements and enhancements to ensure the quality and viability of the code. This communication will be very effective if applied in Issues and PR's openings so that the maintainers can discuss and implement new ideas and bug fixes.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file uml_django-0.0.1.tar.gz
.
File metadata
- Download URL: uml_django-0.0.1.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c75f54a5f5c587af988fa8c4aa8f7254c1fee571b3cdc8b12de1f96b014b3c1d |
|
MD5 | 68a3844b98eae06a2acdad2fa52aa272 |
|
BLAKE2b-256 | b2b200fa1e5a0b6e73a6bad20f1daaa019f63044ee26592a730a8e5c05fdc1b1 |