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("/", methods=['GET', 'OPTIONS'])
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", methods=['GET', 'OPTIONS'])
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("/", methods=['GET', 'OPTIONS'])
@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

Preflight Requests

CORS requests have to send pre-flight requests via the options method, Sanic by default only allows the GET method, in order to service your CORS requests you must specify ‘OPTIONS’ in the methods argument to your routes decorator.

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.6.0.0.tar.gz (30.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

Sanic_Cors-0.6.0.0-py3.5.egg (27.6 kB view details)

Uploaded Egg

Sanic_Cors-0.6.0.0-py2.py3-none-any.whl (17.5 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: Sanic-Cors-0.6.0.0.tar.gz
  • Upload date:
  • Size: 30.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Sanic-Cors-0.6.0.0.tar.gz
Algorithm Hash digest
SHA256 ca15084f1519293e34f981d6989178de2eb673546cc9f1ddc298e39ba6d93d3e
MD5 02e99c2255a45ae1442e088bb37edb6a
BLAKE2b-256 c5247986b7d0ee3eb66615e886072eea2cb50c4a957dd81470d12ff4a3b29493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Sanic_Cors-0.6.0.0-py3.5.egg
Algorithm Hash digest
SHA256 fdb3695afc75318df94ee06b01109de7e467d42cb2c9f7718b8a308857b16644
MD5 1d32e6b4c45d8bd83571b12775e3f46a
BLAKE2b-256 525db1e0e5b627f0d203dc19c3eb8c63a9220a8999eb37b41b068623b017a173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Sanic_Cors-0.6.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7d1d7ec3aaadcdc9cfa25a458aff3e8f30e1d232bca93f8af506df1b45712537
MD5 f0ddda98d1af3d16c66dffe3d8d80d1a
BLAKE2b-256 759c932a8d05428971b9eb0b4cb9e5d66999a3b3023d173f0e175276bd7753c5

See more details on using hashes here.

Supported by

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