Metadata-Version: 1.0
Name: tastypie-msgpack
Version: 0.0.1
Summary: MsgPack support for Django Tastypie.
Home-page: https://github.com/stephenmcd/tastypie-msgpack
Author: Stephen McDonald
Author-email: stephen.mc@gmail.com
License: BSD
Description: ================
        tastypie-msgpack
        ================
        
        Created by `Stephen McDonald <http://twitter.com/stephen_mcd>`_
        
        Adds `MsgPack <http://msgpack.org/>`_ support to
        `Django Tastypie <http://tastypieapi.org/>`_.
        
        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!
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
