Skip to main content

Python module and CLI to package and upload python lambda functions to AWS Lambda.

Project description

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
}

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

python-mu-1.0.0.tar.gz (9.6 kB view details)

Uploaded Source

File details

Details for the file python-mu-1.0.0.tar.gz.

File metadata

  • Download URL: python-mu-1.0.0.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for python-mu-1.0.0.tar.gz
Algorithm Hash digest
SHA256 507d48ba74cb8f55e185e293d47cd1169d6c5c6f76ffc3308681a91586085118
MD5 a624f5a81c61bc855b76711275effe24
BLAKE2b-256 6bdafb39a847911278643ae06fcc36514c06cff1dc9d0b27a7a7e5910c7d945d

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