Skip to content

stephenmcd/tastypie-msgpack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tastypie-msgpack

Created by Stephen McDonald

Adds MsgPack support to Django Tastypie.

Installation

$ pip install -U tastypie-msgpack

Usage

Given a tastypie resource, simply define tastypie_msgpack.Serializer as the serializer for the resource:

from tastypie.resources import ModelResource
from tastypie_msgpack import Serializer
from myapp.models import MyModel

class MyResource(ModelResource):
    class Meta:
        resource_name = "thing"
        queryset = MyModel.objects.all()
        serializer = Serializer()

You can now append the format=msgpack arg to your API URLs!

About

MsgPack support for Django Tastypie.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages