Whitelist urls on ASGI applications allowing for cross origin requests
Project description
asgi-cors-middleware
Python package that allows whitelisting of urls on ASGI applications making it possible to perform cross origin requests from the browser.
CORS in a nutshell
Cross-Origin Resource Sharing (CORS) allows a server to define any origins other than its own that are safe for the browser to load resources from.
Mozilla does a good job of explaining CORS here.
Background
Assuming you have a web application that follows a client-server architecture, it's possible the frontend would be running on a server different from the API. If the frontend application made a request to the API, this kind of request would be blocked by the browser.
For security reasons, browsers block cross origin requests by default.
A cross origin request is a request made to a server with a different url/ origin. To mitigate around this, we could simply add the url of the frontend application as an allowed origin on the API server. Most web frameworks provide a way to do this or have third party libraries that achieve the same.
asgi-cors-middleware aims to provide a simple way to achieve the above for ASGI applications.
Features
- Simple
- Works with most ASGI frameworks (Django, Starlette, FastAPI, channels)
- Works with Ariadne
Installation
Can be installed via pip
pip install asgi-cors-middleware
Usage
To use the middleware, just import it like so:
from asgi_cors_middleware import CorsASGIApp
To start whitelisting origins, just wrap your asgi application instance with
CorsASGIApp
.
app = CorsASGIApp(
app=asgi_app_instance,
origins=["www.example.com"]
)
Example
A simple HelloWorld application that whitelists the origins below:
- www.example.com
- localhost:9000
Install an ASGI server
pip install uvicorn
Create a file called example.py and update it with the code below:
from asgi_cors_middleware import CorsASGIApp
class HelloWorld:
def __init__(self, scope):
pass
async def __call__(self, receive, send):
await send({
'type': 'http.response.start',
'status': 200,
'headers': [
[b'content-type', b'text/plain'],
]
})
await send({
'type': 'http.response.body',
'body': b'Hello, world!',
})
app = CorsASGIApp(
app=HelloWorld,
origins=[
"www.example.com",
"localhost:9000"
]
)
That's it. For real, that's really it. Now your application is all set to allow requests from www.example.com and localhost:9000.
Run the app
uvicorn example:app
Contributing
For guidance and instructions, please see CONTRIBUTING.md
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file asgi-cors-middleware-0.0.2.tar.gz
.
File metadata
- Download URL: asgi-cors-middleware-0.0.2.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 054ee9409c9b6c8088e758719d38441cd2fdb7cf7675318c89a13f01b5bb4efe |
|
MD5 | 15470ecdb527dd9ec9064a74cdd2f2da |
|
BLAKE2b-256 | d053dadd41692da6fc8462bc6025c19a52ededa4d3833aff10fb80791e97d516 |
File details
Details for the file asgi_cors_middleware-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: asgi_cors_middleware-0.0.2-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 305c7e258d4b81a9e8bebc493163e88155daa0f3909c7190ce7d4d3a7aaf1436 |
|
MD5 | ebecd6b7d8cb44e497b973c02687435a |
|
BLAKE2b-256 | 5abaf3f5ba3a1d65318bbcf3503b7647c5138b76c797a2fe681263b98af28c01 |