Skip to main content

AWS Lambda Python Runtime Interface Client

We have open-sourced a set of software packages, Runtime Interface Clients (RIC), that implement the Lambda Runtime API, allowing you to seamlessly extend your preferred base images to be Lambda compatible. The Lambda Runtime Interface Client is a lightweight interface that allows your runtime to receive requests from and send requests to the Lambda service.

The Lambda Python Runtime Interface Client is vended through pip. You can include this package in your preferred base image to make that base image Lambda compatible.

Requirements

The Python Runtime Interface Client package currently supports Python versions:

  • 3.9.x up to and including 3.13.x

Usage

Creating a Docker Image for Lambda with the Runtime Interface Client

First step is to choose the base image to be used. The supported Linux OS distributions are:

  • Amazon Linux 2
  • Alpine
  • Debian
  • Ubuntu

Then, the Runtime Interface Client needs to be installed. We provide both wheel and source distribution. If the OS/pip version used does not support manylinux2014 wheels, you will also need to install the required build dependencies. Also, your Lambda function code needs to be copied into the image.

# Include global arg in this stage of the build
ARG FUNCTION_DIR

# Install aws-lambda-cpp build dependencies
RUN apt-get update && \
  apt-get install -y \
  g++ \
  make \
  cmake \
  unzip \
  libcurl4-openssl-dev

# Copy function code
RUN mkdir -p ${FUNCTION_DIR}
COPY app/* ${FUNCTION_DIR}

# Install the function's dependencies
RUN pip install \
    --target ${FUNCTION_DIR} \
        awslambdaric

The next step would be to set the ENTRYPOINT property of the Docker image to invoke the Runtime Interface Client and then set the CMD argument to specify the desired handler.

Example Dockerfile (to keep the image light we use a multi-stage build):

# Define custom function directory
ARG FUNCTION_DIR="/function"

FROM public.ecr.aws/docker/library/python:buster as build-image

# Include global arg in this stage of the build
ARG FUNCTION_DIR

# Install aws-lambda-cpp build dependencies
RUN apt-get update && \
  apt-get install -y \
  g++ \
  make \
  cmake \
  unzip \
  libcurl4-openssl-dev

# Copy function code
RUN mkdir -p ${FUNCTION_DIR}
COPY app/* ${FUNCTION_DIR}

# Install the function's dependencies
RUN pip install \
    --target ${FUNCTION_DIR} \
        awslambdaric


FROM public.ecr.aws/docker/library/python:buster

# Include global arg in this stage of the build
ARG FUNCTION_DIR
# Set working directory to function root directory
WORKDIR ${FUNCTION_DIR}

# Copy in the built dependencies
COPY --from=build-image ${FUNCTION_DIR} ${FUNCTION_DIR}

ENTRYPOINT [ "/usr/local/bin/python", "-m", "awslambdaric" ]
CMD [ "app.handler" ]

Example Python handler app.py:

def handler(event, context):
    return "Hello World!"

Local Testing

To make it easy to locally test Lambda functions packaged as container images we open-sourced a lightweight web-server, Lambda Runtime Interface Emulator (RIE), which allows your function packaged as a container image to accept HTTP requests. You can install the AWS Lambda Runtime Interface Emulator on your local machine to test your function. Then when you run the image function, you set the entrypoint to be the emulator.

To install the emulator and test your Lambda function

  1. From your project directory, run the following command to download the RIE from GitHub and install it on your local machine.
mkdir -p ~/.aws-lambda-rie && \
    curl -Lo ~/.aws-lambda-rie/aws-lambda-rie https://github.com/aws/aws-lambda-runtime-interface-emulator/releases/latest/download/aws-lambda-rie && \
    chmod +x ~/.aws-lambda-rie/aws-lambda-rie
  1. Run your Lambda image function using the docker run command.
docker run -d -v ~/.aws-lambda-rie:/aws-lambda -p 9000:8080 \
    --entrypoint /aws-lambda/aws-lambda-rie \
    myfunction:latest \
        /usr/local/bin/python -m awslambdaric app.handler

This runs the image as a container and starts up an endpoint locally at http://localhost:9000/2015-03-31/functions/function/invocations.

  1. Post an event to the following endpoint using a curl command:
curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{}'

This command invokes the function running in the container image and returns a response.

Alternately, you can also include RIE as a part of your base image. See the AWS documentation on how to Build RIE into your base image.

Development

Building the package

Clone this repository and run:

make init
make build

Running tests

Make sure the project is built:

make init build

Then,

  • to run unit tests: make test
  • to run integration tests: make test-integ
  • to run smoke tests: make test-smoke

Troubleshooting

While running integration tests, you might encounter the Docker Hub rate limit error with the following body:

You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limits

To fix the above issue, consider authenticating to a Docker Hub account by setting the Docker Hub credentials as below CodeBuild environment variables.

DOCKERHUB_USERNAME=<dockerhub username>
DOCKERHUB_PASSWORD=<dockerhub password>

Recommended way is to set the Docker Hub credentials in CodeBuild job by retrieving them from AWS Secrets Manager.

Security

If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our vulnerability reporting page. Please do not create a public github issue.

License

This project is licensed under the Apache-2.0 License.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

awslambdaric-4.0.2.tar.gz (4.5 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

awslambdaric-4.0.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (272.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

awslambdaric-4.0.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (268.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

awslambdaric-4.0.2-cp315-cp315t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

awslambdaric-4.0.2-cp315-cp315t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

awslambdaric-4.0.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (357.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

awslambdaric-4.0.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (355.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

awslambdaric-4.0.2-cp315-cp315-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

awslambdaric-4.0.2-cp315-cp315-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

awslambdaric-4.0.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (356.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

awslambdaric-4.0.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (354.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

awslambdaric-4.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

awslambdaric-4.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

awslambdaric-4.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (356.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

awslambdaric-4.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (355.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

awslambdaric-4.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

awslambdaric-4.0.2-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

awslambdaric-4.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (355.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

awslambdaric-4.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (353.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

awslambdaric-4.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

awslambdaric-4.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

awslambdaric-4.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (355.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

awslambdaric-4.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (353.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

awslambdaric-4.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

awslambdaric-4.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

awslambdaric-4.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (355.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

awslambdaric-4.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (353.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

awslambdaric-4.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

awslambdaric-4.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

awslambdaric-4.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (355.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

awslambdaric-4.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (353.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

awslambdaric-4.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

awslambdaric-4.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

awslambdaric-4.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (354.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

awslambdaric-4.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (352.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

awslambdaric-4.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

awslambdaric-4.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

awslambdaric-4.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (354.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

awslambdaric-4.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (352.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file awslambdaric-4.0.2.tar.gz.

File metadata

  • Download URL: awslambdaric-4.0.2.tar.gz
  • Upload date:
  • Size: 4.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.17

File hashes

Hashes for awslambdaric-4.0.2.tar.gz
Algorithm Hash digest
SHA256 92cceacf2e37d455dd1c90a771b0b518f336971dace4cb771a5e43f9a595e867
MD5 0f0a9c385510c9541413ed1e39868f79
BLAKE2b-256 34b25334340790a87e0c2220e2a2ce3a3febe5d24c750efd4fe3dc383cf09ee3

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7bba8afbebe417148e7e12ef5916de9ee2600385f2610987ea12e8f63165c645
MD5 0fab4b30e1a79bae6832ffc1d379ab0d
BLAKE2b-256 46659a5889cc469ad66ea221cbaa9845de12de901581b5cbc2723cb4557a95a7

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 479edccfeab844911560bec2380d2a26881280587b14d08c1f4bd3568c94c35d
MD5 d48d22091f29e5ebbeeac53542f6f88d
BLAKE2b-256 ae47dbeb33e77f1c276bc2fd8302e1dfdbe275641623403ce4a771241d236d6d

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74939ef7b0e47a2801747dda0285aedd02394bfe21a3e4b081dc96dce5cb335e
MD5 195a27508fe22d99c8623732e42075b6
BLAKE2b-256 1ba1a4e3d401ba991bdd53515827caa4e2505d99372cf3d0517654f21d233d4a

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fb5ba045d206a4c0583d4885a2293bfc252be67af4c39e868dabb93bd83db0f
MD5 d9d59ac996115f1a0bae553dd5cf99b6
BLAKE2b-256 993caa400934fb1fe77edfe43e57e83574bb06b0a1df7b0c1c61c5a43fcbb580

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 939a45fa096f700c8d7441b2924e0250b98cba6d5bb7e9ebcb5974d1d8c1e318
MD5 81b18326e47c9eef5ee8a3629115d124
BLAKE2b-256 034d032a10eef23aba3da7e4dcf9e72d248729cbb2c0bd6dab7e19863619872f

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e895aa069e413c4c6eb32a70c188d0c4cd01debf3330a4272bcef71da46b8372
MD5 a92784169571672e9605f9d328de455e
BLAKE2b-256 2a5d19de623162204ef35d01f4416e3402e58009da0850eaced4d129df707d02

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 597253283b449ddcf761c0e895d3e822511b1b336e749a435d4cfec1201099bd
MD5 22f9149e46b920f0e96a6b485458b634
BLAKE2b-256 2f4bd82a9d23213ab01abfb84489206602ba12586f2fb1d869b806fdd1d46ed8

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc1b9955d12976eca40693fcd06bc663fa0ecf4e74003a61a8b8fc5f3a7f1693
MD5 ef71aa3c3f640bc49e64ce016be0e381
BLAKE2b-256 b6a187bde859a0cf20ee25ae2216433a6b6422ab4e381bfc7600be5af98e13ef

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bd1858cc1e65e3ac0bad983704838e23ea9e7bc4f3bc083654855b9dcdcaac35
MD5 856dd0318821f6546dda5386440b7cd5
BLAKE2b-256 e65a272f0f0700769ed8b199c2fab70d9cfcaf2164b49791fe9e662e41ca149b

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 84e3710db039d90f743e6ce8c04c5593a398e9a5e6768f46fd045368cecfd0bb
MD5 aa5977111dedde724c95256d120f957c
BLAKE2b-256 564fd004ebdf987b73985bf42036bb89f54d50d99751f2fd563e6f92031129f9

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9207703cb8b737bbfddba8c0e22586ef18ffca277ee3360543ce3f053b9ec95e
MD5 7be9ab1f4aab538e572808bf9d60e248
BLAKE2b-256 8382fbf42e741d827c7830f7b99f071e00a4a57ad862df381be296f5b1b25ef4

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1952feb5f3e7a2d5dea0a18481c1fe5363fcfde0e129b57ce3c947f738b9677e
MD5 e4f2309f52943168c1305f5263970b4f
BLAKE2b-256 3ce0ad612e81d95c90dc892b65ed46dd028e6d7cab8d41919f8a3f54854ce59b

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4116de07b2828279205b255ff5d389b9440d3f807376ffcaf0492ced6cc99378
MD5 393ea5d927c32a4991f3dd66be418f26
BLAKE2b-256 264536102f4c72e61ecaf420d168f2d1585484393c0a628f849b572911257fe9

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 145f6eecd9de9984e6e25271b2ae941ca4899622dfe34bf0f26bb2fc496ba948
MD5 c79fab2111735f0ae8c0e875b06ad6ce
BLAKE2b-256 7618e14ff2cafbbf7983e768ade50e72ef9489f0751e2cc89bb6b990337a3878

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adb42b7390508f32df8471f08af0170a9349cd6c12f30e28e21954abcd8aed4c
MD5 1ba5e33a35de47babfd6d0ae52178d53
BLAKE2b-256 82619e3d86b1871e0b620c5c3c290ebbbc57542638db106e8ff20662992d844d

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a48d9e34b5842bebcf048a1faedb1f78da32b346e1313bc0462dc4efadbee7f
MD5 84dc09dce4065d61a2c4109c4560b390
BLAKE2b-256 648d92bf2fbc1b90b9e82d47614371974cd2e74d673aff615e9c0b5e57da69f6

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a87f9ab88084670dcbdd299a5fa6dd35084b734c19c45644ea1a25dc295d5005
MD5 e189334a0a0b400a4cb1bae0ceeb01bf
BLAKE2b-256 a97e695942fe096fc25c1759a29a9f401d5ed77d678b72c95ea65dd422e57313

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ee64b5fb8d5829c4c176a28977dbb86d2ed566aaec5ae2dc6b158546441b2bc3
MD5 398066e5a3f0f8875b2e9dfd86ad7006
BLAKE2b-256 bff14ecca6725ebd95a2913734b3d09c40a156b29aceeaa0cf7b1e3ec2a501a8

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57f30f54f22d595b74e4ebc2aacf80e9c87fdd886d594e351a68e10981fbc594
MD5 68f4b3479b9710b516cf9784ddcd94fb
BLAKE2b-256 9a59a9470035ead4126062d1bd721238f9217e5d44d8ddcd11fd4b618b3139d6

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da4d4cf0e4fe5fcfa9a6fcb7592b117f4445cd01bad0696b2936fed18fcf3b68
MD5 18359cb3a71150c365f636741c7b0359
BLAKE2b-256 350a503d0dcc9249c9fe735b657d9bff5b7f9d4071c8e3bfe69c6c19e68921ab

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f0071102d613d877113c4ef9868c1865d235cea0acce9def06d52952c31f9f51
MD5 3e11bc8a7279482d7f569f7054fe6784
BLAKE2b-256 2b0a14ed9d38570e1471c182162381beab9051caed09b6d1ba1f11749421738c

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ce0a40940135547d64d5083705a866f934b6ed6ad8f7855de282b368c8e896d5
MD5 c05f2b699f33135d41c13e64bcd4db4e
BLAKE2b-256 df9d32991e9def4742031f78d4536f20b98ab6c2bec8d122be901aa0f4b48082

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b73e49e6f40a117a99205f2818dbeeb0778f43cba5412b8562e0bbf23a578cc5
MD5 00fd026ffcf9e057a4a2601e530db694
BLAKE2b-256 a0cf16f6813739b921ec483199ec20c299ceab7cc65e5d78acc51352ccb26bd6

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d11da5921737b3bc509225c3a6e93e0bd48c85735b5552e20d25ffa05615687c
MD5 30bb6e4192bf96309224e569fe5e391a
BLAKE2b-256 514afa4a44985e4faa3032b8a426a8559d7d45531f62f19a99cbe43775ab8118

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 eac7f8e72406c51c34f8800fd6c97e44c3486358c3855af822ca4591526f3de6
MD5 5f3b51c05483921f52110f6f47811cba
BLAKE2b-256 3185579fa0dc67f19e1a84c2685540d9782c954d684202dd4f025ff7c3cf3e58

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 07c3b547cd332b973722187233a921661d81fc5e8b3cc947a2315ccd4f29b3a5
MD5 2d41c5d9dae889dec3f8c8fa4f23e6cf
BLAKE2b-256 842aac6f4d0f14855c5b88744adaf76526676bfeb14147bb95dd6e6939a3f5a5

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93627317eefcf597634f3df7e848063d5fad85572aa0cab645a00f1fb9c98b4f
MD5 bb81a22b93d741408c4b5a341e82a3a6
BLAKE2b-256 92a95037dcef7187bcca43dfd7cd88950282ca12c85fcfbf9e5fe4154f0d8b61

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5d10220e03115cd9eacc93e9a8cf7830854c9a6c2ffdb910e928e6a65203913
MD5 0fece433620c93fca34a9b7ba76b11aa
BLAKE2b-256 75362858132e0291addb14968015996ecd46df41f0eea80502f00fd6518579db

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 671c11c37066bef283230b01be8b18a41bb4ce1368c426f364302f3b14501038
MD5 9646ef068bcd6180f3fad57a674f478d
BLAKE2b-256 7cd0044493a446d6ee4bd7e129282bba7ac58f188a829db74081a379e2bc3db6

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 eb4a485b4fa900cac1e50968a52bf530cffcda24099da4d8f0e041ead736fab5
MD5 62c39d15763074185b272c0909f66477
BLAKE2b-256 58b3a8d81748c33201ef273883ee7d6299e4e3ce51dfe5aaa40b741941480bf0

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d3c26474035ccfb8663c6c6ba75348fc0bb45cbbaa86309b39263854d13ce05
MD5 0aac2f5a462c2e2430dd43e60748592f
BLAKE2b-256 842de7c591d7071a014c52da07f457eb87372c8c2908a77995916c0a503bea01

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f48d400990afa96a25a5d8a5e592f892ef9713120a0c6dd69a626ef5e2f7b78
MD5 bdc81a1b9bd6110809f2c53dce9ab42b
BLAKE2b-256 27f0566fe678a5877176be08e74c3adfd1546e74857a45b7a158d5cb395bb73b

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e49982b4c07530952ada2f937e093eb912bd8bfa50bcef24d43ccc3e8ca14544
MD5 5619790f24bf0da48aaedabd178fdcac
BLAKE2b-256 3fd914aba233af1d5488a02577a38508d20db813bfa1158b2c1eb6c6388a17ff

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6ba7461cbb7f45aa459e27f259d1a4af30cfc24261f9f46079112d01fcae863f
MD5 4faccb30cf90cf9cf7526f4858e1e898
BLAKE2b-256 af70d914db8493c8b37894ec8b15b478f4d39eaa49015ed94f5eb43a8e97ae44

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbdfe85087d73900a126cdacf31d680b57b3e2c778e1d4a4b23f01577508d475
MD5 87922aa4c6a7c61b630cba2fbd5f307a
BLAKE2b-256 6cdd544d5793768ca579b0b2e67eb0562a6a55d0151809dac86108f66852fbda

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74ccf358bb74a7c968e4b7b4ff1ddf794f2e3dfdd3284da3d7ce5a4e45f570a9
MD5 8b22584bd5d93db34df07bd8df0a8a22
BLAKE2b-256 dfd438a3ceedfb3c70e10b852b5278ff6f5fa1f29c44a8f57213ec3015f39a58

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7b352cc2af4431de517edbc93804c0d074ecd3d2f6863d3e527645f270f1a2ba
MD5 91e3b3e354aeb25a0f19dd7ebc9a6bba
BLAKE2b-256 3bdef28aa50b0109d8a8dbd9d4bc577e570872df7ddedbade841e9902d4bfc6e

See more details on using hashes here.

File details

Details for the file awslambdaric-4.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awslambdaric-4.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 505d9fe72ca1c58092cc32ec54cc3b3b81015bfb2008024e964eb7630cfd15b0
MD5 3c53225dd565dbffe387e114430cab5e
BLAKE2b-256 1d7637b7dad87e5de8048004dde4be54a922e47f3d55102b469e12d4d81468e5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page