Vendor provides an AWS service API for building binary Python packages for use in Lambda functions.
Project description
===============
Python Vendor
===============
This package provides an AWS service API for building compiled Python packages,
ready for use in your own AWS Lambda functions.
Requirements
============
In addition to Python package requirements that will automatically be dealt
with during package installation, the vendor package assumes that the AWS CLI
is installed and configured on your system. By default, vendor makes use of
your AWS configuration as the ``aws`` command would.
To install awscli, please refer to the official documentation:
https://docs.aws.amazon.com/cli/latest/userguide/
Installation
============
Programmatic Deployment
-----------------------
The service package module provides a class for dealing with the Vendor stack
deployment. To create the stack using the default settings, simply do the
following:
::
>>> from vendor.service import VendorService
>>> vs = VendorService()
>>> vs.service()
{'ServiceURL': 'https://abcde01234.execute-api.region.amazonaws.com/api/',
'Version': '0.1'}
If all goes well, you will get back a dictionary containing the service
``Version`` and the ``ServiceURL``, which can be used to call your newly created
API. If the stacks already exist and are up-to-date, then the function will
simply return the information, rather than recreate it all over again.
Manual Deployment
-----------------
First, deploy the Vendor-deployment stack to prepare a bucket for Serverless
artifacts.
::
aws cloudformation deploy --stack-name Vendor-deployment --template-file vendor/aws/vendor-deployment.yml
The deployment bucket name can be found from the stack outputs.
::
aws cloudformation describe-stacks --stack-name Vendor-deployment
Next we can package and deploy the Vendor service.
::
aws cloudformation package --template-file vendor/aws/vendor.yml --s3-bucket {Vendor-deployment.BucketName} --output-template-file /tmp/vendorpk.yml
aws cloudformation deploy --stack-name Vendor --template-file /tmp/vendorpk.yml --capabilities CAPABILITY_IAM
Again, the service URL can be found from the stack outputs.
::
aws cloudformation describe-stacks --stack-name Vendor
Development
===========
Build toolchains
----------------
Because Lambda runs on a readonly filesystem, building is hard as the build
tools are not available on the system. Therefore, we have cheated a little and
instead spawn our own 'Lambda' on a self-destructing EC2 instance. This is done
by passing a script into the EC2 user-data and setting the instance to
terminate on shutdown, which the script does on exit.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vendor-0.1.tar.gz
(11.9 kB
view details)
Built Distribution
vendor-0.1-py2.py3-none-any.whl
(13.7 kB
view details)
File details
Details for the file vendor-0.1.tar.gz
.
File metadata
- Download URL: vendor-0.1.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b94221531404a04a3cff6b8f2f45a6b6d5a3db6b4ded773ee08f9b111aa65e6 |
|
MD5 | d23b1b919ff087dd97e61e1593ab8600 |
|
BLAKE2b-256 | f12383c6fa95f3d9276d837d145bca6739ffa380932b39237ddf6c888f2eeaab |
File details
Details for the file vendor-0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: vendor-0.1-py2.py3-none-any.whl
- Upload date:
- Size: 13.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3ddb7e0ba334d3e73ed8fbfd437c243526b8dfdd98206e1e1a581361b72a6f1 |
|
MD5 | 41efc44d83f2452961807398b1f98060 |
|
BLAKE2b-256 | 21f35719cd2314fd66a0605218929bfda6de4edf4e2450d773b65adade8ce9e3 |