Metadata-Version: 2.0
Name: lambda-packages
Version: 0.1.0
Summary: AWS Lambda Packages
Home-page: https://github.com/Miserlou/lambda-packages
Author: Rich Jones
Author-email: rich@openwatch.net
License: MIT License
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content

lambda-packages |Build Status| |Slack|
======================================

Various popular libraries, pre-compiled to be compatible with AWS
Lambda.

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

::

    pip install lambda-packages

Usage
-----

''lambda-packages'' also includes a manifest with information about the
included packages and the paths to their binaries.

.. code:: python

    from lambda_packages import lambda_packages

    print lambda_packages['psycopg2']['version'] 
    # 2.6.1
    print lambda_packages['psycopg2']['path'] 
    # /home/YourUsername/.venvs/lambda_packages/psycopg2/psycopg2-2.6.1.tar.gz

.. |Build Status| image:: https://travis-ci.org/Miserlou/lambda-packages.svg
   :target: https://travis-ci.org/Miserlou/lambda-packages
.. |Slack| image:: https://img.shields.io/badge/chat-slack-ff69b4.svg
   :target: https://slackautoinviter.herokuapp.com/


