Metadata-Version: 2.0
Name: run-lambda
Version: 0.1.2
Summary: Run AWS Lambda functions locally
Home-page: https://github.com/ethantkoenig/python-run-lambda
Author: Ethan Koenig
Author-email: ethantkoenig@gmail.com
License: MIT
Keywords: aws,lambda,run,local,locally
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: memory-profiler
Requires-Dist: mock
Requires-Dist: psutil
Requires-Dist: six


Python run_lambda
=================

``run_lambda`` is a Python package providing functionality for running Python
`AWS Lambda <https://aws.amazon.com/lambda/>`_ functions locally. It offers a
Python module for automated testing of Lambda functions, as well as a
command-line interface for ad-hoc local invocations.

To date, ``run_lambda`` has only been tested on Linux systems. If you choose to
use it on other platforms, please be wary of the memory usage statistics it
generates.

Installation
------------

The easiest way to install is via ``pip``::

    $ pip install run_lambda

You can also download the source from
`Github <https://www.github.com/ethantkoenig/python_run_lambda>`_.


