From 801ea3f2b886a7f1d2669d252297ddb7572e0f57 Mon Sep 17 00:00:00 2001 From: Lee Date: Thu, 8 Oct 2015 15:11:22 +0200 Subject: [PATCH 1/3] Added marshmellow --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5a643f17..cee71014 100644 --- a/README.md +++ b/README.md @@ -513,6 +513,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [sandman](https://github.com/jeffknupp/sandman) - Automated REST APIs for existing database-driven systems. * [restless](http://restless.readthedocs.org/en/latest/) - Framework agnostic REST framework based on lessons learned from Tastypie. * [ripozo](https://github.com/vertical-knowledge/ripozo) - Quickly creating REST/HATEOAS/Hypermedia APIs. + * [marshmellow](http://marshmallow.readthedocs.org/en/latest/) - marshmallow is an ORM/ODM/framework-agnostic library for converting complex datatypes, such as objects, to and from native Python datatypes. ## Authentication From dbd7ad02d43c04efc5a659bc4f7c5674bc3e8b9a Mon Sep 17 00:00:00 2001 From: Lee Date: Fri, 9 Oct 2015 10:28:46 +0200 Subject: [PATCH 2/3] Fixed marshmallow typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cee71014..24e87cd4 100644 --- a/README.md +++ b/README.md @@ -513,7 +513,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [sandman](https://github.com/jeffknupp/sandman) - Automated REST APIs for existing database-driven systems. * [restless](http://restless.readthedocs.org/en/latest/) - Framework agnostic REST framework based on lessons learned from Tastypie. * [ripozo](https://github.com/vertical-knowledge/ripozo) - Quickly creating REST/HATEOAS/Hypermedia APIs. - * [marshmellow](http://marshmallow.readthedocs.org/en/latest/) - marshmallow is an ORM/ODM/framework-agnostic library for converting complex datatypes, such as objects, to and from native Python datatypes. + * [marshmallow](http://marshmallow.readthedocs.org/en/latest/) - marshmallow is an ORM/ODM/framework-agnostic library for converting complex datatypes, such as objects, to and from native Python datatypes. ## Authentication From b4bb1e12c1185a39ffef5f3dde4e7d215e963de5 Mon Sep 17 00:00:00 2001 From: Lee Date: Mon, 19 Oct 2015 10:53:59 +0200 Subject: [PATCH 3/3] Created a new serialization section --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 24e87cd4..21d19444 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by - [CMS](#cms) - [E-commerce](#e-commerce) - [RESTful API](#restful-api) + - [Serialization](#serialization) - [Authentication](#authentication) - [Template Engine](#template-engine) - [Queue](#queue) @@ -513,7 +514,12 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [sandman](https://github.com/jeffknupp/sandman) - Automated REST APIs for existing database-driven systems. * [restless](http://restless.readthedocs.org/en/latest/) - Framework agnostic REST framework based on lessons learned from Tastypie. * [ripozo](https://github.com/vertical-knowledge/ripozo) - Quickly creating REST/HATEOAS/Hypermedia APIs. - * [marshmallow](http://marshmallow.readthedocs.org/en/latest/) - marshmallow is an ORM/ODM/framework-agnostic library for converting complex datatypes, such as objects, to and from native Python datatypes. + +## Serialization + +*Libraries for serializing complex data types* + +* [marshmallow](http://marshmallow.readthedocs.org/en/latest/) - marshmallow is an ORM/ODM/framework-agnostic library for converting complex datatypes, such as objects, to and from native Python datatypes. ## Authentication