Skip to main content

AWS Python Lambda Packager

Project description

Provides a quick command line utility for packaging and publishing Python AWS Lambda functions. This is a work in progress and pull requests are always welcome.

Installation

The latest release of lambda-uploader can be installed via pip:

pip install lambda-uploader

An alternative install method would be manually installing it leveraging setup.py:

git clone https://github.com/rackerlabs/lambda-uploader
cd lambda-uploader
python setup.py install

Configuration File

The lambda uploader expects a directory with, at a minimum, your lambda function and a lambda.json file. It is not necessary to set requirements in your config file since the lambda uploader will also check for and use a requirements.txt file.

Example lambda.json file:

{
  "name": "myFunction",
  "description": "It does things",
  "region": "us-east-1",
  "handler": "function.lambda_handler",
  "role": "arn:aws:iam::00000000000:role/lambda_basic_execution",
  "requirements": ["pygithub"],
  "ignore": [
    "circle.yml",
    ".git",
    "*.pyc"
  ],
  "timeout": 30,
  "memory": 512
}

Command Line Usage

To package and upload simply run the command from within your lambda directory or with the directory as an option.

lambda-uploader ./myfunc

To specify an alternative profile that has been defined in ~/.aws/credentials use the --profile parameter.

lambda-uploader --profile=alternative-profile

To specify an alternative, prexisting virtualenv use the --virtualenv parameter.

lambda-uploader --virtualenv=~/.virtualenv/my_custom_virtualenv

To omit using a virtualenv use the --no-virtualenv parameter.

lambda-uploader --no-virtualenv

If you would prefer to upload another way you can tell the uploader to ignore the upload. This will create a package and leave it in the project directory.

lambda-uploader --no-upload ./myfunc

To publish a version without an alias you would pass the the publish flag.

lambda-uploader -p ./myfunc

If you would like to alias your upload you can pass the alias with the alias flag. The function description will be used when an alias-description is not provided.

lambda-uploader --alias myAlias --alias-description 'My alias description' ./myfunc

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lambda-uploader-0.4.0.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

lambda_uploader-0.4.0-py2-none-any.whl (11.3 kB view details)

Uploaded Python 2

File details

Details for the file lambda-uploader-0.4.0.tar.gz.

File metadata

File hashes

Hashes for lambda-uploader-0.4.0.tar.gz
Algorithm Hash digest
SHA256 4434a8a738285cc4606a2ede0362a1e8fdfc9069ee8bf6ccca80491bb0394382
MD5 6e1c16ba5b2eab0870e7bd3e531a7de9
BLAKE2b-256 7f4bb8b3f9e2f031f844bb85c7ae72916fdd1013bb112d50ca9a54cb42848b8b

See more details on using hashes here.

File details

Details for the file lambda_uploader-0.4.0-py2-none-any.whl.

File metadata

File hashes

Hashes for lambda_uploader-0.4.0-py2-none-any.whl
Algorithm Hash digest
SHA256 2ec51521d6c130663fbe6d6f832cd6830fbf6e7fea511cba0c34efaef46b9efd
MD5 bce3ad1bc04a9ba3fc56c02305f4fc5f
BLAKE2b-256 52b114448fef7b0879d0166942e768fb0926caca932bd7cc7780f48180d1fdbd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page