Skip to content

tomi77/django-tastypie-extras

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Tastypie extras

Code Climate

A set of Django Tastypie extras.

Table of contents

Resources

MultipartResourceMixin

Resource with upload image possibility

ReadOnlyResourceMixin

Raise BadRequest on update, create or delete request.

Paginator

SmartPaginator

SmartPaginator does not perform SELECT COUNT(*) when

  • limit is 0 and offset is 0
  • limit is greater than 0 and offset is 0 and length of self.objects is lower than limit

Authentication

SwaggerApiKeyAuthentication

SwaggerUI provides request authentication only through api_key parameter. SwaggerApiKeyAuthentication reads username and api_key from api_key request parameter.