# mypy-boto3-iotsitewise
[![PyPI - mypy-boto3-iotsitewise](https://img.shields.io/pypi/v/mypy-boto3-iotsitewise.svg?color=blue)](https://pypi.org/project/mypy-boto3-iotsitewise)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mypy-boto3-iotsitewise.svg?color=blue)](https://pypi.org/project/mypy-boto3-iotsitewise)
[![Docs](https://img.shields.io/readthedocs/mypy-boto3-builder.svg?color=blue)](https://mypy-boto3-builder.readthedocs.io/)
Type annotations for
[boto3.IoTSiteWise 1.14.10](https://boto3.amazonaws.com/v1/documentation/api/1.14.10/reference/services/iotsitewise.html#IoTSiteWise) service
compatible with [mypy](https://github.com/python/mypy), [VSCode](https://code.visualstudio.com/),
[PyCharm](https://www.jetbrains.com/pycharm/) and other tools.
Generated by [mypy-boto3-buider 2.2.0](https://github.com/vemel/mypy_boto3_builder).
More information can be found on [boto3-stubs](https://pypi.org/project/boto3-stubs/) page.
## How to install
Make sure you have [mypy](https://github.com/python/mypy) installed and activated in your IDE.
Install `boto3-stubs` for `IoTSiteWise` service.
```bash
python -m pip install boto3-stubs[iotsitewise]
```
## How to use
### Client annotations
`IoTSiteWiseClient` provides annotations for `boto3.client("iotsitewise")`.
```python
import boto3
from mypy_boto3_iotsitewise import IoTSiteWiseClient
from mypy_boto3_iotsitewise.paginator import (
GetAssetPropertyAggregatesPaginator,
GetAssetPropertyValueHistoryPaginator,
ListAccessPoliciesPaginator,
ListAssetModelsPaginator,
ListAssetsPaginator,
ListAssociatedAssetsPaginator,
ListDashboardsPaginator,
ListGatewaysPaginator,
ListPortalsPaginator,
ListProjectAssetsPaginator,
ListProjectsPaginator,
)
from mypy_boto3_iotsitewise.type_defs import AccessPolicySummaryTypeDef, ...
from mypy_boto3_iotsitewise.waiter import (
AssetActiveWaiter,
AssetModelActiveWaiter,
AssetModelNotExistsWaiter,
AssetNotExistsWaiter,
PortalActiveWaiter,
PortalNotExistsWaiter,
)
client: IoTSiteWiseClient = boto3.client("iotsitewise")
# now client usage is checked by mypy and IDE should provide code auto-complete
# works for session as well
session = boto3.session.Session(region="us-west-1")
session_client: IoTSiteWiseClient = session.client("iotsitewise")
```
### Paginators annotations
`mypy_boto3_iotsitewise.paginator` module contains type annotations for all paginators.
```python
client: IoTSiteWiseClient = boto3.client("iotsitewise")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
get_asset_property_aggregates_paginator: GetAssetPropertyAggregatesPaginator = client.get_paginator("get_asset_property_aggregates")
get_asset_property_value_history_paginator: GetAssetPropertyValueHistoryPaginator = client.get_paginator("get_asset_property_value_history")
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
list_asset_models_paginator: ListAssetModelsPaginator = client.get_paginator("list_asset_models")
list_assets_paginator: ListAssetsPaginator = client.get_paginator("list_assets")
list_associated_assets_paginator: ListAssociatedAssetsPaginator = client.get_paginator("list_associated_assets")
list_dashboards_paginator: ListDashboardsPaginator = client.get_paginator("list_dashboards")
list_gateways_paginator: ListGatewaysPaginator = client.get_paginator("list_gateways")
list_portals_paginator: ListPortalsPaginator = client.get_paginator("list_portals")
list_project_assets_paginator: ListProjectAssetsPaginator = client.get_paginator("list_project_assets")
list_projects_paginator: ListProjectsPaginator = client.get_paginator("list_projects")
```
### Waiters annotations
`mypy_boto3_iotsitewise.waiter` module contains type annotations for all waiters.
```python
client: IoTSiteWiseClient = boto3.client("iotsitewise")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
asset_active_waiter: AssetActiveWaiter = client.get_waiter("asset_active")
asset_model_active_waiter: AssetModelActiveWaiter = client.get_waiter("asset_model_active")
asset_model_not_exists_waiter: AssetModelNotExistsWaiter = client.get_waiter("asset_model_not_exists")
asset_not_exists_waiter: AssetNotExistsWaiter = client.get_waiter("asset_not_exists")
portal_active_waiter: PortalActiveWaiter = client.get_waiter("portal_active")
portal_not_exists_waiter: PortalNotExistsWaiter = client.get_waiter("portal_not_exists")
```
### Typed dictionations
`mypy_boto3_iotsitewise.type_defs` module contains structures and shapes assembled
to typed dictionaries for additional type checking.
```python
def get_structure() -> AccessPolicySummaryTypeDef:
return {
...
}
```
## Dynamic type annotations
`mypy_boto3` command generates `boto3.client/resource` type annotations for
`mypy_boto3_iotsitewise` and other installed services.
```bash
# Run this command after you add or remove service packages
python -m mypy_boto3
```
Generated type annotations provide overloads for `boto3.client` and `boto3.resource`,
`boto3.Session.client` and `boto3.Session.resource` functions,
so explicit type annotations are not needed.
- `mypy` supports function overloads as expected
- `PyCharm` also supports function overloads, but consumes a lot of RAM, use carefully if you have many services installed
- `VSCode` does not currently support function overloads, use explicit type annotations
```python
# Type is discovered correctly by mypy and PyCharm
# VSCode still needs explicit type annotations
client = boto3.client("iotsitewise")
session_client = boto3.Session().client("iotsitewise")
```
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
资源分类:Python库 所属语言:Python 资源全名:mypy-boto3-iotsitewise-1.14.10.0.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
资源推荐
资源详情
资源评论
收起资源包目录
mypy-boto3-iotsitewise-1.14.10.0.tar.gz (18个子文件)
mypy-boto3-iotsitewise-1.14.10.0
PKG-INFO 8KB
setup.cfg 38B
setup.py 2KB
mypy_boto3_iotsitewise
type_defs.py 29KB
py.typed 0B
waiter.py 4KB
client.py 30KB
__main__.py 0B
__init__.py 4KB
paginator.py 11KB
version.py 57B
README.md 6KB
mypy_boto3_iotsitewise.egg-info
PKG-INFO 8KB
requires.txt 45B
not-zip-safe 1B
SOURCES.txt 566B
top_level.txt 23B
dependency_links.txt 1B
共 18 条
- 1
资源评论
挣扎的蓝藻
- 粉丝: 14w+
- 资源: 15万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 微软AICopilot上线助推生成式AI发展,光通信产业链迎高增长契机
- AIGC技术落地进程加快,传媒行业迎来发展机遇
- 2023年上半年通信行业报告:新基建与AI驱动的结构性成长机会
- CRMRESTBuilder-2-5-0-0-managed.zip
- AIGC技术对中国智能投顾市场的推进与应用前景分析
- 生成式AI助力商汤亏损收窄:各板块业绩分析与展望
- 生成式AI商业应用加速,通信行业迎新机遇
- 基于spring+SQL Serve+jsp实现的网上订餐系统【源码+数据库】
- 生成式AI:企业CEO的应用指南及风险考量
- EasyPlayer.wasm EasyPlayer-element.min.js
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功