All Projects → juanriaza → Django Rest Framework Msgpack

juanriaza / Django Rest Framework Msgpack

Licence: other
MessagePack support for Django REST framework

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Django Rest Framework Msgpack

Django Crm
A Simple Django CRM (Customer Relationship Management) RESTful API Project
Stars: ✭ 63 (-19.23%)
Mutual labels:  django, django-rest-framework
Codingwithmitchblog Rest Api
A continuation of the CodingWithMitchBlog course. Adding a REST API using Django REST-framework
Stars: ✭ 78 (+0%)
Mutual labels:  django, django-rest-framework
Best Of Web Python
🏆 A ranked list of awesome python libraries for web development. Updated weekly.
Stars: ✭ 1,118 (+1333.33%)
Mutual labels:  django, django-rest-framework
Django Rest Framework Tricks
Collection of various tricks for Django REST framework.
Stars: ✭ 52 (-33.33%)
Mutual labels:  django, django-rest-framework
Awesome Django
Repository mirror of GitLab: https://gitlab.com/rosarior/awesome-django This repository is not monitored for issues, use original at GitLab.
Stars: ✭ 8,527 (+10832.05%)
Mutual labels:  django, django-rest-framework
Drf Nested Routers
Nested Routers for Django Rest Framework
Stars: ✭ 1,098 (+1307.69%)
Mutual labels:  django, django-rest-framework
Django Vue Template
Django Rest + Vue JS Template
Stars: ✭ 1,155 (+1380.77%)
Mutual labels:  django, django-rest-framework
Ponee
A lightweight Django template ready for Heroku
Stars: ✭ 41 (-47.44%)
Mutual labels:  django, django-rest-framework
Ara
ARA Records Ansible and makes it easier to understand and troubleshoot.
Stars: ✭ 1,176 (+1407.69%)
Mutual labels:  django, django-rest-framework
Django Rest React Pycon
🐍 Demo repo for Pycon X talk "Decoupling Django with Django REST (and a sprinkle of React)"
Stars: ✭ 72 (-7.69%)
Mutual labels:  django, django-rest-framework
Django Channels React Multiplayer
turn based strategy game using django channels, redux, and react hooks
Stars: ✭ 52 (-33.33%)
Mutual labels:  django, django-rest-framework
Generator Django Rest
Yeoman generator for a Django REST/GraphQL API, an optional React SPA & lots more!
Stars: ✭ 77 (-1.28%)
Mutual labels:  django, django-rest-framework
Drf Recaptcha
Django REST framework reCAPTCHA
Stars: ✭ 47 (-39.74%)
Mutual labels:  django, django-rest-framework
Django React
This a simple Django and React demo application
Stars: ✭ 63 (-19.23%)
Mutual labels:  django, django-rest-framework
Django Rest Pandas
📊📈 Serves up Pandas dataframes via the Django REST Framework for use in client-side (i.e. d3.js) visualizations and offline analysis (e.g. Excel)
Stars: ✭ 1,030 (+1220.51%)
Mutual labels:  django, django-rest-framework
Thinkdiff
My open source project links, programming and software development related code and tutorials are in this repo. Content types: Python, JavaScript, Dart | Django, React, Flutter, React-Native etc.
Stars: ✭ 65 (-16.67%)
Mutual labels:  django, django-rest-framework
Algo Phantoms Backend
💻 Algo-Phantoms-Backend is an Application that provides pathways and quizzes along with a code editor to help you towards your DSA journey.📰🔥 This repository contains the REST APIs of the application.✨
Stars: ✭ 36 (-53.85%)
Mutual labels:  django, django-rest-framework
Server
Django server for Travel Mate (Project: nomad)
Stars: ✭ 36 (-53.85%)
Mutual labels:  django, django-rest-framework
Indrz
Indoor mapping, routing system for orientation and wayfinding or facility management
Stars: ✭ 69 (-11.54%)
Mutual labels:  django, django-rest-framework
The Complete Guide To Drf And Vuejs
📢 Source Code from my Web Dev Course *The Complete Guide To Django REST Framework and Vue JS* (Lang: English & Italian)
Stars: ✭ 78 (+0%)
Mutual labels:  django, django-rest-framework

Django Rest Framework Msgpack

.. image:: https://api.travis-ci.org/juanriaza/django-rest-framework-msgpack.png?branch=master :target: https://travis-ci.org/juanriaza/django-rest-framework-msgpack

:Version: 1.0.2 :Author: Juan Riaza <http://juanriaza.com>_

Overview

MessagePack <http://msgpack.org>_ is a fast, compact binary serialization format, suitable for similar data to JSON. This package provides MessagePack <http://msgpack.org>_ support for Django REST framework <http://django-rest-framework.org>_.

How to install

Install using pip:

.. code-block:: bash

$ pip install djangorestframework-msgpack

...or clone the project from github:

.. code-block:: bash

$ git clone [email protected]:juanriaza/django-rest-framework-msgpack.git
$ cd django-rest-framework-msgpack
$ pip install -r requirements.txt

How use it?

This package provides a renderer MessagePackRenderer and a parser MessagePackParser.

Setting the renderer and the parser

Just follow the documentation:

  • Setting the renderer <http://django-rest-framework.org/api-guide/renderers.html#setting-the-renderers>_.
  • Setting the parser <http://django-rest-framework.org/api-guide/parsers.html#setting-the-parsers>_.

rest_framework_msgpack.renderers.MessagePackRenderer

Renders the request data into MessagePack.

:.media_type: application/msgpack :.format: .msgpack

rest_framework_msgpack.parsers.MessagePackParser

Parses MessagePack request content.

:.media_type: application/msgpack

Running the tests

To run the tests against the current environment::

./manage.py test

Changelog

1.0.2

22th Apr 2017

1.0.1

15th Jan 2012

  • The parser now support streams (by Sébastien Béal - @sebastibe)

1.0.0

6th Jan 2012

  • Initial release
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].