UNKNOWN
Project description
λambdify
lambdify allows you to create AWS Lambda function directly from
the python code.
Just like that:
install lambdify…
$pip install lambdify
…create AWS Lambda with 4 lines of code:
from lambdify import Lambda
@Lambda.f(name='echo')
def echo(*args, **kwargs):
return args, kwargs
echo.create()
if __name__ == '__main__':
import getpass
echo(msg='Hello, {user}!'.format(user=getpass.getuser()))
Now you can head over to your AWS Lambda console and behold your echo function
The goal
Lambdify aims to unite convenient task queues API (i.e. Celery, Hue, RQ’s @job decorator) with AWS Lambda service coolest features.
At present, there are some solutions, that allow you to create and
deploy lambdas, like Zappa, lambda-uploader, lambder etc.,
but they still have limitations of not being able to interact directly
with a python program.
lambdify overcomes such limitations by using the following algorithm:
Documentation
>>>from lambdify import Lambda
>>>help(Lambda)
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
lambdify-0.0.2.tar.gz
(18.1 kB
view details)
File details
Details for the file lambdify-0.0.2.tar.gz
.
File metadata
- Download URL: lambdify-0.0.2.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c2c1e74b470de0f0349891207367c62e51103c45240d28b089e51323162c114 |
|
MD5 | e2aef4116b762fc6058a016d7c2de374 |
|
BLAKE2b-256 | 07c3b11ec03078dc74e9f5e12b5cdf163b51faef0273b3b9e5387d7d0ce395db |