Metadata-Version: 2.1
Name: mypy-boto3-elastictranscoder
Version: 0.1.6
Summary: Mypy-friendly boto3 type annotations for elastictranscoder 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 elastictranscoder submodule

Provides type annotations for boto3 elastictranscoder service

## Installation

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

## Usage

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

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

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



