django-rest-framework-msgpack
django-rest-framework-msgpack copied to clipboard
MessagePack support for Django REST framework
I upgrade Django to version 3 and this library creates the following error: ``` ImportError: Could not import 'rest_framework_msgpack.parsers.MessagePackParser' for API setting 'DEFAULT_PARSER_CLASSES'. ModuleNotFoundError: No module named 'django.utils.six'. ``` Having...
This changes brings the requirements to currently maintained versions of each software: * Python 2.7, 3.5~3.7 * Django 1.11, 2.1, 2.2 * DRF 3.8, 3.9 * `msgpack-python` to `msgpack` (same...
The PyPI package name msgpack-python is deprecated, see: https://github.com/msgpack/msgpack-python#pypi-package-name
links did not work
Fix links to DRF docs
This project encodes Decimal like this: ``` python elif isinstance(obj, decimal.Decimal): return {'__class__': 'decimal', 'as_str': str(obj)} ``` While DRF json renderer encodes Decimal like this: ``` python elif isinstance(obj, decimal.Decimal):...