Skip to content

Examples#

Index > IVS > Examples

Auto-generated documentation for IVS type annotations stubs module types-aiobotocore-ivs.

Client#

Implicit type annotations#

Can be used with types-aiobotocore[ivs] package installed.

Write your IVS code as usual, type checking and code completion should work out of the box.

# IVSClient usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("ivs") as client:  # (1)
    result = await client.batch_get_channel()  # (2)
  1. client: IVSClient
  2. result: BatchGetChannelResponseTypeDef
# ListChannelsPaginator usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("ivs") as client:  # (1)
    paginator = client.get_paginator("list_channels")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: IVSClient
  2. paginator: ListChannelsPaginator
  3. item: ListChannelsResponseTypeDef

Explicit type annotations#

With types-aiobotocore-lite[ivs] or a standalone types_aiobotocore_ivs package, you have to explicitly specify client: IVSClient type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

# IVSClient usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_ivs.client import IVSClient
from types_aiobotocore_ivs.type_defs import BatchGetChannelResponseTypeDef
from types_aiobotocore_ivs.type_defs import BatchGetChannelRequestRequestTypeDef


session = get_session()

async with session.create_client("ivs") as client:
    client: IVSClient
    kwargs: BatchGetChannelRequestRequestTypeDef = {...}
    result: BatchGetChannelResponseTypeDef = await client.batch_get_channel(**kwargs)
# ListChannelsPaginator usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_ivs.client import IVSClient
from types_aiobotocore_ivs.paginator import ListChannelsPaginator
from types_aiobotocore_ivs.type_defs import ListChannelsResponseTypeDef


session = get_session()

async with session.create_client("ivs") as client:
    client: IVSClient
    paginator: ListChannelsPaginator = client.get_paginator("list_channels")
    async for item in paginator.paginate(...):
        item: ListChannelsResponseTypeDef
        print(item)