# mypy-boto3-ses
Mypy-friendly auto-generated type annotations for `boto3 ses 1.10.36` service.
More information can be found [here](https://github.com/vemel/mypy_boto3).
- [mypy-boto3-ses](#mypy-boto3-ses)
- [How to use](#how-to-use)
- [Type checking](#type-checking)
- [Code auto-complete](#code-auto-complete)
- [How it works](#how-it-works)
## How to use
### Type checking
Make sure you have [mypy](https://github.com/python/mypy) installed and activated in your IDE.
Install `boto3-stubs` for `ses` service.
```bash
python -m pip install boto3-stubs[mypy-boto3-ses]
# build service index. You should execute this command everytime
# you update boto3-stubs or install/remove services
python -m python -m mypy_boto3
```
Use `boto3` with `mypy_boto3` in your project and enjoy type checking.
```python
import boto3
from mypy_boto3 import ses
# alternative import if you do not want to install mypy_boto3 package
# import mypy_boto3_ses as ses
# Use this client as usual, now mypy can check if your code is valid.
# Check if your IDE supports function overloads,
# you probably do not need explicit type annotations
# client = boto3.client("ses")
client: ses.Client = boto3.client("ses")
# works for session as well
session = boto3.session.Session(region="us-west-1")
session_client: ses.Client = session.client("ses")
# Waiters need type annotation on creation
identity_exists_waiter: ses.IdentityExistsWaiter = client.get_waiter("identity_exists")
# Paginators need type annotation on creation
list_configuration_sets_paginator: ses.ListConfigurationSetsPaginator = client.get_paginator("list_configuration_sets")
list_custom_verification_email_templates_paginator: ses.ListCustomVerificationEmailTemplatesPaginator = client.get_paginator("list_custom_verification_email_templates")
list_identities_paginator: ses.ListIdentitiesPaginator = client.get_paginator("list_identities")
list_receipt_rule_sets_paginator: ses.ListReceiptRuleSetsPaginator = client.get_paginator("list_receipt_rule_sets")
list_templates_paginator: ses.ListTemplatesPaginator = client.get_paginator("list_templates")
```
## How it works
Fully automated [builder](https://github.com/vemel/mypy_boto3) carefully generates
type annotations for each service, patiently waiting for `boto3` updates. It delivers
a drop-in type annotations for you and makes sure that:
- Latest version of `boto3` is used.
- Each public class and method of every `boto3` service gets valid type annotations
extracted from latest documentation (blame `botocore` docs if types are incorrect).
- Type annotations include up-to-date documentation.
- Code is processed by [black](https://github.com/psf/black) for readability.
## Submodules
- `master` - Install `mypy-boto3` package.
挣扎的蓝藻
- 粉丝: 14w+
- 资源: 15万+
最新资源
- 使用 tensorflow.js 在浏览器中直接运行 YOLOv5.zip
- 【保姆级教程】使用MemoTrace将微信聊天记录导出成Word或html
- 使用 Tensorflow 后端进行人体检测和可选跟踪 .zip
- 基于python实现轨道交通客流预测系统+项目源码+文档说明
- 使用 Tensorflow 从头开始训练 YOLOv2 对象检测器 .zip
- 基于Vue2.0+Vuex+Axios+Node.js+Express+MySQL实现京东移动web商城.zip
- Unity-波数-杀怪-学习
- 使用 TensorFlow 2.x 的 Yolo v4.zip
- 机器视觉基础-基于 二值图像背景减法为模型 实现多目标追踪+MATLAB源码+文档说明
- 使用 TensorFlow 2 实现 YOLOv5.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
评论0