Skip to content

DjangoWiz is a toolkit for automating key components of Django projects, helping you save time and streamline development.

License

Notifications You must be signed in to change notification settings

tavallaie/DjangoWiz

Repository files navigation

⚠️ Caution: This library is under heavy development and is not ready for production.

DjangoWiz

DjangoWiz is a simple and powerful toolkit to automate the generation of serializers, viewsets, URLs, and Docker configurations for your Django projects. This toolkit helps you quickly scaffold out necessary files based on your models, saving you time and effort.

Features

  • Automatically generates serializers, viewsets, and URLs based on your Django models.
  • Supports generation of Dockerfile and Docker Compose configurations for development and production environments.
  • Skips non-serializable classes and abstract models.
  • Includes customizable templates using Jinja2.
  • Provides flexible commands to generate different components individually or all together.
  • Supports custom templates and single file mode.
  • Can be used in other Python scripts.

Installation

  1. Install via pip:

    pip install DjangoWiz
  2. Alternatively, clone the repository:

    git clone https://github.com/tavallie/DjangoWiz.git
    cd DjangoWiz
  3. Install dependencies: Ensure you have Python and Poetry installed, then run:

    poetry install

Usage

Generate All Files

Generate serializers, viewsets, routes, URLs, Dockerfile, and Docker Compose configurations:

djangowiz generate_files <your_app> <your_project> <path/to/models.py> --overwrite

Generate Core Files Only

Generate serializers, viewsets, and routes without Docker-related files:

djangowiz generate_core_files <your_app> <your_project> <path/to/models.py> --overwrite

Generate Individual Components

Generate Serializers

djangowiz generate_serializers <your_app> <your_project> <path/to/models.py> --overwrite

Generate Viewsets

djangowiz generate_viewsets <your_app> <your_project> <path/to/models.py> --overwrite

Generate URLs

djangowiz generate_urls <your_app> <your_project> <path/to/models.py> --overwrite

Generate Routes

djangowiz generate_routes <your_app> <your_project> <path/to/models.py> --overwrite

Using Custom Templates

You can specify a custom template directory with the --template-dir option. If a custom template is not provided, the default templates will be used.

djangowiz generate_files <your_app> <your_project> <path/to/models.py> --overwrite --template-dir path/to/custom_templates

Using Single File Mode

You can generate all serializers and viewsets in a single file using the --single-file option.

djangowiz generate_files <your_app> <your_project> <path/to/models.py> --overwrite --single-file

Using as a Python Library

You can use DjangoWiz in your own Python scripts:

from djangowiz.core import ModelExtractor, ProjectGenerator

model_file = 'path/to/models.py'
model_names = ModelExtractor.extract_model_names(model_file)
generator = ProjectGenerator('your_app', 'your_project', model_names, template_dir='path/to/custom_templates')
generator.generate_all(single_file=True, overwrite=True)

Directory Structure

Ensure your project directory is structured as follows:

DjangoWiz/
├── djangowiz/
│   ├── __init__.py
│   ├── core.py
│   ├── cli.py
│   ├── templates/
│       ├── docker-compose.dev.yml.j2
│       ├── docker-compose.prod.yml.j2
│       ├── Dockerfile.j2
│       ├── env.dev.j2
│       ├── env.prod.j2
│       ├── serializer.py.j2
│       ├── viewset.py.j2
│       ├── urls.py.j2
│       ├── routes.py.j2
├── pyproject.toml
├── README.md
├── LICENSE

Customizing Templates

The templates used for generating files are located in the djangowiz/templates directory. You can customize these templates to fit your project's specific requirements. The templates use Jinja2 for rendering.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Contributing

Contributions are welcome! Please open an issue or submit a pull request if you have any suggestions or improvements.

Author

Ali Tavallaie - [email protected]


Happy coding!

About

DjangoWiz is a toolkit for automating key components of Django projects, helping you save time and streamline development.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published