Metadata-Version: 2.1
Name: drfauto
Version: 1.5
Summary: Package for auto creating serializers, filters and views for Django models
Home-page: https://github.com/PasNA6713/drf-auto
Author: PasNA6713
Author-email: diementros@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Dist: django
Requires-Dist: djangorestframework
Requires-Dist: django-filter

# Django Rest Framework auto creator
### Creates serializers, filters and generics for created model

Installation: `pip install drfauto`

Include `drfauto` into Django `Installed apps` and use 
`python manage.py makeserializer | makefilter | makeviews` for your `-m model_name` or `-a app_name` or `-A` all project. This commands generate serializers.py, filters.py and views.py in your apps directories and create suitable classes.
Also u can import `drfauto.dynamic` for creating class as python object in your code. This classes can be used as abstract for inheritance or ready functional classes.

