Metadata-Version: 2.1
Name: mypy-boto3-lambda
Version: 0.1.3
Summary: Mypy-friendly boto3 type annotations for lambda service.
Home-page: https://github.com/vemel/mypy_boto3
Author: Vlad Emelianov
Author-email: vlad.emelianov.nz@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Typing :: Typed
Description-Content-Type: text/markdown

# Mypy-boto3 lambda submodule

Provides type annotations for boto3 lambda service

## Installation

```bash
pip install mypy-boto3[lambda]
```

## Usage

```python
import boto3
from mypy_boto3.lambda_ import Client, ServiceResource

client: Client = boto3.client("lambda")
resource: ServiceResource = boto3.resource("lambda")

# now your IDE can suggest you method and arguemnt names
# and mypy can check types
```



