Simple AWS Lambda proxy to handle API Gateway request
Project description
A simple AWS Lambda proxy to handle API Gateway request
Install
$ pip install -U pip
$ pip install lambda-proxy
Or install from source:
$ git clone https://github.com/vincentsarag/lambda-proxy.git
$ cd lambda-proxy
$ pip install -U pip
$ pip install -e .
Usage
With GET request
>>> from lambda_proxy.proxy import API
>>> APP = API(app_name="app")
>>> @APP.route('/test/tests/<id>', methods=['GET'], cors=True)
>>> def print_id(id):
return ('OK', 'plain/text', id))
With POST request
>>> from lambda_proxy.proxy import API
>>> APP = API(app_name="app")
>>> @APP.route('/test/tests/<id>', methods=['POST'], cors=True)
>>> def print_id(id, body):
return ('OK', 'plain/text', id))
Simple Auth token
Lambda-proxy provide a simple token validation system.
a “TOKEN” variable must be set in the environment
each request must provide a “access_token” params (e.g curl http://myurl/test/tests/myid?access_token=blabla)
>>> from lambda_proxy.proxy import API
>>> APP = API(app_name="app")
>>> @APP.route('/test/tests/<id>', methods=['GET'], cors=True, token=True)
>>> def print_id(id):
return ('OK', 'plain/text', id))
URL schema and request parameters
>>> from lambda_proxy.proxy import API
>>> APP = API(app_name="app")
>>> @APP.route('/test/tests/<id>', methods=['GET'], cors=True)
>>> def print_id(id, name=None):
return ('OK', 'plain/text', f"{id}{name}"))
requests:
>>> curl /test/tests/000001
0001
>>> curl /test/tests/000001?name=vincent
0001vincent
License
See LICENSE.txt.
Changes
See CHANGES.txt.
Contribution & Devellopement
Issues and pull requests are more than welcome.
Dev install & Pull-Request
$ git clone https://github.com/vincentsarago/lambda-proxy.git
$ cd lambda-proxy
$ pip install -e .[dev]
Python >3.6 only
This repo is set to use pre-commit to run flake8, pydocstring and black (“uncompromising Python code formatter”) when committing new code.
$ pre-commit install
$ git add .
$ git commit -m'my change'
black....................................................................Passed
Flake8...................................................................Passed
Verifying PEP257 Compliance..............................................Passed
$ git push origin
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
File details
Details for the file lambda_proxy-2.0.0.tar.gz
.
File metadata
- Download URL: lambda_proxy-2.0.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 259a502348bef14d8c32c92bf2af0a0981e41c375e5ef2f7e43fff5d7cf6e810 |
|
MD5 | 56929f9311ef34cd3749c9a69644668a |
|
BLAKE2b-256 | bcd5bf67c5c3006811d9890cec95003ceceaf79d5434aea67555c9d9caa10f83 |