Skip to content

Examples#

Index > Mobile > Examples

Auto-generated documentation for Mobile type annotations stubs module types-aiobotocore-mobile.

Client#

Implicit type annotations#

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

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

# MobileClient usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("mobile") as client:  # (1)
    result = await client.create_project()  # (2)
  1. client: MobileClient
  2. result: CreateProjectResultTypeDef
# ListBundlesPaginator usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("mobile") as client:  # (1)
    paginator = client.get_paginator("list_bundles")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: MobileClient
  2. paginator: ListBundlesPaginator
  3. item: ListBundlesResultTypeDef

Explicit type annotations#

With types-aiobotocore-lite[mobile] or a standalone types_aiobotocore_mobile package, you have to explicitly specify client: MobileClient 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.

# MobileClient usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_mobile.client import MobileClient
from types_aiobotocore_mobile.type_defs import CreateProjectResultTypeDef
from types_aiobotocore_mobile.type_defs import CreateProjectRequestRequestTypeDef


session = get_session()

async with session.create_client("mobile") as client:
    client: MobileClient
    kwargs: CreateProjectRequestRequestTypeDef = {...}
    result: CreateProjectResultTypeDef = await client.create_project(**kwargs)
# ListBundlesPaginator usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_mobile.client import MobileClient
from types_aiobotocore_mobile.paginator import ListBundlesPaginator
from types_aiobotocore_mobile.type_defs import ListBundlesResultTypeDef


session = get_session()

async with session.create_client("mobile") as client:
    client: MobileClient
    paginator: ListBundlesPaginator = client.get_paginator("list_bundles")
    async for item in paginator.paginate(...):
        item: ListBundlesResultTypeDef
        print(item)