DjangAutomate Documentation =========================== .. toctree:: :maxdepth: 2 :caption: Contents: installation usage contributing djangautomate Overview -------- **DjangAutomate** automates the creation of Django apps, models, serializers, and views directly from SQLAlchemy database tables. It eliminates manual code writing, enforces consistency, and speeds up development for Django projects. Features -------- - **Automatic Model Generation**: Converts SQLAlchemy tables into Django models. - **Serializer & View Generation**: Generates Django REST Framework serializers and views. - **Seamless ORM Transition**: Helps migrate from SQLAlchemy to Django ORM. - **Configurable & Extensible**: Customize generators to fit your project. Installation ------------ Install DjangAutomate using pip: .. code-block:: bash pip install djangautomate Or using Poetry: .. code-block:: bash poetry add djangautomate Note: The main documentation is in the `DjangAutomate` section.