Skip to content

Examples#

Index > MarketplaceCatalog > Examples

Auto-generated documentation for MarketplaceCatalog type annotations stubs module types-aiobotocore-marketplace-catalog.

Client#

Implicit type annotations#

Can be used with types-aioboto3[marketplace-catalog] package installed.

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

Client method usage example#

# MarketplaceCatalogClient usage example

from aioboto3.session import Session


session = Session()

async with session.client("marketplace-catalog") as client:  # (1)
    result = await client.batch_describe_entities()  # (2)
  1. client: MarketplaceCatalogClient
  2. result: BatchDescribeEntitiesResponseTypeDef

Paginator usage example#

# ListChangeSetsPaginator usage example

from aioboto3.session import Session


session = Session()

async with session.client("marketplace-catalog") as client:  # (1)
    paginator = client.get_paginator("list_change_sets")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: MarketplaceCatalogClient
  2. paginator: ListChangeSetsPaginator
  3. item: ListChangeSetsResponseTypeDef

Explicit type annotations#

With types-aioboto3-lite[marketplace-catalog] or a standalone types_aiobotocore_marketplace_catalog package, you have to explicitly specify client: MarketplaceCatalogClient 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.

Client method usage example#

# MarketplaceCatalogClient usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_marketplace_catalog.client import MarketplaceCatalogClient
from types_aiobotocore_marketplace_catalog.type_defs import BatchDescribeEntitiesResponseTypeDef
from types_aiobotocore_marketplace_catalog.type_defs import BatchDescribeEntitiesRequestTypeDef


session = Session()

client: MarketplaceCatalogClient
async with session.client("marketplace-catalog") as client:  # (1)
    kwargs: BatchDescribeEntitiesRequestTypeDef = {...}  # (2)
    result: BatchDescribeEntitiesResponseTypeDef = await client.batch_describe_entities(**kwargs)  # (3)
  1. client: MarketplaceCatalogClient
  2. kwargs: BatchDescribeEntitiesRequestTypeDef
  3. result: BatchDescribeEntitiesResponseTypeDef

Paginator usage example#

# ListChangeSetsPaginator usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_marketplace_catalog.client import MarketplaceCatalogClient
from types_aiobotocore_marketplace_catalog.paginator import ListChangeSetsPaginator
from types_aiobotocore_marketplace_catalog.type_defs import ListChangeSetsResponseTypeDef


session = Session()

client: MarketplaceCatalogClient
async with session.client("marketplace-catalog") as client:  # (1)
    paginator: ListChangeSetsPaginator = client.get_paginator("list_change_sets")  # (2)
    async for item in paginator.paginate(...):
        item: ListChangeSetsResponseTypeDef
        print(item)  # (3)
  1. client: MarketplaceCatalogClient
  2. paginator: ListChangeSetsPaginator
  3. item: ListChangeSetsResponseTypeDef