Metadata-Version: 2.1
Name: django-msgpackfield
Version: 0.15
Summary: UNKNOWN
Home-page: https://github.com/vakorol/django-msgpackfield
Author: Vasili Korol
Author-email: vakorol2000@gmail.com
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.
        
        Requirements
        ------------
        
        * Python 3.4+
        * Django 1.8+ (tested with 1.8-3.0)
        * [msgpack-python](https://github.com/msgpack/msgpack-python)
        
        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 :: 2.0
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
Description-Content-Type: text/markdown
