Skip to main content

A Sanic extension adding a decorator for CORS support. Based on flask-cors by Cory Dolphin.

Project description

Build Status Latest Version Supported Python versions License

A Sanic extension for handling Cross Origin Resource Sharing (CORS), making cross-origin AJAX possible. Based on flask-cors by Cory Dolphin.

This package has a simple philosophy, when you want to enable CORS, you wish to enable it for all use cases on a domain. This means no mucking around with different allowed headers, methods, etc. By default, submission of cookies across domains is disabled due to the security implications, please see the documentation for how to enable credential’ed requests, and please make sure you add some sort of CSRF protection before doing so!

Installation

Install the extension with using pip, or easy_install.

$ pip install -U sanic-cors

Usage

This package exposes a Sanic extension which by default enables CORS support on all routes, for all origins and methods. It allows parameterization of all CORS headers on a per-resource level. The package also contains a decorator, for those who prefer this approach.

Simple Usage

In the simplest case, initialize the Sanic-Cors extension with default arguments in order to allow CORS for all domains on all routes. See the full list of options in the documentation.

from sanic import Sanic
from sanic.response import text
from sanic_cors import CORS, cross_origin

app = Sanic(__name__)
CORS(app)

@app.route("/")
def hello_world(request):
  return text("Hello, cross-origin-world!")

Resource specific CORS

Alternatively, you can specify CORS options on a resource and origin level of granularity by passing a dictionary as the resources option, mapping paths to a set of options. See the full list of options in the documentation.

app = Sanic(__name__)
cors = CORS(app, resources={r"/api/*": {"origins": "*"}})

@app.route("/api/v1/users")
def list_users(request):
  return text("user example")

Route specific CORS via decorator

This extension also exposes a simple decorator to decorate sanic routes with. Simply add @cross_origin(app) below a call to Sanic’s @app.route(..) to allow CORS on a given route. See the full list of options in the decorator documentation.

@app.route("/")
@cross_origin(app)
def hello_world(request):
  return text("Hello, cross-origin-world!")

Documentation

For a full list of options, please see the full documentation

Troubleshooting

If things aren’t working as you expect, enable logging to help understand what is going on under the hood, and why.

logging.getLogger('sanic_cors').level = logging.DEBUG

Tests

A simple set of tests is included in test/. To run, install nose, and simply invoke nosetests or python setup.py test to exercise the tests.

Contributing

Questions, comments or improvements? Please create an issue on Github, tweet at @corydolphin or send me an email. I do my best to include every contribution proposed in any way that I can.

Credits

This Sanic extension is based upon the Decorator for the HTTP Access Control written by Armin Ronacher.

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

Sanic-Cors-0.5.4.1.tar.gz (30.2 kB view details)

Uploaded Source

Built Distributions

Sanic_Cors-0.5.4.1-py3.5.egg (27.4 kB view details)

Uploaded Source

Sanic_Cors-0.5.4.1-py2.py3-none-any.whl (17.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file Sanic-Cors-0.5.4.1.tar.gz.

File metadata

File hashes

Hashes for Sanic-Cors-0.5.4.1.tar.gz
Algorithm Hash digest
SHA256 7c213a98d85e345de70eb95bdcaaf8bc6e08ab952759a8f660159cbb61490a52
MD5 dedf2473f2715c8593c4143542c31a31
BLAKE2b-256 e7bec54f2e05f42278d0f9dd80f2b1e8beffe96f8e1b592dcdc4682f3569a633

See more details on using hashes here.

Provenance

File details

Details for the file Sanic_Cors-0.5.4.1-py3.5.egg.

File metadata

File hashes

Hashes for Sanic_Cors-0.5.4.1-py3.5.egg
Algorithm Hash digest
SHA256 613895bbb3d538516be4617809984db49cdcff64f5d0608e69e4ee71e8c31877
MD5 eafbbc7f11f809b537c435fc49035d8b
BLAKE2b-256 8170ea9c0693be810b41227b8df1f085134a9a0171bbb82fd9d90f25a2da7f80

See more details on using hashes here.

Provenance

File details

Details for the file Sanic_Cors-0.5.4.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for Sanic_Cors-0.5.4.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 dcad962a58e87054c8e010efad637ea2cb6135dbcb682599b824d39ba231aec0
MD5 cf1c8fbb4b6aa3ad1a9a05896762675a
BLAKE2b-256 c6ffa30f733ef273cf72f71652c1e5ec3eac8c1a38dcef6874b13a4a53993606

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