Skip to main content

Flask + marshmallow for beautiful APIs

Project description

https://travis-ci.org/sloria/flask-marshmallow.png?branch=master

Flask + marshmallow for beautiful APIs

Flask-Marshmallow is a thin integration layer for Flask (a Python web framework) and marshmallow (an object serialization/deserialization library) that adds additional features to marshmallow, including URL and Hyperlinks fields for HATEOAS-ready APIs.

Create your app.

from flask import Flask, jsonify
from flask.ext.marshmallow import Marshmallow

app = Flask(__name__)
ma = Marshmallow(app)

Write your models.

from your_orm import Model, Column, Integer, String, DateTime

class User(Model):
    email = Column(String)
    password = Column(String)
    date_created = Column(DateTime, auto_now_add=True)

Define your output format with marshmallow.

class UserSchema(ma.Schema):
    class Meta:
        # Fields to expose
        fields = ('email', 'date_created', '_links')
    # Smart hyperlinking
    _links = ma.Hyperlinks({
        'self': ma.URL('author_detail', id='<id>'),
        'collection': ma.URL('authors')
    })

user_schema = UserSchema()
users_schema = UserSchema(many=True)

Output the data in your views.

@app.route('/api/users/')
def users():
    all_users = User.all()
    result = users_schema.dump(all_users)
    return jsonify(result.data)

@app.route('/api/users/<id>')
def user_detail(id):
    user = User.get(id)
    result = user_schema.dump(user)
    return jsonify(result.data)
# {
#     "email": "fred@queen.com",
#     "date_created": "Fri, 25 Apr 2014 06:02:56 -0000",
#     "_links": {
#         "self": "/api/authors/42",
#         "collection": "/api/authors/"
#     }
# }

Learn More

To learn more about marshmallow, check out its docs.

Get it now

pip install flask-marshmallow

http://flask-marshmallow.readthedocs.org/

License

MIT licensed. See the bundled LICENSE file for more details.

Changelog

0.3.0 (2014-10-19)

  • Supports marshmallow >= 1.0.0-a.

0.2.0 (2014-05-12)

  • Implementation as a proper class-based Flask extension.

  • Serializer and fields classes are available from the Marshmallow object.

0.1.0 (2014-04-25)

  • First release.

  • Hyperlinks, URL, and AbsoluteURL fields implemented.

  • Serializer#jsonify implemented.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flask-marshmallow-0.3.0.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

flask_marshmallow-0.3.0-py2.py3-none-any.whl (9.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file flask-marshmallow-0.3.0.tar.gz.

File metadata

File hashes

Hashes for flask-marshmallow-0.3.0.tar.gz
Algorithm Hash digest
SHA256 adf5092f45ce422beb01b9d8167780289614e1f30a1bfabe1cb3478455b60ac3
MD5 6028048516619714ef3cd26fdd4e1d54
BLAKE2b-256 f0a1035fc52443aaa3fb6f587f064c1c15d3c9ee0fe02f6a51e19ce4fce3ccec

See more details on using hashes here.

Provenance

File details

Details for the file flask_marshmallow-0.3.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for flask_marshmallow-0.3.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6d6eda23b2193ad3bab24a2b6f7294f1375b6228d48a084b3d0c09322f6be6c3
MD5 6589a98aee8b37f023e958c344ba7cae
BLAKE2b-256 23631860d97c361ef709debbfaa1cbcfe82f504706e29033d53df21a4c84c4c8

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page