Skip to main content

Simple response utility for Flask

Project description

Flask-Responses 0.2
===================

.. image:: https://pypip.in/version/flask-responses/badge.svg
:target: https://pypi.python.org/pypi/flask-responses/
:alt: Latest Version

.. image:: https://secure.travis-ci.org/Parkayun/flask-responses.svg?branch=master
:alt: Build Status
:target: https://travis-ci.org/Parkayun/flask-responses

.. image:: https://img.shields.io/coveralls/Parkayun/flask-responses.svg
:alt: Coverage Status
:target: https://coveralls.io/r/Parkayun/flask-responses

.. module:: flask.ext.responses

Simple response utility for `Flask`.

.. _Flask: http://flask.pocoo.org/

Installation
-------------

.. sourcecode:: bash

~ $ python setup.py install

or can use pip

.. sourcecode:: bash

~ $ pip install flask-responses

Quick start
-----------

.. sourcecode:: python

from flask import Flask
from flask.ext.responses import json_response, xml_response, auto_response

app = Flask(__name__)

@app.route("/json")
def hello():
return json_response({"message": "Hello World!"}, status_code=201)

@app.route("/xml")
def world():
return xml_response({"message": "Hello World!"}, headers={'x-foo': 'bar'}) # or can do this xml_response('<message>Hello World</message>')

@app.route("/auto")
def auto():
return auto_response({"message": "Hello World!"}, status_code=201, headers={'x-foo': 'bar'})

Responses
---------
* JSON (json_response)
* XML (xml_response)

ToDo
----
* allow origin cross domain
* server sent evnets

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-Responses-0.2.tar.gz (2.6 kB view details)

Uploaded Source

File details

Details for the file Flask-Responses-0.2.tar.gz.

File metadata

File hashes

Hashes for Flask-Responses-0.2.tar.gz
Algorithm Hash digest
SHA256 5a0a30e13e0651b645c89552cd17972664769e351a978b1356ccc806f7a567e2
MD5 084095ce15be6ff06d47e09ebbc54703
BLAKE2b-256 5766ab2acb269a04ed3993be29059e2cdb241bdc1ec9318ea976408a33c19043

See more details on using hashes here.

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