Django Lambda Gateway Interface
Project description
django-lgi - Django Lambda Gateway Interface
django-lgi is a python module that interprets HTTP API requests sent to your Django project in Lambda.
Features
- Process 2.0 payload format version data that API Gateway sends to a Lambda integration.
- Trigger management commands directly on lambda, e.g. invoke lambda function with
{"manage": ["version"]}
to display the current Django version.
Installation
pip install django-lgi
Usage
Create lgi.py
file in Django project root. Remember to replace mysite.settings
with dotted path to your settings module.
import os
from lgi import get_lgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings")
application = get_lgi_application()
Set lambda handler to mysite.lgi.application
.
Examples
- Djambda - example project setting up Django application in AWS Lambda managed by Terraform.
Related Projects
Testing
To run the test suite, first, create and activate a virtual environment. Then run tests.
$ flit install -s
$ cd tests
$ ./runtests.py
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
django-lgi-0.1.2.tar.gz
(7.2 kB
view hashes)
Built Distribution
Close
Hashes for django_lgi-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8274a117e0d24832208d8544d3edd1ed3d9346fc9443aaea96e31d2bb529b4bd |
|
MD5 | ab52a32be79cd2b44d9d85a3fb259e0c |
|
BLAKE2b-256 | 17a85fc6b533e29aeb2f674cca755f58a8803c54a7c396dc7511d8ece2161314 |