Skip to main content

A Flask extension simplifying CORS support

Project description

Build Status Latest Version Supported Python versions License

A Flask extension for handling Cross Origin Resource Sharing (CORS), making cross-origin AJAX possible.

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 flask-cors

Usage

This package exposes a Flask 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 Flask-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 flask import Flask
from flask_cors import CORS

app = Flask(__name__)
CORS(app)

@app.route("/")
def helloWorld():
  return "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 = Flask(__name__)
cors = CORS(app, resources={r"/api/*": {"origins": "*"}})

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

Route specific CORS via decorator

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

@app.route("/")
@cross_origin()
def helloWorld():
  return "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('flask_cors').level = logging.DEBUG

Set Up Your Development Environment — The development environment uses uv for Python version management as well as dependency management. There are helpful Makefile targets to do everything you need. Use make test to get started!

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 Flask 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

flask_cors-6.0.3.tar.gz (92.0 kB view details)

Uploaded Source

Built Distribution

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

flask_cors-6.0.3-py3-none-any.whl (13.2 kB view details)

Uploaded Python 3

File details

Details for the file flask_cors-6.0.3.tar.gz.

File metadata

  • Download URL: flask_cors-6.0.3.tar.gz
  • Upload date:
  • Size: 92.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for flask_cors-6.0.3.tar.gz
Algorithm Hash digest
SHA256 d8b13989a630eef065a7b8ff10a183761be5abbb7f001294bd2963e10946cadd
MD5 4b4bb3e1840ba1d5ef770a4d99631b21
BLAKE2b-256 ba0accc5176e3f041fd731b5e6a644e18f74dcdbc3c5b8d42415bc2884309975

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_cors-6.0.3.tar.gz:

Publisher: on-release-main.yml on corydolphin/flask-cors

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_cors-6.0.3-py3-none-any.whl.

File metadata

  • Download URL: flask_cors-6.0.3-py3-none-any.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for flask_cors-6.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f49be9b367355a1ad3a871be5cfd1c4ef97100c81b2078b2cea1db8cd4e42389
MD5 238fa5b88f8bb8bbffa80d79b4494f65
BLAKE2b-256 13c242a274bd1fc35c9fce442eb5c8614cb0f86e993f0cfd7b4b00eabb95b757

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_cors-6.0.3-py3-none-any.whl:

Publisher: on-release-main.yml on corydolphin/flask-cors

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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