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.3.tar.gz
(19.3 kB
view details)
File details
Details for the file lambdify-0.0.3.tar.gz
.
File metadata
- Download URL: lambdify-0.0.3.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d2e441b5ec76429e89800860ed8d38dd710a44ac61242b89b5f8e98e35b1245 |
|
MD5 | 2acbaf821c2b98075acfaa0f67a8745f |
|
BLAKE2b-256 | e4a12fa3a513d03fbb3a8e5a87b75f606ae3a69edaa25d1ae8d62626fb6ac5ed |