{
"info": {
"author": "Nick Ficano",
"author_email": "nficano@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
],
"description": "========\npython-\u03bb\n========\n\n.. image:: https://img.shields.io/pypi/v/python-lambda.svg\n :alt: Pypi\n :target: https://pypi.python.org/pypi/python-lambda/\n\n.. image:: https://img.shields.io/pypi/pyversions/python-lambda.svg\n :alt: Python Versions\n :target: https://pypi.python.org/pypi/python-lambda/\n\nPython-lambda is a toolset for developing and deploying *serverless* Python code in AWS Lambda.\n\nA call for contributors\n=======================\nWith python-lambda and `pytube `_ both continuing to gain momentum, I'm calling for contributors to help build out new features, review pull requests, fix bugs, and maintain overall code quality. If you're interested, please email me at nficano[at]gmail.com.\n\nDescription\n===========\n\nAWS Lambda is a service that allows you to write Python, Java, or Node.js code that gets executed in response to events like http requests or files uploaded to S3.\n\nWorking with Lambda is relatively easy, but the process of bundling and deploying your code is not as simple as it could be.\n\nThe *Python-Lambda* library takes away the guess work of developing your Python-Lambda services by providing you a toolset to streamline the annoying parts.\n\nRequirements\n============\n\n* Python 2.7 & 3.6 (At the time of writing this, AWS Lambda only supports Python 2.7/3.6).\n* Pip (~8.1.1)\n* Virtualenv (~15.0.0)\n* Virtualenvwrapper (~4.7.1)\n\nGetting Started\n===============\n\nFirst, you must create an IAM Role on your AWS account called `lambda_basic_execution` with the `LambdaBasicExecution` policy attached.\n\nOn your computer, create a new virtualenv and project folder.\n\n.. code:: bash\n\n $ mkvirtualenv pylambda\n (pylambda) $ mkdir pylambda\n\nNext, download *Python-Lambda* using pip via pypi.\n\n.. code:: bash\n\n (pylambda) $ pip install python-lambda\n\nFrom your ``pylambda`` directory, run the following to bootstrap your project.\n\n.. code:: bash\n\n (pylambda) $ lambda init\n\nThis will create the following files: ``event.json``, ``__init__.py``, ``service.py``, and ``config.yaml``.\n\nLet's begin by opening ``config.yaml`` in the text editor of your choice. For the purpose of this tutorial, the only required information is ``aws_access_key_id`` and ``aws_secret_access_key``. You can find these by logging into the AWS management console.\n\nNext let's open ``service.py``, in here you'll find the following function:\n\n.. code:: python\n\n def handler(event, context):\n # Your code goes here!\n e = event.get('e')\n pi = event.get('pi')\n return e + pi\n\n\nThis is the handler function; this is the function AWS Lambda will invoke in response to an event. You will notice that in the sample code ``e`` and ``pi`` are values in a ``dict``. AWS Lambda uses the ``event`` parameter to pass in event data to the handler.\n\nSo if, for example, your function is responding to an http request, ``event`` will be the ``POST`` JSON data and if your function returns something, the contents will be in your http response payload.\n\nNext let's open the ``event.json`` file:\n\n.. code:: json\n\n {\n \"pi\": 3.14,\n \"e\": 2.718\n }\n\nHere you'll find the values of ``e`` and ``pi`` that are being referenced in the sample code.\n\nIf you now try and run:\n\n.. code:: bash\n\n (pylambda) $ lambda invoke -v\n\nYou will get:\n\n.. code:: bash\n\n # 5.858\n\n # execution time: 0.00000310s\n # function execution timeout: 15s\n\nAs you probably put together, the ``lambda invoke`` command grabs the values stored in the ``event.json`` file and passes them to your function.\n\nThe ``event.json`` file should help you develop your Lambda service locally. You can specify an alternate ``event.json`` file by passing the ``--event-file=.json`` argument to ``lambda invoke``.\n\nWhen you're ready to deploy your code to Lambda simply run:\n\n.. code:: bash\n\n (pylambda) $ lambda deploy\n\nThe deploy script will evaluate your virtualenv and identify your project dependencies. It will package these up along with your handler function to a zip file that it then uploads to AWS Lambda.\n\nYou can now log into the `AWS Lambda management console `_ to verify the code deployed successfully.\n\nWiring to an API endpoint\n=========================\n\nIf you're looking to develop a simple microservice you can easily wire your function up to an http endpoint.\n\nBegin by navigating to your `AWS Lambda management console `_ and clicking on your function. Click the API Endpoints tab and click \"Add API endpoint\".\n\nUnder API endpoint type select \"API Gateway\".\n\nNext change Method to ``POST`` and Security to \"Open\" and click submit (NOTE: you should secure this for use in production, open security is used for demo purposes).\n\nAt last you need to change the return value of the function to comply with the standard defined for the API Gateway endpoint, the function should now look like this:\n\n.. code:: python\n\n def handler(event, context):\n # Your code goes here!\n e = event.get('e')\n pi = event.get('pi')\n return {\n \"statusCode\": 200,\n \"headers\": { \"Content-Type\": \"application/json\"},\n \"body\": e + pi\n }\n\nNow try and run:\n\n.. code:: bash\n\n $ curl --header \"Content-Type:application/json\" \\\n --request POST \\\n --data '{\"pi\": 3.14, \"e\": 2.718}' \\\n https://\n # 5.8580000000000005\n\nEnvironment Variables\n=====================\nLambda functions support environment variables. In order to set environment variables for your deployed code to use, you can configure them in ``config.yaml``. To load the\nvalue for the environment variable at the time of deployment (instead of hard coding them in your configuration file), you can use local environment values (see 'env3' in example code below).\n\n.. code:: yaml\n\n environment_variables:\n env1: foo\n env2: baz\n env3: ${LOCAL_ENVIRONMENT_VARIABLE_NAME}\n\nThis would create environment variables in the lambda instance upon deploy. If your functions don't need environment variables, simply leave this section out of your config.\n\nUploading to S3\n===============\nYou may find that you do not need the toolkit to fully deploy your Lambda or that your code bundle is too large to upload via the API. You can use the ``upload`` command to send the bundle to an S3 bucket of your choosing.\nBefore doing this, you will need to set the following variables in ``config.yaml``:\n\n.. code:: yaml\n\n role: basic_s3_upload\n bucket_name: 'example-bucket'\n s3_key_prefix: 'path/to/file/'\n\nYour role must have ``s3:PutObject`` permission on the bucket/key that you specify for the upload to work properly. Once you have that set, you can execute ``lambda upload`` to initiate the transfer.\n\nDeploying via S3\n===============\nYou can also choose to use S3 as your source for Lambda deployments. This can be done by issuing ``lambda deploy_s3`` with the same variables/AWS permissions you'd set for executing the ``upload`` command.\n\nDevelopment\n===========\n\nDevelopment of \"python-lambda\" is facilitated exclusively on GitHub. Contributions in the form of patches, tests and feature creation and/or requests are very welcome and highly encouraged. Please open an issue if this tool does not function as you'd expect.\n\n\nHow to release updates\n----------------------\n\nIf this is the first time you're releasing to pypi, you'll need to run: ``pip install -r tests/dev_requirements.txt``.\n\nOnce complete, execute the following commands:\n\n.. code:: bash\n\n git checkout master\n\n # Increment the version number and tag the release.\n bumpversion [major|minor|patch]\n\n # Upload the distribution to PyPi\n python setup.py sdist bdist_wheel upload\n\n # Since master often contains work-in-progress changes, increment the version\n # to a patch release to prevent inaccurate attribution.\n bumpversion --no-tag patch\n\n git push origin master --tags\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/nficano/python-lambda",
"keywords": "python-lambda",
"license": "ISCL",
"maintainer": "",
"maintainer_email": "",
"name": "python-lambda",
"package_url": "https://pypi.org/project/python-lambda/",
"platform": "",
"project_url": "https://pypi.org/project/python-lambda/",
"project_urls": {
"Homepage": "https://github.com/nficano/python-lambda"
},
"release_url": "https://pypi.org/project/python-lambda/3.2.6/",
"requires_dist": null,
"requires_python": "",
"summary": "The bare minimum for a Python app running on Amazon Lambda.",
"version": "3.2.6"
},
"last_serial": 4294298,
"releases": {
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "ec44b64c7728d0b2222a74d9fe49a295",
"sha256": "0f2fdbc2f2b52145e9a962cf7ef3629c3b240bfa0234fc4085f1d638f90b6cb5"
},
"downloads": -1,
"filename": "python_lambda-0.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ec44b64c7728d0b2222a74d9fe49a295",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 7497,
"upload_time": "2016-03-28T23:30:59",
"url": "https://files.pythonhosted.org/packages/97/03/27859674a80f6a7dba1760e55ea794928aed5a4fec49ece765ecf46523a7/python_lambda-0.1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b6faae89c8cb76a38e001929679a409c",
"sha256": "3fe11be6905ef17ce8a3c0d03f8ef549989567853c3934fa23bd083af6e75635"
},
"downloads": -1,
"filename": "python-lambda-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "b6faae89c8cb76a38e001929679a409c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5698,
"upload_time": "2016-03-28T23:30:53",
"url": "https://files.pythonhosted.org/packages/e8/5c/e1c01608d9960d83a5a10574c0d236f01a7e37f1783f949221ddd2d77535/python-lambda-0.1.0.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "48c0901eba12b7f88464dc7142aecde8",
"sha256": "69b6caeb1d3ccab9a6b8a27c7fec493c6aea53857f2ad72e7dc088471532bf27"
},
"downloads": -1,
"filename": "python_lambda-0.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "48c0901eba12b7f88464dc7142aecde8",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 7531,
"upload_time": "2016-03-29T21:25:27",
"url": "https://files.pythonhosted.org/packages/a5/39/20588bfa18637147a20a57c2f5627576c3fa1935fe91de3eeceeb6ab115b/python_lambda-0.1.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c95350af3565c502ffd5f2eb78b55380",
"sha256": "7bb2d2bc1742103722b3cc428b1d86fb0b2345613a848aced50ca0b2c25beb84"
},
"downloads": -1,
"filename": "python-lambda-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "c95350af3565c502ffd5f2eb78b55380",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5710,
"upload_time": "2016-03-29T21:25:21",
"url": "https://files.pythonhosted.org/packages/31/cb/8432eda37bb32eef8b14c8c6b19a1b25f0d32d8da6f1b49a15fc3a69e95b/python-lambda-0.1.1.tar.gz"
}
],
"0.1.10": [
{
"comment_text": "",
"digests": {
"md5": "8dc1c4c3a33071875cdf20a4ae6d9e82",
"sha256": "bc167163e9d6f49a1410d087ec392bfe5920b1d5faae1aa2bf85d5bb22a40985"
},
"downloads": -1,
"filename": "python_lambda-0.1.10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8dc1c4c3a33071875cdf20a4ae6d9e82",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 11886,
"upload_time": "2016-04-06T16:40:07",
"url": "https://files.pythonhosted.org/packages/1f/cf/886a945e2d80920c0786eea9dcb80e72744af473038810c53d49cf4cbe1e/python_lambda-0.1.10-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d5672da0a35d365d055f603aa0611f99",
"sha256": "351255450ce53602b694d642d741acc6043ecc3b53eccc14a858bb99ad09bf68"
},
"downloads": -1,
"filename": "python-lambda-0.1.10.tar.gz",
"has_sig": false,
"md5_digest": "d5672da0a35d365d055f603aa0611f99",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8328,
"upload_time": "2016-04-06T16:39:38",
"url": "https://files.pythonhosted.org/packages/33/ce/673f6648cdbebeb458dcdeddc3d65b5a60bd2e60a28670763219fd32c04a/python-lambda-0.1.10.tar.gz"
}
],
"0.1.11": [
{
"comment_text": "",
"digests": {
"md5": "faaaef9d52af36f0e90c2c2f003953ce",
"sha256": "ad23124551e785b441cb716250879022bf9f16bd302b76940b163eb0331060a8"
},
"downloads": -1,
"filename": "python_lambda-0.1.11-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "faaaef9d52af36f0e90c2c2f003953ce",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 11916,
"upload_time": "2016-04-10T14:55:05",
"url": "https://files.pythonhosted.org/packages/a9/13/95356454b4a45324ecf67b46abee2d9ef8ce7ca4ac1627bf9ae551f06369/python_lambda-0.1.11-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "472a59d8dcbfa2434d5ba56170bf41cc",
"sha256": "c006f6c242f6d5a86900465e47984127f7e2ce0eeba20d5cbcef0ca178bde9ce"
},
"downloads": -1,
"filename": "python-lambda-0.1.11.tar.gz",
"has_sig": false,
"md5_digest": "472a59d8dcbfa2434d5ba56170bf41cc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8355,
"upload_time": "2016-04-10T14:54:53",
"url": "https://files.pythonhosted.org/packages/c0/e5/3c348e3867cb74b8fd5eb5c85863ab2ab4ef880ff5f0d1b47948a4d8f196/python-lambda-0.1.11.tar.gz"
}
],
"0.1.12": [
{
"comment_text": "",
"digests": {
"md5": "dcd3372d63fbf8944a3c018f234431f4",
"sha256": "d49b1daddf0b3401e4632f16048f29955f936e6a58a0663e7828188b7607180f"
},
"downloads": -1,
"filename": "python_lambda-0.1.12-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "dcd3372d63fbf8944a3c018f234431f4",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 12029,
"upload_time": "2016-04-11T21:21:39",
"url": "https://files.pythonhosted.org/packages/de/f8/598677bf2b400548e4601019b6ecac0469a634d48ec0183843f5369fdb64/python_lambda-0.1.12-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fcb74d977d442d929ef98747c60136a9",
"sha256": "15ff3a5e050426f0a62d971f2a7b4da797e7c7fa1b14ceb9c5da59b178a1d44c"
},
"downloads": -1,
"filename": "python-lambda-0.1.12.tar.gz",
"has_sig": false,
"md5_digest": "fcb74d977d442d929ef98747c60136a9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8446,
"upload_time": "2016-04-11T21:21:32",
"url": "https://files.pythonhosted.org/packages/c6/a7/6d664ef2ad40a71fffb65f88f1b99052ae1443aaaf464e5a1445bdc42ff3/python-lambda-0.1.12.tar.gz"
}
],
"0.1.2": [
{
"comment_text": "",
"digests": {
"md5": "f72c052d20d27017f3eba2de34a52a04",
"sha256": "bcd5c21883ac54bb732c1581aca7387af824d210ef636c61fe835100e82dcf57"
},
"downloads": -1,
"filename": "python_lambda-0.1.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f72c052d20d27017f3eba2de34a52a04",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 7876,
"upload_time": "2016-03-29T21:28:30",
"url": "https://files.pythonhosted.org/packages/8e/8f/3ef1dd80d759b2db9798d22d2cb8ff4c839b8547ed397be44848a98d098b/python_lambda-0.1.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6f9044d67bafd15569663e7f1f9b3e8b",
"sha256": "149b1d07eb2b47b826bd85a84242a3bfea7182ddebe7f8a22b6ea9b067edae38"
},
"downloads": -1,
"filename": "python-lambda-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "6f9044d67bafd15569663e7f1f9b3e8b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5818,
"upload_time": "2016-03-29T21:28:01",
"url": "https://files.pythonhosted.org/packages/fc/05/eb317dd44baa54ec96ad150e4b88c4bffe9c4d64b5346dd9b7a23b978d78/python-lambda-0.1.2.tar.gz"
}
],
"0.1.3": [
{
"comment_text": "",
"digests": {
"md5": "bdcc661ce1955cdd226bcfd518962925",
"sha256": "1793f42e1a2f40500a701b7354e2f48a232bdc9309710bfd68d64f64c7daa4ed"
},
"downloads": -1,
"filename": "python_lambda-0.1.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "bdcc661ce1955cdd226bcfd518962925",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 7875,
"upload_time": "2016-03-29T21:31:24",
"url": "https://files.pythonhosted.org/packages/1f/3e/28d011026c669e6fe5fa9d45413d821c1b5f6eada45410779d887d419236/python_lambda-0.1.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e31a49d8fc1ea0af02d94ee5a50fc79c",
"sha256": "0c9123c33713850b0085f7bceff823f73af01eb1b82f122ff8ce6cb6c3155f05"
},
"downloads": -1,
"filename": "python-lambda-0.1.3.tar.gz",
"has_sig": false,
"md5_digest": "e31a49d8fc1ea0af02d94ee5a50fc79c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5824,
"upload_time": "2016-03-29T21:31:18",
"url": "https://files.pythonhosted.org/packages/2a/05/073c0e4617328388b2bf79abb7b81bf762baba6ac781cb10972a86875045/python-lambda-0.1.3.tar.gz"
}
],
"0.1.4": [
{
"comment_text": "",
"digests": {
"md5": "90a56d308658b844e9a918e7647871aa",
"sha256": "2c3908b12f4c3b536b42321cdff484338b65f962a03c64b0f42eac2356843bc5"
},
"downloads": -1,
"filename": "python_lambda-0.1.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "90a56d308658b844e9a918e7647871aa",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 7922,
"upload_time": "2016-03-29T21:45:29",
"url": "https://files.pythonhosted.org/packages/bd/34/3270d895c8d61fb96f2c4d31005aa9dc788738b9287379bf1fa715e5b110/python_lambda-0.1.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "931d50ccc8e9f4dbee7e1b7068fe8163",
"sha256": "b2b1a9a4ba774fba6b9c5cd4aeca36d9f6b67518c3448c725c46670330b66446"
},
"downloads": -1,
"filename": "python-lambda-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "931d50ccc8e9f4dbee7e1b7068fe8163",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5858,
"upload_time": "2016-03-29T21:45:22",
"url": "https://files.pythonhosted.org/packages/b6/4e/11e32bfed3974319bd2f1e0d437d716b117427bd2b6eb34da57b73399d3f/python-lambda-0.1.4.tar.gz"
}
],
"0.1.5": [
{
"comment_text": "",
"digests": {
"md5": "2e08df5003865471ccbe2f9ff99458a1",
"sha256": "f850ce0a17aaccbd9b6caadee129f9213d2914a4e8df60b58e45cd2a62382575"
},
"downloads": -1,
"filename": "python_lambda-0.1.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2e08df5003865471ccbe2f9ff99458a1",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 11066,
"upload_time": "2016-04-03T07:34:22",
"url": "https://files.pythonhosted.org/packages/9c/9e/ede8dff04325bb7fc9ed040f8c51c9a7afc6b7445285d11f025e6811206e/python_lambda-0.1.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "732d89614d4eeebd37c177878c90fd45",
"sha256": "4d719df862a6569643c95e2ed1d920aa275cdb5c54ba458d03a3768105f8e808"
},
"downloads": -1,
"filename": "python-lambda-0.1.5.tar.gz",
"has_sig": false,
"md5_digest": "732d89614d4eeebd37c177878c90fd45",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7635,
"upload_time": "2016-04-03T07:34:01",
"url": "https://files.pythonhosted.org/packages/a7/bb/c56a9ea66bde0484252b50fe8d88f69e6a1636dc84df675de9d7ef95187b/python-lambda-0.1.5.tar.gz"
}
],
"0.1.6": [
{
"comment_text": "",
"digests": {
"md5": "e7adfce8599ee20f229840d133e4cf7b",
"sha256": "35592ce34d4da6eb576d6bac54549c46f9ca72486b46d8ebd69c5cdad5c652d7"
},
"downloads": -1,
"filename": "python_lambda-0.1.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e7adfce8599ee20f229840d133e4cf7b",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 11116,
"upload_time": "2016-04-04T22:47:42",
"url": "https://files.pythonhosted.org/packages/38/a1/f87a735df500b30e6114c15556685dc86229cc8245a2b664011bcaaeb359/python_lambda-0.1.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8520f2cc465546a39676a3d7db46656e",
"sha256": "a561426abf59ba53fa8a84e9ad2c07030bf43b0a5d231a8a143c70439295784d"
},
"downloads": -1,
"filename": "python-lambda-0.1.6.tar.gz",
"has_sig": false,
"md5_digest": "8520f2cc465546a39676a3d7db46656e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7767,
"upload_time": "2016-04-04T22:47:36",
"url": "https://files.pythonhosted.org/packages/b9/22/15bddd2be4206a6ed5c940270c1079ec05cd15657f8835771b288920be16/python-lambda-0.1.6.tar.gz"
}
],
"0.1.7": [
{
"comment_text": "",
"digests": {
"md5": "ead4adf89465025fb118a2a138d4879b",
"sha256": "c86683e33a2090f8ce814ccd788708beb300f3158f771b943f2754d370220736"
},
"downloads": -1,
"filename": "python_lambda-0.1.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ead4adf89465025fb118a2a138d4879b",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 11168,
"upload_time": "2016-04-05T00:06:18",
"url": "https://files.pythonhosted.org/packages/0f/81/a6a22a6fa6297035f8ff0e15d7c125d83063d6f1fd598f46c415c55da5de/python_lambda-0.1.7-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "533473ad247d2c0d2e69af418a87985d",
"sha256": "be57ffb34b8778822e00b22b5db297939eb878212f52347ac057473654f6582a"
},
"downloads": -1,
"filename": "python-lambda-0.1.7.tar.gz",
"has_sig": false,
"md5_digest": "533473ad247d2c0d2e69af418a87985d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7821,
"upload_time": "2016-04-05T00:05:58",
"url": "https://files.pythonhosted.org/packages/31/1b/04cbda2728d7651f2537c1e201d0b09dc92cb27277b968db89a3e31eb4c0/python-lambda-0.1.7.tar.gz"
}
],
"0.1.8": [
{
"comment_text": "",
"digests": {
"md5": "0e5656b45ad97324b0ad7b9cfce50c65",
"sha256": "0c7afdbeff2a3e72751278a165502bd041b40b5e85be9f54d225875b0846dfb6"
},
"downloads": -1,
"filename": "python_lambda-0.1.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0e5656b45ad97324b0ad7b9cfce50c65",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 11796,
"upload_time": "2016-04-05T00:58:27",
"url": "https://files.pythonhosted.org/packages/3d/5e/295b2254b3f26a82fb08c9758b3b6e88ca72601aac856e84f6c30609d4c0/python_lambda-0.1.8-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "49804af7c688fc730c6910778826eb13",
"sha256": "b4deabfcc3dfd3c1f7494a95c45861d47fe0b3e0c8fa8cdc2175d3321fe65a86"
},
"downloads": -1,
"filename": "python-lambda-0.1.8.tar.gz",
"has_sig": false,
"md5_digest": "49804af7c688fc730c6910778826eb13",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8239,
"upload_time": "2016-04-05T00:58:05",
"url": "https://files.pythonhosted.org/packages/4d/db/6a66f3476835402dc6f61632ec7d70cd95fb13ae997c580e6658250986e6/python-lambda-0.1.8.tar.gz"
}
],
"0.1.9": [
{
"comment_text": "",
"digests": {
"md5": "0bb2b99ad0e29be1f8449f754ece1e79",
"sha256": "b92f8ad4e588ae44d573a1ef6debaec3ce2afc236ee465a5a7fced07762e0b68"
},
"downloads": -1,
"filename": "python_lambda-0.1.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0bb2b99ad0e29be1f8449f754ece1e79",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 11844,
"upload_time": "2016-04-05T01:17:11",
"url": "https://files.pythonhosted.org/packages/1f/74/39c1d09ebe5dd522fadc98b4c6bd1b6bbd55cdb55a539868fc0de8403c16/python_lambda-0.1.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "656e0f9dda7fb5670895aac8804de8b4",
"sha256": "8b7a6b858d8adc01baea3ac7da23a73b7176196af796b0aaa3cf30d00c3883b3"
},
"downloads": -1,
"filename": "python-lambda-0.1.9.tar.gz",
"has_sig": false,
"md5_digest": "656e0f9dda7fb5670895aac8804de8b4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8299,
"upload_time": "2016-04-05T01:17:01",
"url": "https://files.pythonhosted.org/packages/1b/65/6dccbfe3be22f07e7c9ba34c34ae804a296894175645bff41ec05d5f1fd3/python-lambda-0.1.9.tar.gz"
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "6158b8ed64d03efccdb31c4a885b1d42",
"sha256": "b09eaf2c381bee44c9d11b7ca1ec08620bee43b58f7ef07fc91675d09d40185c"
},
"downloads": -1,
"filename": "python_lambda-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6158b8ed64d03efccdb31c4a885b1d42",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 12179,
"upload_time": "2016-05-25T14:17:43",
"url": "https://files.pythonhosted.org/packages/c9/54/d9530a7db38f921c9cdc9f17b7dbef0f2e930cd32725a2dcbc17bbfdaae7/python_lambda-0.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2bdb1feec3e7fc784d35e0765e261c22",
"sha256": "dd8975bd5fc59b1dbcfe400309e87f988f7e4f1dec9fe4e1f0e7a60509af8b3f"
},
"downloads": -1,
"filename": "python-lambda-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "2bdb1feec3e7fc784d35e0765e261c22",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8577,
"upload_time": "2016-05-25T14:17:31",
"url": "https://files.pythonhosted.org/packages/c0/9e/91228824047628a3bace8ab31d76c7d8fa0db5785f9f257ba6d019cb9f59/python-lambda-0.2.0.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "a257804bb2fb5438e981465ccaafeeb7",
"sha256": "b0920fe4b46173f847150e7a4393550e848678ecf26c539a92f4e4bbf2aa1443"
},
"downloads": -1,
"filename": "python_lambda-0.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a257804bb2fb5438e981465ccaafeeb7",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 12249,
"upload_time": "2016-07-02T22:46:30",
"url": "https://files.pythonhosted.org/packages/5f/76/125caea30d3233eb04649d14fcda9f4e47ce848aa9922da101cc9534b062/python_lambda-0.3.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "70770df0bec2902fc8b2a260ae1d593b",
"sha256": "7e05ab97c373f5ba6c7245d51cfd49defcf73f82bcfcebf46e4082146638b5e8"
},
"downloads": -1,
"filename": "python-lambda-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "70770df0bec2902fc8b2a260ae1d593b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8628,
"upload_time": "2016-07-02T22:46:25",
"url": "https://files.pythonhosted.org/packages/e4/44/d442bc181399025215a2dd46299b9d3c9e89c4ac46cf1b009e5ca236acb8/python-lambda-0.3.0.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "d4eeb02e456364be59294a64ff8e4860",
"sha256": "96703b686d4e957942b2b2d72603e138898f5d2012cbdf98ffa3a8e670d284ac"
},
"downloads": -1,
"filename": "python_lambda-0.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d4eeb02e456364be59294a64ff8e4860",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 12249,
"upload_time": "2016-07-02T22:48:11",
"url": "https://files.pythonhosted.org/packages/fd/0e/1a7603c634ea0af7b4b604a5aecf3b22fc57cb5c548c9d78ba23f13a4862/python_lambda-0.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d3de74e7062a55ad41e78ff7c3e8d72f",
"sha256": "a4e84bbb0b23d6f6433163f4494053b0c05761addbe19b57d9c1aa42975c5161"
},
"downloads": -1,
"filename": "python-lambda-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "d3de74e7062a55ad41e78ff7c3e8d72f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8632,
"upload_time": "2016-07-02T22:48:03",
"url": "https://files.pythonhosted.org/packages/09/75/7f7c494454f187cab4919f84dc9be0a2dea3e85d19335268449936e3643a/python-lambda-0.4.0.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "4c682a03b05fcaff29b113807d1cbcb0",
"sha256": "b5dc0b038b7d500368ba6fa716175272bbdd3b6acbe99af8595c427a12ca65d4"
},
"downloads": -1,
"filename": "python_lambda-0.5.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4c682a03b05fcaff29b113807d1cbcb0",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 12711,
"upload_time": "2016-12-10T18:06:00",
"url": "https://files.pythonhosted.org/packages/73/fa/269c0e91c84c08a3b9e114fa5c32f2a42ec34ca22aa2f8d3bdd5a2c4ad38/python_lambda-0.5.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "588cb75e15b7d88ea8df02c7c0499cf9",
"sha256": "d53013e768caf6a8ed649b73c4f0d3dc681db6fe60ceccd3d0f6ef4b3cd5c728"
},
"downloads": -1,
"filename": "python-lambda-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "588cb75e15b7d88ea8df02c7c0499cf9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8935,
"upload_time": "2016-12-10T18:05:57",
"url": "https://files.pythonhosted.org/packages/5c/cb/3e8db1f324f04d46bf6bf4e708bd31a13d11a8486af2656e6a2a9625dbb5/python-lambda-0.5.0.tar.gz"
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "0ff0f681c3025f8401e66440c6369059",
"sha256": "aa37c6b0cf60f26e26b8e96e88541b2109bac206cd2b3ab7cfd37b6696cf297e"
},
"downloads": -1,
"filename": "python-lambda-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "0ff0f681c3025f8401e66440c6369059",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9190,
"upload_time": "2017-06-06T02:10:35",
"url": "https://files.pythonhosted.org/packages/8c/64/82ad20136ffa7e4b01f6a41b1491047347b9cb8ce08cc2e617d93f55425e/python-lambda-0.6.0.tar.gz"
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "fbab1b89afb8565ee772a02e058a4588",
"sha256": "c6ac66b7ed19d3863274550d69e391869a6e535a455c94b88feeb23b5a4bfe38"
},
"downloads": -1,
"filename": "python_lambda-0.7.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fbab1b89afb8565ee772a02e058a4588",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 13474,
"upload_time": "2017-06-06T02:20:38",
"url": "https://files.pythonhosted.org/packages/af/23/a17617d452c13420507b9ee6e73ce590f9a80b00504ff6b3ab397204dda1/python_lambda-0.7.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6271e7a003debc8b3d8ddfa7bf9b3e81",
"sha256": "89f3696b95e6382dede26e0c1de6c4d5ac3c3d4d4dec697f9d633981e893d534"
},
"downloads": -1,
"filename": "python-lambda-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "6271e7a003debc8b3d8ddfa7bf9b3e81",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9614,
"upload_time": "2017-06-06T02:16:41",
"url": "https://files.pythonhosted.org/packages/15/8e/823a78512976c4ae8615c28f651bd2615bbbaca06680af7d67bcbfb733f4/python-lambda-0.7.1.tar.gz"
}
],
"0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "24647df1b3ec6753e7176d1780eff78d",
"sha256": "7b0629dc5567b5dc936376bb9710bb7d284eb5241320e1872a2f8d55a2c2b427"
},
"downloads": -1,
"filename": "python_lambda-0.8.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "24647df1b3ec6753e7176d1780eff78d",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 14858,
"upload_time": "2017-06-11T04:13:06",
"url": "https://files.pythonhosted.org/packages/ca/de/c67c65643335f079624610d66981ab603e878e86c1c680fbb85429bea39e/python_lambda-0.8.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1574125cd8a194bb5ee0ff2ba4dc1559",
"sha256": "fac033b63f4331dab1958b20830c2dd7716a08e9bc687f1f1dbf150a3cda4875"
},
"downloads": -1,
"filename": "python-lambda-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "1574125cd8a194bb5ee0ff2ba4dc1559",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10441,
"upload_time": "2017-06-11T04:13:04",
"url": "https://files.pythonhosted.org/packages/1c/a9/8f0c8ae9867e68b952922bf65728a080e7924acebbd89733633b007a13b2/python-lambda-0.8.0.tar.gz"
}
],
"0.8.2": [
{
"comment_text": "",
"digests": {
"md5": "bc86c6e68dc908ec0f5febd6d4b79ddf",
"sha256": "c070ac6d135c2440ca902f997ec80e549b7fb8e4fb7ee6b80bb939f1b2ff5c96"
},
"downloads": -1,
"filename": "python_lambda-0.8.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "bc86c6e68dc908ec0f5febd6d4b79ddf",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 15391,
"upload_time": "2017-07-11T18:44:05",
"url": "https://files.pythonhosted.org/packages/29/3e/bcfdfb0709d09b66d98b24e8d29b2ec9e011ed5f1442babeb932af423592/python_lambda-0.8.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5077624f93786f68375ecd063cc717f7",
"sha256": "0f2dc4134c601102c8d4bb157ee2d31653c1e367475b1ff4f6f1a753109fbdab"
},
"downloads": -1,
"filename": "python-lambda-0.8.2.tar.gz",
"has_sig": false,
"md5_digest": "5077624f93786f68375ecd063cc717f7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10742,
"upload_time": "2017-07-11T18:44:03",
"url": "https://files.pythonhosted.org/packages/5b/4f/c2ea5540694b0737166519e8efb7ca2c592a018e15d14231a7e5e807c56f/python-lambda-0.8.2.tar.gz"
}
],
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "4055237a396434dc4cf297e9b07e5a0c",
"sha256": "c27ed17e2510f522471f357504ab3b0e6876ffc8a366d29ef0423bddb4661524"
},
"downloads": -1,
"filename": "python_lambda-1.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4055237a396434dc4cf297e9b07e5a0c",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 15867,
"upload_time": "2017-07-14T14:53:30",
"url": "https://files.pythonhosted.org/packages/0f/5a/59698473fae324ba7aabc60f05413e49720f50e31005fa745eee6685d24d/python_lambda-1.0.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "94ac330ec65aacc20b86088708b99bc0",
"sha256": "be0b569e430c45216f37d01384dccb8c099265bbdf391447a84d0b14d1e50e9e"
},
"downloads": -1,
"filename": "python-lambda-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "94ac330ec65aacc20b86088708b99bc0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11033,
"upload_time": "2017-07-14T14:53:28",
"url": "https://files.pythonhosted.org/packages/bf/aa/9876dd6991f4ab53dcc2d4bd15baf653afcb9acddbc1cc0adc9279c0c0c5/python-lambda-1.0.0.tar.gz"
}
],
"2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "b6992fdb5abdb53ba92ef1f3f867582c",
"sha256": "4a992af956195767e3b044d8b71f4d2e761242996065086e78dee09922782617"
},
"downloads": -1,
"filename": "python_lambda-2.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b6992fdb5abdb53ba92ef1f3f867582c",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 17230,
"upload_time": "2017-09-18T15:58:54",
"url": "https://files.pythonhosted.org/packages/73/b2/e5b76361363a459847f9388e4283173d542da93dae46afd767dba96d53cb/python_lambda-2.0.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "27d3fe7c17e1b9b2187cc315f775641b",
"sha256": "945108d436e48c059b5d56a193b581c525ec08807f15c7830a693e492604f8de"
},
"downloads": -1,
"filename": "python-lambda-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "27d3fe7c17e1b9b2187cc315f775641b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11974,
"upload_time": "2017-09-18T15:58:52",
"url": "https://files.pythonhosted.org/packages/93/de/fbdbf18e449ccedab977065f2d207874332b1a9a7a46c7f057feece903d7/python-lambda-2.0.0.tar.gz"
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "f89be9210ee90bc9225493022808c649",
"sha256": "09796911ec48a1ce21700f23cdc62ebfb8ec35e8e08058261d14f37a41ed0173"
},
"downloads": -1,
"filename": "python_lambda-2.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f89be9210ee90bc9225493022808c649",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 17618,
"upload_time": "2017-09-18T16:04:26",
"url": "https://files.pythonhosted.org/packages/61/fe/a7954549e8c7962f38157eed27dbc327fddfa6d0dd29c6f89e444470a7fd/python_lambda-2.1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "db3d76353fcb651987dc8d19734caf63",
"sha256": "8e8c5d69d1aa774ddc8ea288d391583f98242fa9d02bd2ab365b778c9d92cc29"
},
"downloads": -1,
"filename": "python-lambda-2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "db3d76353fcb651987dc8d19734caf63",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12287,
"upload_time": "2017-09-18T16:04:23",
"url": "https://files.pythonhosted.org/packages/eb/16/37089d216abd64c0be88054a46d068046757d7257684148331d17e5efae0/python-lambda-2.1.0.tar.gz"
}
],
"2.2.0": [
{
"comment_text": "",
"digests": {
"md5": "df09b3c046ff6c4fd92a9ff6d833db13",
"sha256": "a977333e8e46ce9c109d7815a49f687ca2bf9227e14fc2626badbf47d908f715"
},
"downloads": -1,
"filename": "python_lambda-2.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "df09b3c046ff6c4fd92a9ff6d833db13",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 18067,
"upload_time": "2017-10-01T23:26:30",
"url": "https://files.pythonhosted.org/packages/6a/55/b18bd0f968bf6b2e89fec63331ba0e719ddea924e1a8277d81c2e12a7d6d/python_lambda-2.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ef3f6f3e1eac249526225e0d831ebf71",
"sha256": "7b86a239b1db208783ef4fc32f7984b4c1c3023c9a8c6ea5e686f8b533f9d07e"
},
"downloads": -1,
"filename": "python-lambda-2.2.0.tar.gz",
"has_sig": false,
"md5_digest": "ef3f6f3e1eac249526225e0d831ebf71",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12614,
"upload_time": "2017-10-01T23:26:29",
"url": "https://files.pythonhosted.org/packages/0a/c5/69344aead316db3d11255968fa4899ca1380ce45827c6287b6020a2773b4/python-lambda-2.2.0.tar.gz"
}
],
"3.0.0": [
{
"comment_text": "",
"digests": {
"md5": "e0039dd8329ee1b666ebccd7ac618d8a",
"sha256": "87119d40d267f9772faa9778a5cec9e4b8773a35dc1ea1191da8ab63acf679e8"
},
"downloads": -1,
"filename": "python_lambda-3.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e0039dd8329ee1b666ebccd7ac618d8a",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 18231,
"upload_time": "2018-01-04T23:33:30",
"url": "https://files.pythonhosted.org/packages/2f/04/9fcb124b597bbea2fa97c890ea6dc441a59f94f68ff983baaa463294bfb7/python_lambda-3.0.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "09fcd74a3499414addc7cd617c725019",
"sha256": "214c7baf3c3ae7bc252ca26ce2199f22b7070c9939d42f44fb0d1961e6af832a"
},
"downloads": -1,
"filename": "python-lambda-3.0.0.tar.gz",
"has_sig": false,
"md5_digest": "09fcd74a3499414addc7cd617c725019",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12596,
"upload_time": "2018-01-04T23:33:29",
"url": "https://files.pythonhosted.org/packages/c4/fb/d91a92d2e19be2cb8a88add40e306a017b800fde93fc111e2648c740cedd/python-lambda-3.0.0.tar.gz"
}
],
"3.0.2": [
{
"comment_text": "",
"digests": {
"md5": "7a869879b0e4dd16d1b7aa503af37073",
"sha256": "608d333ee53bf4d8fdb0d120a0a8d11f22b06ee381b2ff27026e1af59d5b7f01"
},
"downloads": -1,
"filename": "python_lambda-3.0.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7a869879b0e4dd16d1b7aa503af37073",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 18211,
"upload_time": "2018-01-08T14:45:10",
"url": "https://files.pythonhosted.org/packages/67/e0/4f92cb526aba1b025ea955fe58264b030e2c770582be9f178cdd51490681/python_lambda-3.0.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "987cd2c766bf3e8afd5b2b627f721013",
"sha256": "61bfb90770eb9e8527ca9e68b8873c3fab96563a97e7e30e7eb78e1db7924ba1"
},
"downloads": -1,
"filename": "python-lambda-3.0.2.tar.gz",
"has_sig": false,
"md5_digest": "987cd2c766bf3e8afd5b2b627f721013",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12606,
"upload_time": "2018-01-08T14:45:09",
"url": "https://files.pythonhosted.org/packages/ee/aa/8089985cb6d78a8af8d58fe520e668b011478101680b7cfa75a9b70231a4/python-lambda-3.0.2.tar.gz"
}
],
"3.1.1": [
{
"comment_text": "",
"digests": {
"md5": "0b92c79b64a3930be3c81b0df9102da4",
"sha256": "2bdf562831b0decf89a1c5fcf53a021e20561eba0fb711cf284c26c21f45071b"
},
"downloads": -1,
"filename": "python_lambda-3.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0b92c79b64a3930be3c81b0df9102da4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 18379,
"upload_time": "2018-02-16T18:10:26",
"url": "https://files.pythonhosted.org/packages/3d/9c/8f2de51a7c4271a04e375b77bcb5a623d60ba8aef6f3dc41cce16136e7dd/python_lambda-3.1.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3bb0ca6aeaa0a76bc166294617de3a68",
"sha256": "a4c2380669e005a2a513185741ab401d33dc29452eec4e3ff3af3a5cf367e326"
},
"downloads": -1,
"filename": "python-lambda-3.1.1.tar.gz",
"has_sig": false,
"md5_digest": "3bb0ca6aeaa0a76bc166294617de3a68",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12924,
"upload_time": "2018-02-16T18:10:28",
"url": "https://files.pythonhosted.org/packages/5b/67/0b8e35cd18328602e6c4a9247a5e2f2f23f4650126f1798e39018e06388b/python-lambda-3.1.1.tar.gz"
}
],
"3.1.2": [
{
"comment_text": "",
"digests": {
"md5": "269f62bf192d6fb35e175b6a1c9dceef",
"sha256": "0b37e0429d85795c8b01704cdc42ca5b3b571f9a62f036e77458eec613a948ea"
},
"downloads": -1,
"filename": "python_lambda-3.1.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "269f62bf192d6fb35e175b6a1c9dceef",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 18295,
"upload_time": "2018-02-20T16:33:32",
"url": "https://files.pythonhosted.org/packages/fb/e2/b159d0c005c9db82edce641060a564e69a31c6893d03dfc46556f62f4503/python_lambda-3.1.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "de41eab2612e5ad4b22ef43dd225c118",
"sha256": "ffbb51160bee52f34e33d63a235dc7e7dc2af048f967f55ad00684e480faa322"
},
"downloads": -1,
"filename": "python-lambda-3.1.2.tar.gz",
"has_sig": false,
"md5_digest": "de41eab2612e5ad4b22ef43dd225c118",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12851,
"upload_time": "2018-02-20T16:33:26",
"url": "https://files.pythonhosted.org/packages/93/da/6e25142cb941dc676ad15b5afaf11368ac738c38367d823b65b2b8ed26b9/python-lambda-3.1.2.tar.gz"
}
],
"3.2.0": [
{
"comment_text": "",
"digests": {
"md5": "5537c633891680572991625f9f86858e",
"sha256": "95409b96bb275088e8727f76eec4ea94c35fedb094efbca57333b811a63da4ef"
},
"downloads": -1,
"filename": "python_lambda-3.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5537c633891680572991625f9f86858e",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 14510,
"upload_time": "2018-04-14T02:19:27",
"url": "https://files.pythonhosted.org/packages/e2/1f/d6ecef65aa64912c098d28a8215e93471670cb31ad0f589935c43432bd18/python_lambda-3.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7b88f83714c245ae25c5ea4621564c8b",
"sha256": "dd027ddcc66d38c458d011da6bc4f0a1b4679a776a61510835bd41c1d57c0961"
},
"downloads": -1,
"filename": "python-lambda-3.2.0.tar.gz",
"has_sig": false,
"md5_digest": "7b88f83714c245ae25c5ea4621564c8b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13701,
"upload_time": "2018-04-14T02:19:24",
"url": "https://files.pythonhosted.org/packages/dc/04/5ad3379e197073194c959654bff49eab560d0bdf806030aa820a25e1d86d/python-lambda-3.2.0.tar.gz"
}
],
"3.2.2": [
{
"comment_text": "",
"digests": {
"md5": "56b837be0997c06a5a0ecec01d047e0e",
"sha256": "ba6f57cac5c53973541b876502ecb6ddaa925e716f5ff518b9d6081bcc430aed"
},
"downloads": -1,
"filename": "python_lambda-3.2.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "56b837be0997c06a5a0ecec01d047e0e",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 18889,
"upload_time": "2018-04-17T23:06:55",
"url": "https://files.pythonhosted.org/packages/9c/52/ee349fe8c89e50f9ef3344d8577751d3b8a2a6786ad45b2e9914a446b827/python_lambda-3.2.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "cfd16fa76659caa246dad404d3f57075",
"sha256": "8a63f8be5005a9decd7699206c089f9b522b99b643f6cdc484b319e8ca02de4a"
},
"downloads": -1,
"filename": "python-lambda-3.2.2.tar.gz",
"has_sig": false,
"md5_digest": "cfd16fa76659caa246dad404d3f57075",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13684,
"upload_time": "2018-04-17T23:06:54",
"url": "https://files.pythonhosted.org/packages/bb/23/bef30ffccb384ff181b9b8f96ea951d53dbaa7d520f0d5ab489f635b6d40/python-lambda-3.2.2.tar.gz"
}
],
"3.2.4": [
{
"comment_text": "",
"digests": {
"md5": "a369c737285262803ae7a23c1ceb8753",
"sha256": "1d5caa354e5286fa157ba8f715b54632c3db2d0388fff008bf376ab0f7435325"
},
"downloads": -1,
"filename": "python_lambda-3.2.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a369c737285262803ae7a23c1ceb8753",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 14735,
"upload_time": "2018-09-07T16:23:29",
"url": "https://files.pythonhosted.org/packages/f8/72/0e1cad9e6b8c67c717a75f75b9e40a5f9b285c4c1a56f581e57d3141df67/python_lambda-3.2.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "039df787e6e2ca6f46e8760b494ce8b6",
"sha256": "75727add87ffde923c0c9c62dcc9a8665909952c0e3de948c80590fc7ba26045"
},
"downloads": -1,
"filename": "python-lambda-3.2.4.tar.gz",
"has_sig": false,
"md5_digest": "039df787e6e2ca6f46e8760b494ce8b6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13323,
"upload_time": "2018-09-07T16:23:28",
"url": "https://files.pythonhosted.org/packages/ed/cb/be4d43aa88f06e9a912d7a8f22030986fbb91d395627e9dc9c5791b48fd9/python-lambda-3.2.4.tar.gz"
}
],
"3.2.5": [
{
"comment_text": "",
"digests": {
"md5": "435f25bcbfbe944767ef2f7518ded394",
"sha256": "481c0636980afca9a456a2c97b2565f465753afda1cdca991fcf0a3f611078fa"
},
"downloads": -1,
"filename": "python_lambda-3.2.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "435f25bcbfbe944767ef2f7518ded394",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 15267,
"upload_time": "2018-09-19T19:56:18",
"url": "https://files.pythonhosted.org/packages/7d/29/fd0d796a85334e184cef419bd36fe89817ff4da43a02906af15fbca62a5f/python_lambda-3.2.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ac4d13be025822649d0a503e553246b8",
"sha256": "43da809bfbc91e4c4a17fae19ca6aa8b136cfa4d15d8e86597c5bab888386efb"
},
"downloads": -1,
"filename": "python-lambda-3.2.5.tar.gz",
"has_sig": false,
"md5_digest": "ac4d13be025822649d0a503e553246b8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15641,
"upload_time": "2018-09-19T19:56:17",
"url": "https://files.pythonhosted.org/packages/11/6f/3802ae0afd5a23e978e68754960dbaba5fedd2846a4e1a2202f081ad960a/python-lambda-3.2.5.tar.gz"
}
],
"3.2.6": [
{
"comment_text": "",
"digests": {
"md5": "5735aa06b1e6477066e526fe9e70badb",
"sha256": "e2686c84f925bbd7f439ad41ddfb453bca22bcef8f1f4c71569aaa9c0edd4142"
},
"downloads": -1,
"filename": "python_lambda-3.2.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5735aa06b1e6477066e526fe9e70badb",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 15425,
"upload_time": "2018-09-20T21:15:47",
"url": "https://files.pythonhosted.org/packages/60/72/003bd5f91bd50d1b1431f9850c2ea439a4ada9198842236033275733651f/python_lambda-3.2.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d81de69c43cfcb4416d401a110f87374",
"sha256": "5ed0abc86b0895f095e76fc80a5434be38119c3efc074a440dd4c32e25bfa6dd"
},
"downloads": -1,
"filename": "python-lambda-3.2.6.tar.gz",
"has_sig": false,
"md5_digest": "d81de69c43cfcb4416d401a110f87374",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15794,
"upload_time": "2018-09-20T21:15:45",
"url": "https://files.pythonhosted.org/packages/1c/10/b672d6f9e8d282c79f992ea9fe7bd3aabb3305bf691f640ea5c05a4d4e3d/python-lambda-3.2.6.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "5735aa06b1e6477066e526fe9e70badb",
"sha256": "e2686c84f925bbd7f439ad41ddfb453bca22bcef8f1f4c71569aaa9c0edd4142"
},
"downloads": -1,
"filename": "python_lambda-3.2.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5735aa06b1e6477066e526fe9e70badb",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 15425,
"upload_time": "2018-09-20T21:15:47",
"url": "https://files.pythonhosted.org/packages/60/72/003bd5f91bd50d1b1431f9850c2ea439a4ada9198842236033275733651f/python_lambda-3.2.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d81de69c43cfcb4416d401a110f87374",
"sha256": "5ed0abc86b0895f095e76fc80a5434be38119c3efc074a440dd4c32e25bfa6dd"
},
"downloads": -1,
"filename": "python-lambda-3.2.6.tar.gz",
"has_sig": false,
"md5_digest": "d81de69c43cfcb4416d401a110f87374",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15794,
"upload_time": "2018-09-20T21:15:45",
"url": "https://files.pythonhosted.org/packages/1c/10/b672d6f9e8d282c79f992ea9fe7bd3aabb3305bf691f640ea5c05a4d4e3d/python-lambda-3.2.6.tar.gz"
}
]
}