Python module and CLI to package and upload python lambda functions to AWS Lambda
Installation
pip install python-mu
Configuration
You will need to have a boto profile created. This can be done using awscli:
pip install awscli aws configure
Usage
usage: mu [-h] [--with-pyc] [--zip-file ZIP_FILE] [--profile PROFILE]
[--zip-only]
[config]
positional arguments:
config JSON file describing this lambda function. Default
lambda.json
optional arguments:
-h, --help show this help message and exit
--with-pyc Package pyc/pyo files
--zip-file ZIP_FILE Name to give ZIP file. Default lambda.zip
--profile PROFILE boto/awscli profile name. Default default
--zip-only Only create the ZIP file, do not upload
lambda.json
{
"name": "helloworld",
"description": "Hello, World!",
"region": "us-east-1",
"role": "arn:aws:iam::000000000000:role/lambda_basic_execution",
"handler": "helloworld.lambda_handler",
"memory_size": 128,
"timeout": 3,
"py_modules": [
"helloworld"
],
"packages": {
"exclude": [
"tests",
"tests.*"
]
},
"deps": [
"requests",
"-rrequirements.txt"
],
"publish": true
}
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
python-mu-1.0.2.tar.gz
(9.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python-mu-1.0.2.tar.gz.
File metadata
- Download URL: python-mu-1.0.2.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
add6d9fb3f7fb70c6758215c302dc4b81b9afc84b4bcdbad4a7c2abb53ddc0e4
|
|
| MD5 |
f6a3d36a9550b978d0e5089ecd826b81
|
|
| BLAKE2b-256 |
48d45ca2d676fe85b3264755803a482acafbb6cac901267a542b0e30e4a6d323
|
File details
Details for the file python_mu-1.0.2-py2.py3-none-any.whl.
File metadata
- Download URL: python_mu-1.0.2-py2.py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab6bb56b748ae5d3ff7be56b687533ce4e927466b7b87004eeff8c721fafcf6a
|
|
| MD5 |
b97a4e1d19b5fcebb7c92458164017f6
|
|
| BLAKE2b-256 |
a1c1e71193c4578418a09eaac5e524c82bc29761cd09759b43c7e77eccd85558
|