Metadata-Version: 2.1
Name: django-handyhelpers
Version: 0.0.6
Summary: A collection of handy utilities to support django operations
Home-page: https://github.com/davidslusser/django-handyhelpers
Author: David Slusser
Author-email: dbslusser@gmail.com
License: UNKNOWN
Download-URL: https://github.com/davidslusser/django-handyhelpers/archive/0.0.6.tar.gz
Keywords: django,helpers
Platform: UNKNOWN
Requires-Dist: django-extensions
Requires-Dist: django-filter
Requires-Dist: django-filters
Requires-Dist: django-model-utils
Requires-Dist: django-rest-swagger
Requires-Dist: djangorestframework-filters
Requires-Dist: djangorestframework
Requires-Dist: simple-crypt
Requires-Dist: model-mommy

# django-handy-helpers

A collection of handy utilities to support django operations


# How to Install
1. pip install django-handyhelpers
2. add 'djangohelpers' to your INSTALLED_APPS (for management commands)


# Management Commands 

### DRF Generator
Django-handyhelpers includes manage.py commands to generate DRF files (api views, serializers, urls) for a given app in your project.
This is done using jinja templates that define the structure of each file. Default templates are provided, and custom templates 
can be provided in the command. By default, all models and models fields are included.  

Example command:
    ./manage.py generate_drf <my_app> --serializer
    ./manage.py generate_drf <my_app> --serializer --serializer_template <my_custom_template>

** see ./manage.py generate_drf --help for a full list of options



