Skip to main content

Yet another deploy tool for AWS Lambda in the virtualenv environment.

Project description

Yet another deploy tool for AWS Lambda in the virtualenv.

Requirements

  • Python2.7

  • virtualenv

Installation

pip install lamvery

Setup

At first,

lamvery init

And put your lamvery.yml like this.

configuration:
  name: sample_lambda_function
  runtime: python2.7
  role: arn:aws:iam::000000000000:role/lambda_basic_execution
  handler: lambda_function.lambda_handler
  description: This is sample lambda function.
  timeout: 10
  memory_size: 128
  publish: true

Usage

  • Archive your code and libraries to <your-function-name>.zip

lamvery archive
  • Archive and deploy your code and libraries

lamvery deploy

Options

  • -f or --file

Specify the configuration file.
default: lamvery.yml

Configuration

name

The name of your function.

runtime

The runtime environment for the Lambda function you are uploading.
Currently, lamvery supports only python2.7.

role

The Amazon Resource Name (ARN) of the IAM role for your function.

handler

The function within your code that Lambda calls to begin execution.

description

The description of your function.

timeout

The function execution time(seconds) at which Lambda should terminate the function.

memory_size

The amount of memory for your function environment.

publish

This boolean parameter can be used to request AWS Lambda to create/update the Lambda function and publish a version as an atomic operation.

Development

Pull requests are very welcome! Make sure your patches are well tested. Ideally create a topic branch for every separate change you make. For example:

  1. Fork the repo

  2. Create your feature branch (git checkout -b my-new-feature)

  3. Commit your changes (git commit -am 'Added some feature')

  4. Push to the branch (git push origin my-new-feature)

  5. Create new Pull Request

Authors

Created and maintained by Masashi Terui (marcy9114@gmail.com)

License

MIT License (see LICENSE)

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

lamvery-0.0.3.tar.gz (5.6 kB view hashes)

Uploaded Source

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