Metadata-Version: 1.1
Name: django-msgpackfield
Version: 0.14
Summary: UNKNOWN
Home-page: https://github.com/vakorol/django-msgpackfield
Author: Vasili Korol
Author-email: vakorol@mail.ru
License: MIT License
Description: django-msgpackfield
        ===================
        
        Provides a binary django model field with automatic serialization/deserialization
        of native Python structures into/from [MsgPack](http://msgpack.org) format.
        
        It also comes with a form widget, basically a `<TEXTAREA>` where data can be
        input in JSON. This data is then converted to MsgPack when the form is submitted.
        
        Installation
        ------------
        
        Install it with pip (or easy_install) :
        
            pip3 install django-msgpackfield
        
        Usage
        -----
        
        Typical usage in a Django model:
        ```python
        from django.db import models
        from msgpackfield import MsgPackField
        
        class MyModel ( models.Model ) :
            data = MsgPackField( null=True, blank=True )
        
        obj = MyModel()
        obj.data = { 'foo': 1, 'bar': 2, 'baz': [ 1, 2, 3, 4, 5 ] }
        obj.save()
        ```
        
        
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 4 - Beta
