Metadata-Version: 2.1
Name: django-dbml
Version: 0.6.0
Summary: Django extension aimed to generate DBML from all models
Home-page: https://github.com/makecodesdev/django-dbml
Author: Michel Wilhelm
Author-email: michelwilhelm@gmail.com
License: MIT
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE

# Django DBML generator

This app can generate a DBML output for all installed models.

## How to install and use?

#### 1. Install the django-dbml package

```
pip install django-dbml
```

#### 2. Put django_dbml on your django settings

```python
'...',
'django_dbml',
'...',
```

#### 3. Run the command to generate a DBML schema based on your Django models

```bash
$ python manage.py dbml
```

To generate DBML for a subset of your models, specify one or more Django app 
names or models by app_label or app_label.ModelName. Related tables will still 
be included in the DBML.

# Thanks

The initial code was based on https://github.com/hamedsj/DbmlForDjango project
