CORS plugin for Bottle framework
Project description
bottle-cors
Simple plugin to easily enable CORS support in Bottle routes.
Example
from bottle import Bottle, request, run
from truckpad.bottle.cors import CorsPlugin, enable_cors
app = Bottle()
@app.get('/')
def index():
"""
CORS is disabled for this route
"""
return "cors is disabled here"
@enable_cors
@app.get('/endpoint_1')
def endpoint_1():
"""
CORS is enabled for this route.
OPTIONS requests will be handled by the plugin itself
"""
return "cors is enabled, OPTIONS handled by plugin"
@enable_cors
@app.route('/endpoint_2', method=['GET', 'POST', 'OPTIONS'])
def endpoint_2():
"""
CORS is enabled for this route.
OPTIONS requests will be handled by *you*
"""
if request.method == 'OPTIONS':
# do something here?
pass
return "cors is enabled, OPTIONS handled by you!"
app.install(CorsPlugin(origins=['http://list.of.allowed.domains.com', 'https://another.domain.org']))
run(app)
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
bottle-cors-0.1.5.tar.gz
(2.9 kB
view hashes)
Built Distribution
Close
Hashes for bottle_cors-0.1.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16b32f0bf4c0b5fa7ee4cba503e23ca9a35adb0f0b628b347e994ec807c69e32 |
|
MD5 | 30389aad103961f71e7cc82d40024481 |
|
BLAKE2b-256 | 1320643010f78dbe390ba48ed55b4b13dc2c57e9f7db5adc745ba7f2be22a3eb |