Metadata-Version: 2.4
Name: django_maker
Version: 2.0.0
Summary: A Python package for managing framework django
Description-Content-Type: text/markdown
Requires-Dist: Django>=3.0
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: summary

'''This package provides tools for create app, models, serializer and CRUD.

    To use this package, you must first install it using pip:

    ```bash
    pip install django_maker
    ```

    ## Usage

     # to create app 
     
        python manage.py createapp and follow the steps
        
     # to create models 
     
        python manage.py create_models and follow the steps
        
     # to create serializer 
     
        python manage.py create_serializer and follow the steps
        
     # to create create simple CRUD 
     
        python manage.py create_simple_CRUD 
                    
    ```

    ...

    '''
