Metadata-Version: 2.1
Name: mypy-boto3-organizations
Version: 0.1.8
Summary: Mypy-friendly boto3 type annotations for organizations 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
Requires-Dist: mypy-boto3

# mypy-boto3-organizations submodule

Provides type annotations for `boto3.organizations` service

## Installation

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

## Usage

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

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

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



