RESTful Image Management API
Add "imagemanagement" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'imagemanagement', ]
Include the imagemanagement URLconf in your project urls.py like this:
url(r'^image/',include('imagemanagement.urls')),
Run python manage.py migrate to create all the models.
Start the development server and visit http://127.0.0.1:8000/admin/ to create an access key (you'll need the Admin app enabled).
Visit http://127.0.0.1:8000/image/ to use the API.
Supported HTTP Methods : GET, POST, PATCH, DELETE