<a id="types-aiobotocore-medialive"></a>
# types-aiobotocore-medialive
[](https://pypi.org/project/types-aiobotocore-medialive/)
[](https://pypi.org/project/types-aiobotocore-medialive/)
[](https://youtype.github.io/types_aiobotocore_docs/)
[](https://pypistats.org/packages/types-aiobotocore-medialive)

Type annotations for
[aiobotocore MediaLive 2.24.0](https://pypi.org/project/aiobotocore/)
compatible with [VSCode](https://code.visualstudio.com/),
[PyCharm](https://www.jetbrains.com/pycharm/),
[Emacs](https://www.gnu.org/software/emacs/),
[Sublime Text](https://www.sublimetext.com/),
[mypy](https://github.com/python/mypy),
[pyright](https://github.com/microsoft/pyright) and other tools.
Generated with
[mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).
More information can be found on
[types-aiobotocore](https://pypi.org/project/types-aiobotocore/) page and in
[types-aiobotocore-medialive docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_medialive/).
See how it helps you find and fix potential bugs:

- [types-aiobotocore-medialive](#types-aiobotocore-medialive)
- [How to install](#how-to-install)
- [Generate locally (recommended)](<#generate-locally-(recommended)>)
- [From PyPI with pip](#from-pypi-with-pip)
- [How to uninstall](#how-to-uninstall)
- [Usage](#usage)
- [VSCode](#vscode)
- [PyCharm](#pycharm)
- [Emacs](#emacs)
- [Sublime Text](#sublime-text)
- [Other IDEs](#other-ides)
- [mypy](#mypy)
- [pyright](#pyright)
- [Pylint compatibility](#pylint-compatibility)
- [Explicit type annotations](#explicit-type-annotations)
- [Client annotations](#client-annotations)
- [Paginators annotations](#paginators-annotations)
- [Waiters annotations](#waiters-annotations)
- [Literals](#literals)
- [Type definitions](#type-definitions)
- [How it works](#how-it-works)
- [What's new](#what's-new)
- [Implemented features](#implemented-features)
- [Latest changes](#latest-changes)
- [Versioning](#versioning)
- [Thank you](#thank-you)
- [Documentation](#documentation)
- [Support and contributing](#support-and-contributing)
<a id="how-to-install"></a>
## How to install
<a id="generate-locally-(recommended)"></a>
### Generate locally (recommended)
You can generate type annotations for `aiobotocore` package locally with
`mypy-boto3-builder`. Use
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
isolation.
1. Run mypy-boto3-builder in your package root directory:
`uvx --with 'aiobotocore==2.24.0' mypy-boto3-builder`
2. Select `aiobotocore` AWS SDK.
3. Add `MediaLive` service.
4. Use provided commands to install generated packages.
<a id="from-pypi-with-pip"></a>
### From PyPI with pip
Install `types-aiobotocore` for `MediaLive` service.
```bash
# install with aiobotocore type annotations
python -m pip install 'types-aiobotocore[medialive]'
# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aiobotocore-lite[medialive]'
# standalone installation
python -m pip install types-aiobotocore-medialive
```
<a id="how-to-uninstall"></a>
## How to uninstall
```bash
python -m pip uninstall -y types-aiobotocore-medialive
```
<a id="usage"></a>
## Usage
<a id="vscode"></a>
### VSCode
- Install
[Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
- Install
[Pylance extension](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)
- Set `Pylance` as your Python Language Server
- Install `types-aiobotocore[medialive]` in your environment:
```bash
python -m pip install 'types-aiobotocore[medialive]'
```
Both type checking and code completion should now work. No explicit type
annotations required, write your `aiobotocore` code as usual.
<a id="pycharm"></a>
### PyCharm
> ⚠️ Due to slow PyCharm performance on `Literal` overloads (issue
> [PY-40997](https://youtrack.jetbrains.com/issue/PY-40997)), it is recommended
> to use
> [types-aiobotocore-lite](https://pypi.org/project/types-aiobotocore-lite/)
> until the issue is resolved.
> ⚠️ If you experience slow performance and high CPU usage, try to disable
> `PyCharm` type checker and use [mypy](https://github.com/python/mypy) or
> [pyright](https://github.com/microsoft/pyright) instead.
> ⚠️ To continue using `PyCharm` type checker, you can try to replace
> `types-aiobotocore` with
> [types-aiobotocore-lite](https://pypi.org/project/types-aiobotocore-lite/):
```bash
pip uninstall types-aiobotocore
pip install types-aiobotocore-lite
```
Install `types-aiobotocore[medialive]` in your environment:
```bash
python -m pip install 'types-aiobotocore[medialive]'
```
Both type checking and code completion should now work.
<a id="emacs"></a>
### Emacs
- Install `types-aiobotocore` with services you use in your environment:
```bash
python -m pip install 'types-aiobotocore[medialive]'
```
- Install [use-package](https://github.com/jwiegley/use-package),
[lsp](https://github.com/emacs-lsp/lsp-mode/),
[company](https://github.com/company-mode/company-mode) and
[flycheck](https://github.com/flycheck/flycheck) packages
- Install [lsp-pyright](https://github.com/emacs-lsp/lsp-pyright) package
```elisp
(use-package lsp-pyright
:ensure t
:hook (python-mode . (lambda ()
(require 'lsp-pyright)
(lsp))) ; or lsp-deferred
:init (when (executable-find "python3")
(setq lsp-pyright-python-executable-cmd "python3"))
)
```
- Make sure emacs uses the environment where you have installed
`types-aiobotocore`
Type checking should now work. No explicit type annotations required, write
your `aiobotocore` code as usual.
<a id="sublime-text"></a>
### Sublime Text
- Install `types-aiobotocore[medialive]` with services you use in your
environment:
```bash
python -m pip install 'types-aiobotocore[medialive]'
```
- Install [LSP-pyright](https://github.com/sublimelsp/LSP-pyright) package
Type checking should now work. No explicit type annotations required, write
your `aiobotocore` code as usual.
<a id="other-ides"></a>
### Other IDEs
Not tested, but as long as your IDE supports `mypy` or `pyright`, everything
should work.
<a id="mypy"></a>
### mypy
- Install `mypy`: `python -m pip install mypy`
- Install `types-aiobotocore[medialive]` in your environment:
```bash
python -m pip install 'types-aiobotocore[medialive]'
```
Type checking should now work. No explicit type annotations required, write
your `aiobotocore` code as usual.
<a id="pyright"></a>
### pyright
- Install `pyright`: `npm i -g pyright`
- Install `types-aiobotocore[medialive]` in your environment:
```bash
python -m pip install 'types-aiobotocore[medialive]'
```
Optionally, you can install `types-aiobotocore` to `typings` directory.
Type checking should now work. No explicit type annotations required, write
your `aiobotocore` code as usual.
<a id="pylint-compatibility"></a>
### Pylint compatibility
It is totally safe to use `TYPE_CHECKING` flag in order to avoid
`types-aiobotocore-medialive` dependency in production. However, there is an
issue in `pylint` that it complains about undefined variables. To fix it, set
all types to `object` in non-`TYPE_CHECKING` mode.
```python
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from types_aiobotocore_ec2 import EC2Client, EC2ServiceResource
from types_aiobotocore_ec2.waiters import BundleTaskCompleteWaiter
from types_aiobotocore_ec2.paginators import DescribeVolumesPaginator
else:
EC2Client = object
EC2ServiceResource = object
BundleTaskCompleteWaiter = object
DescribeVolumesPaginator = object
...
```
<a id="explicit-type-annotations"></a>
## Explicit type annotations
<a id="client-annotations"></a>
### Client annotations
`MediaLiveClient` provides annotations for
`session.create_client("medialive")`.
```python
from aiobotocore.session import get_session
from types_aiobotocore_medialive import MediaLiveClient
session = get_session()
async with session.create_client("medialive") as client:
client: MediaLiveClient
# now client usage is checked by mypy and IDE should provide code completion
```
<a id="paginators-annotations"></a>
### Paginators annotations
`types_aiobotocore_medialive.paginator` module contains type annotations for
all paginators.
```python
from aiobotocore.session import get_session
from types_aiobotocore_medialive import MediaLiveClient
from types_aiobotocore_medialive.paginator import (
DescribeSchedulePaginator,
ListChannelPlacementGroupsPaginator,
ListChannelsPaginator,
ListCloudWatchAlarmTemplateGroupsPaginator,
ListCloudWatchAlarmTemplatesPaginator,
ListClustersPaginator,
ListEventBridgeRuleTemplateGroupsPaginator,
ListEventBridgeRuleTemplatesPaginator,
ListInputDeviceTransfersPaginator,
ListInputDevicesPaginator,
ListInputSecurityGroupsPaginator,
ListInputsPaginator,
ListMultiplexProgramsPaginator,
ListMultiplexesPaginator,
ListNetworksPaginator,
ListNodesPaginator,
ListOfferingsPaginator,
ListReservationsPaginator,
ListSdiSourcesPaginator,
ListSignalMapsPaginator,
)
session = get_session()
async with session.create_client("medialive") as client:
client: MediaLiveClient
# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
describe_schedule_paginator: DescribeSchedulePaginator = client.get_paginator(
"describe_schedule"
)
list_channel_placement_groups_paginator: ListChannelPlacementGroupsPaginator = (
client.get_paginator("list_channel_placement_groups")
)
list_channels_paginator: ListChannelsPaginator = client.get_paginator("list_channels")
list_cloud_watch_alarm_template_groups_paginator: ListCloudWatchAlarmTemplateGroupsPaginator = (
client.get_paginator("list_cloud_watch_alarm_template_groups")
)
list_cloud_watch_alarm_templates_paginator: ListCloudWatchAlarmTemplatesPaginator = (
client.get_paginator("list_cloud_watch_alarm_templates")
)
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
list_event_bridge_rule_template_groups_paginator: ListEventBridgeRuleTemplateGroupsPaginator = (
client.get_paginator("list_event_bridge_rule_template_groups")
)
list_event_bridge_rule_templates_paginator: ListEventBridgeRuleTemplatesPaginator = (
client.get_paginator("list_event_bridge_rule_templates")
)
list_input_device_transfers_paginator: ListInputDeviceTransfersPaginator = client.get_paginator(
"list_input_device_transfers"
)
list_input_devices_paginator: ListInputDevicesPaginator = client.get_paginator(
"list_input_devices"
)
list_input_security_groups_paginator: ListInputSecurityGroupsPaginator = client.get_paginator(
"list_input_security_groups"
)
list_inputs_paginator: ListInputsPaginator = client.get_paginator("list_inputs")
list_multiplex_programs_paginator: ListMultiplexProgramsPaginator = client.get_paginator(
"list_multiplex_programs"
)
list_multiplexes_paginator: ListMultiplexesPaginator = client.get_paginator("list_multiplexes")
list_networks_paginator: ListNetworksPaginator = client.get_paginator("list_networks")
list_nodes_paginator: ListNodesPaginator = client.get_paginator("list_nodes")
list_offerings_paginator: ListOfferingsPaginator = client.get_paginator("list_offerings")
list_reservations_paginator: ListReservationsPaginator = client.get_paginator(
"list_reservations"
)
list_sdi_sources_paginator: ListSdiSourcesPaginator = client.get_paginator("list_sdi_sources")
list_signal_maps_paginator: ListSignalMapsPaginator = client.get_paginator("list_signal_maps")
```
<a id="waiters-annotations"></a>
### Waiters annotations
`types_aiobotocore_medialive.waiter` module contains type annotations for all
waiters.
```python
from aiobotocore.session import get_session
from types_aiobotocore_medialive.client import MediaLiveClient
from types_aiobotocore_medialive.waiter import (
ChannelCreatedWaiter,
ChannelDeletedWaiter,
ChannelPlacementGroupAssignedWaiter,
ChannelPlacementGroupDeletedWaiter,
ChannelPlacementGroupUnassignedWaiter,
ChannelRunningWaiter,
ChannelStoppedWaiter,
ClusterCreatedWaiter,
ClusterDeletedWaiter,
InputAttachedWaiter,
InputDeletedWaiter,
InputDetachedWaiter,
MultiplexCreatedWaiter,
MultiplexDeletedWaiter,
MultiplexRunningWaiter,
MultiplexStoppedWaiter,
NodeDeregisteredWaiter,
NodeRegisteredWaiter,
SignalMapCreatedWaiter,
SignalMapMonitorDeletedWaiter,
SignalMapMonitorDeployedWaiter,
SignalMapUpdatedWaiter,
)
session = get_session()
async with session.create_client("medialive") as client:
client: MediaLiveClient
# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
channel_created_waiter: ChannelCreatedWaiter = client.get_waiter("channel_created")
channel_deleted_waiter: ChannelDeletedWaiter = client.get_waiter("channel_deleted")
channel_placement_group_assigned_waiter: ChannelPlacementGroupAssignedWaiter = (
client.get_waiter("channel_placement_group_assigned")
)
channel_placement_group_deleted_waiter: ChannelPlacementGroupDeletedWaiter = client.get_waiter(
"channel_placement_group_deleted"
)
channel_placement_group_unassigned_waiter: ChannelPlacementGroupUnassignedWaiter = (
client.get_waiter("channel_placement_group_unassigned")
)
channel_running_waiter: ChannelRunningWaiter = client.get_waiter("channel_running")
channel_stopped_waiter: ChannelStoppedWaiter = client.get_waiter("channel_stopped")
cluster_created_waiter: ClusterCreatedWaiter = client.get_waiter("cluster_created")
cluster_deleted_waiter: ClusterDeletedWaiter = client.get_waiter("cluster_deleted")
input_attached_waiter: InputAttachedWaiter = client.get_waiter("input_attached")
input_deleted_waiter: InputDeletedWaiter = client.get_waiter("input_deleted")
input_detached_waiter: InputDetachedWaiter = client.get_waiter("input_detached")
multiplex_created_waiter: MultiplexCreatedWaiter = client.get_waiter("multiplex_created")
multiplex_deleted_waiter: MultiplexDeletedWaiter = client.get_waiter("multiplex_deleted")
multiplex_running_waiter: MultiplexRunningWaiter = client.get_waiter("multiplex_running")
multiplex_stopped_waiter: MultiplexStoppedWaiter = client.get_waiter("multiplex_stopped")
node_deregistered_waiter: NodeDeregisteredWaiter = client.get_waiter("node_deregistered")
node_registered_waiter: NodeRegisteredWaiter = client.get_waiter("node_registered")
signal_map_created_waiter: SignalMapCreatedWaiter = client.get_waiter("signal_map_created")
signal_map_monitor_deleted_waiter: SignalMapMonitorDeletedWaiter = client.get_waiter(
"signal_map_monitor_deleted"
)
signal_map_monitor_deployed_waiter: SignalMapMonitorDeployedWaiter = client.get_waiter(
"signal_map_monitor_deployed"
)
signal_map_updated_waiter: SignalMapUpdatedWaiter = client.get_waiter("signal_map_updated")
```
<a id="literals"></a>
### Literals
`types_aiobotocore_medialive.literals` module contains literals extracted from
shapes that can be used in user code for type checking.
Full list of `MediaLive` Literals can be found in
[docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_medialive/literals/).
```python
from types_aiobotocore_medialive.literals import AacCodingModeType
def check_value(value: AacCodingModeType) -> bool: ...
```
<a id="type-definitions"></a>
### Type definitions
`types_aiobotocore_medialive.type_defs` module contains structures and shapes
assembled to typed dictionaries and unions for additional type checking.
Full list of `MediaLive` TypeDefs can be found in
[docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_medialive/type_defs/).
```python
# TypedDict usage example
from types_aiobotocore_medialive.type_defs import AacSettingsTypeDef
def get_value() -> AacSettingsTypeDef:
return {
"Bitrate": ...,
}
```
<a id="how-it-works"></a>
## How it works
Fully automated
[mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder) carefully
generates type annotations for each service, patiently waiting for
`aiobotocore` updates. It delivers drop-in type annotations for you and makes
sure that:
- All available `aiobotocore` services are covered.
- Each public class and method of every `aiobotocore` service gets valid type
annotations extracted from `botocore` schemas.
- Type annotations include up-to-date documentation.
- Link to documentation is provided for every method.
- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
<a id="what's-new"></a>
## What's new
<a id="implemented-features"></a>
### Implemented features
- Fully type annotated `boto3`, `botocore`, `aiobotocore` and `aioboto3`
libraries
- `mypy`, `pyright`, `VSCode`, `PyCharm`, `Sublime Text` and `Emacs`
compatibility
- `Client`, `ServiceResource`, `Resource`, `Waiter` `Paginator` type
annotations for each service
- Generated `TypeDefs` for each service
- Generated `Literals` for each service
- Auto discovery of types for `boto3.client` and `boto3.resource` calls
- Auto discovery of types for `session.client` and `session.resource` calls
- Auto discovery of types for `client.get_waiter` and `client.get_paginator`
calls
- Auto discovery of types for `ServiceResource` and `Resource` collections
- Auto discovery of types for `aiobotocore.Session.create_client` calls
<a id="latest-changes"></a>
### Latest changes
Builder changelog can be found in
[Releases](https://github.com/youtype/mypy_boto3_builder/releases).
<a id="versioning"></a>
## Versioning
`types-aiobotocore-medialive` version is the same as related `aiobotocore`
version and follows
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
<a id="thank-you"></a>
## Thank you
- [Allie Fitter](https://github.com/alliefitter) for
[boto3-type-annotations](https://pypi.org/project/boto3-type-annotations/),
this package is based on top of his work
- [black](https://github.com/psf/black) developers for an awesome formatting
tool
- [Timothy Edmund Crosley](https://github.com/timothycrosley) for
[isort](https://github.com/PyCQA/isort) and how flexible it is
- [mypy](https://github.com/python/mypy) developers for doing all dirty work
for us
- [pyright](https://github.com/microsoft/pyright) team for the new era of typed
Python
<a id="documentation"></a>
## Documentation
All services type annotations can be found in
[aiobotocore docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_medialive/)
<a id="support-and-contributing"></a>
## Support and contributing
This package is auto-generated. Please reports any bugs or request new features
in [mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder/issues/)
repository.
Raw data
{
"_id": null,
"home_page": "https://github.com/youtype/mypy_boto3_builder",
"name": "types-aiobotocore-medialive",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "aiobotocore medialive aiobotocore-stubs type-annotations mypy typeshed autocomplete",
"author": "Vlad Emelianov",
"author_email": "vlad.emelianov.nz@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/0e/e5/94317829f8ae7c43894abe36685d713a859855a106762fb2689cd8f62d13/types_aiobotocore_medialive-2.24.0.tar.gz",
"platform": null,
"description": "<a id=\"types-aiobotocore-medialive\"></a>\n\n# types-aiobotocore-medialive\n\n[](https://pypi.org/project/types-aiobotocore-medialive/)\n[](https://pypi.org/project/types-aiobotocore-medialive/)\n[](https://youtype.github.io/types_aiobotocore_docs/)\n[](https://pypistats.org/packages/types-aiobotocore-medialive)\n\n\n\nType annotations for\n[aiobotocore MediaLive 2.24.0](https://pypi.org/project/aiobotocore/)\ncompatible with [VSCode](https://code.visualstudio.com/),\n[PyCharm](https://www.jetbrains.com/pycharm/),\n[Emacs](https://www.gnu.org/software/emacs/),\n[Sublime Text](https://www.sublimetext.com/),\n[mypy](https://github.com/python/mypy),\n[pyright](https://github.com/microsoft/pyright) and other tools.\n\nGenerated with\n[mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).\n\nMore information can be found on\n[types-aiobotocore](https://pypi.org/project/types-aiobotocore/) page and in\n[types-aiobotocore-medialive docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_medialive/).\n\nSee how it helps you find and fix potential bugs:\n\n\n\n- [types-aiobotocore-medialive](#types-aiobotocore-medialive)\n - [How to install](#how-to-install)\n - [Generate locally (recommended)](<#generate-locally-(recommended)>)\n - [From PyPI with pip](#from-pypi-with-pip)\n - [How to uninstall](#how-to-uninstall)\n - [Usage](#usage)\n - [VSCode](#vscode)\n - [PyCharm](#pycharm)\n - [Emacs](#emacs)\n - [Sublime Text](#sublime-text)\n - [Other IDEs](#other-ides)\n - [mypy](#mypy)\n - [pyright](#pyright)\n - [Pylint compatibility](#pylint-compatibility)\n - [Explicit type annotations](#explicit-type-annotations)\n - [Client annotations](#client-annotations)\n - [Paginators annotations](#paginators-annotations)\n - [Waiters annotations](#waiters-annotations)\n - [Literals](#literals)\n - [Type definitions](#type-definitions)\n - [How it works](#how-it-works)\n - [What's new](#what's-new)\n - [Implemented features](#implemented-features)\n - [Latest changes](#latest-changes)\n - [Versioning](#versioning)\n - [Thank you](#thank-you)\n - [Documentation](#documentation)\n - [Support and contributing](#support-and-contributing)\n\n<a id=\"how-to-install\"></a>\n\n## How to install\n\n<a id=\"generate-locally-(recommended)\"></a>\n\n### Generate locally (recommended)\n\nYou can generate type annotations for `aiobotocore` package locally with\n`mypy-boto3-builder`. Use\n[uv](https://docs.astral.sh/uv/getting-started/installation/) for build\nisolation.\n\n1. Run mypy-boto3-builder in your package root directory:\n `uvx --with 'aiobotocore==2.24.0' mypy-boto3-builder`\n2. Select `aiobotocore` AWS SDK.\n3. Add `MediaLive` service.\n4. Use provided commands to install generated packages.\n\n<a id=\"from-pypi-with-pip\"></a>\n\n### From PyPI with pip\n\nInstall `types-aiobotocore` for `MediaLive` service.\n\n```bash\n# install with aiobotocore type annotations\npython -m pip install 'types-aiobotocore[medialive]'\n\n# Lite version does not provide session.client/resource overloads\n# it is more RAM-friendly, but requires explicit type annotations\npython -m pip install 'types-aiobotocore-lite[medialive]'\n\n# standalone installation\npython -m pip install types-aiobotocore-medialive\n```\n\n<a id=\"how-to-uninstall\"></a>\n\n## How to uninstall\n\n```bash\npython -m pip uninstall -y types-aiobotocore-medialive\n```\n\n<a id=\"usage\"></a>\n\n## Usage\n\n<a id=\"vscode\"></a>\n\n### VSCode\n\n- Install\n [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python)\n- Install\n [Pylance extension](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)\n- Set `Pylance` as your Python Language Server\n- Install `types-aiobotocore[medialive]` in your environment:\n\n```bash\npython -m pip install 'types-aiobotocore[medialive]'\n```\n\nBoth type checking and code completion should now work. No explicit type\nannotations required, write your `aiobotocore` code as usual.\n\n<a id=\"pycharm\"></a>\n\n### PyCharm\n\n> \u26a0\ufe0f Due to slow PyCharm performance on `Literal` overloads (issue\n> [PY-40997](https://youtrack.jetbrains.com/issue/PY-40997)), it is recommended\n> to use\n> [types-aiobotocore-lite](https://pypi.org/project/types-aiobotocore-lite/)\n> until the issue is resolved.\n\n> \u26a0\ufe0f If you experience slow performance and high CPU usage, try to disable\n> `PyCharm` type checker and use [mypy](https://github.com/python/mypy) or\n> [pyright](https://github.com/microsoft/pyright) instead.\n\n> \u26a0\ufe0f To continue using `PyCharm` type checker, you can try to replace\n> `types-aiobotocore` with\n> [types-aiobotocore-lite](https://pypi.org/project/types-aiobotocore-lite/):\n\n```bash\npip uninstall types-aiobotocore\npip install types-aiobotocore-lite\n```\n\nInstall `types-aiobotocore[medialive]` in your environment:\n\n```bash\npython -m pip install 'types-aiobotocore[medialive]'\n```\n\nBoth type checking and code completion should now work.\n\n<a id=\"emacs\"></a>\n\n### Emacs\n\n- Install `types-aiobotocore` with services you use in your environment:\n\n```bash\npython -m pip install 'types-aiobotocore[medialive]'\n```\n\n- Install [use-package](https://github.com/jwiegley/use-package),\n [lsp](https://github.com/emacs-lsp/lsp-mode/),\n [company](https://github.com/company-mode/company-mode) and\n [flycheck](https://github.com/flycheck/flycheck) packages\n- Install [lsp-pyright](https://github.com/emacs-lsp/lsp-pyright) package\n\n```elisp\n(use-package lsp-pyright\n :ensure t\n :hook (python-mode . (lambda ()\n (require 'lsp-pyright)\n (lsp))) ; or lsp-deferred\n :init (when (executable-find \"python3\")\n (setq lsp-pyright-python-executable-cmd \"python3\"))\n )\n```\n\n- Make sure emacs uses the environment where you have installed\n `types-aiobotocore`\n\nType checking should now work. No explicit type annotations required, write\nyour `aiobotocore` code as usual.\n\n<a id=\"sublime-text\"></a>\n\n### Sublime Text\n\n- Install `types-aiobotocore[medialive]` with services you use in your\n environment:\n\n```bash\npython -m pip install 'types-aiobotocore[medialive]'\n```\n\n- Install [LSP-pyright](https://github.com/sublimelsp/LSP-pyright) package\n\nType checking should now work. No explicit type annotations required, write\nyour `aiobotocore` code as usual.\n\n<a id=\"other-ides\"></a>\n\n### Other IDEs\n\nNot tested, but as long as your IDE supports `mypy` or `pyright`, everything\nshould work.\n\n<a id=\"mypy\"></a>\n\n### mypy\n\n- Install `mypy`: `python -m pip install mypy`\n- Install `types-aiobotocore[medialive]` in your environment:\n\n```bash\npython -m pip install 'types-aiobotocore[medialive]'\n```\n\nType checking should now work. No explicit type annotations required, write\nyour `aiobotocore` code as usual.\n\n<a id=\"pyright\"></a>\n\n### pyright\n\n- Install `pyright`: `npm i -g pyright`\n- Install `types-aiobotocore[medialive]` in your environment:\n\n```bash\npython -m pip install 'types-aiobotocore[medialive]'\n```\n\nOptionally, you can install `types-aiobotocore` to `typings` directory.\n\nType checking should now work. No explicit type annotations required, write\nyour `aiobotocore` code as usual.\n\n<a id=\"pylint-compatibility\"></a>\n\n### Pylint compatibility\n\nIt is totally safe to use `TYPE_CHECKING` flag in order to avoid\n`types-aiobotocore-medialive` dependency in production. However, there is an\nissue in `pylint` that it complains about undefined variables. To fix it, set\nall types to `object` in non-`TYPE_CHECKING` mode.\n\n```python\nfrom typing import TYPE_CHECKING\n\nif TYPE_CHECKING:\n from types_aiobotocore_ec2 import EC2Client, EC2ServiceResource\n from types_aiobotocore_ec2.waiters import BundleTaskCompleteWaiter\n from types_aiobotocore_ec2.paginators import DescribeVolumesPaginator\nelse:\n EC2Client = object\n EC2ServiceResource = object\n BundleTaskCompleteWaiter = object\n DescribeVolumesPaginator = object\n\n...\n```\n\n<a id=\"explicit-type-annotations\"></a>\n\n## Explicit type annotations\n\n<a id=\"client-annotations\"></a>\n\n### Client annotations\n\n`MediaLiveClient` provides annotations for\n`session.create_client(\"medialive\")`.\n\n```python\nfrom aiobotocore.session import get_session\n\nfrom types_aiobotocore_medialive import MediaLiveClient\n\nsession = get_session()\nasync with session.create_client(\"medialive\") as client:\n client: MediaLiveClient\n # now client usage is checked by mypy and IDE should provide code completion\n```\n\n<a id=\"paginators-annotations\"></a>\n\n### Paginators annotations\n\n`types_aiobotocore_medialive.paginator` module contains type annotations for\nall paginators.\n\n```python\nfrom aiobotocore.session import get_session\n\nfrom types_aiobotocore_medialive import MediaLiveClient\nfrom types_aiobotocore_medialive.paginator import (\n DescribeSchedulePaginator,\n ListChannelPlacementGroupsPaginator,\n ListChannelsPaginator,\n ListCloudWatchAlarmTemplateGroupsPaginator,\n ListCloudWatchAlarmTemplatesPaginator,\n ListClustersPaginator,\n ListEventBridgeRuleTemplateGroupsPaginator,\n ListEventBridgeRuleTemplatesPaginator,\n ListInputDeviceTransfersPaginator,\n ListInputDevicesPaginator,\n ListInputSecurityGroupsPaginator,\n ListInputsPaginator,\n ListMultiplexProgramsPaginator,\n ListMultiplexesPaginator,\n ListNetworksPaginator,\n ListNodesPaginator,\n ListOfferingsPaginator,\n ListReservationsPaginator,\n ListSdiSourcesPaginator,\n ListSignalMapsPaginator,\n)\n\nsession = get_session()\nasync with session.create_client(\"medialive\") as client:\n client: MediaLiveClient\n\n # Explicit type annotations are optional here\n # Types should be correctly discovered by mypy and IDEs\n describe_schedule_paginator: DescribeSchedulePaginator = client.get_paginator(\n \"describe_schedule\"\n )\n list_channel_placement_groups_paginator: ListChannelPlacementGroupsPaginator = (\n client.get_paginator(\"list_channel_placement_groups\")\n )\n list_channels_paginator: ListChannelsPaginator = client.get_paginator(\"list_channels\")\n list_cloud_watch_alarm_template_groups_paginator: ListCloudWatchAlarmTemplateGroupsPaginator = (\n client.get_paginator(\"list_cloud_watch_alarm_template_groups\")\n )\n list_cloud_watch_alarm_templates_paginator: ListCloudWatchAlarmTemplatesPaginator = (\n client.get_paginator(\"list_cloud_watch_alarm_templates\")\n )\n list_clusters_paginator: ListClustersPaginator = client.get_paginator(\"list_clusters\")\n list_event_bridge_rule_template_groups_paginator: ListEventBridgeRuleTemplateGroupsPaginator = (\n client.get_paginator(\"list_event_bridge_rule_template_groups\")\n )\n list_event_bridge_rule_templates_paginator: ListEventBridgeRuleTemplatesPaginator = (\n client.get_paginator(\"list_event_bridge_rule_templates\")\n )\n list_input_device_transfers_paginator: ListInputDeviceTransfersPaginator = client.get_paginator(\n \"list_input_device_transfers\"\n )\n list_input_devices_paginator: ListInputDevicesPaginator = client.get_paginator(\n \"list_input_devices\"\n )\n list_input_security_groups_paginator: ListInputSecurityGroupsPaginator = client.get_paginator(\n \"list_input_security_groups\"\n )\n list_inputs_paginator: ListInputsPaginator = client.get_paginator(\"list_inputs\")\n list_multiplex_programs_paginator: ListMultiplexProgramsPaginator = client.get_paginator(\n \"list_multiplex_programs\"\n )\n list_multiplexes_paginator: ListMultiplexesPaginator = client.get_paginator(\"list_multiplexes\")\n list_networks_paginator: ListNetworksPaginator = client.get_paginator(\"list_networks\")\n list_nodes_paginator: ListNodesPaginator = client.get_paginator(\"list_nodes\")\n list_offerings_paginator: ListOfferingsPaginator = client.get_paginator(\"list_offerings\")\n list_reservations_paginator: ListReservationsPaginator = client.get_paginator(\n \"list_reservations\"\n )\n list_sdi_sources_paginator: ListSdiSourcesPaginator = client.get_paginator(\"list_sdi_sources\")\n list_signal_maps_paginator: ListSignalMapsPaginator = client.get_paginator(\"list_signal_maps\")\n```\n\n<a id=\"waiters-annotations\"></a>\n\n### Waiters annotations\n\n`types_aiobotocore_medialive.waiter` module contains type annotations for all\nwaiters.\n\n```python\nfrom aiobotocore.session import get_session\n\nfrom types_aiobotocore_medialive.client import MediaLiveClient\nfrom types_aiobotocore_medialive.waiter import (\n ChannelCreatedWaiter,\n ChannelDeletedWaiter,\n ChannelPlacementGroupAssignedWaiter,\n ChannelPlacementGroupDeletedWaiter,\n ChannelPlacementGroupUnassignedWaiter,\n ChannelRunningWaiter,\n ChannelStoppedWaiter,\n ClusterCreatedWaiter,\n ClusterDeletedWaiter,\n InputAttachedWaiter,\n InputDeletedWaiter,\n InputDetachedWaiter,\n MultiplexCreatedWaiter,\n MultiplexDeletedWaiter,\n MultiplexRunningWaiter,\n MultiplexStoppedWaiter,\n NodeDeregisteredWaiter,\n NodeRegisteredWaiter,\n SignalMapCreatedWaiter,\n SignalMapMonitorDeletedWaiter,\n SignalMapMonitorDeployedWaiter,\n SignalMapUpdatedWaiter,\n)\n\nsession = get_session()\nasync with session.create_client(\"medialive\") as client:\n client: MediaLiveClient\n\n # Explicit type annotations are optional here\n # Types should be correctly discovered by mypy and IDEs\n channel_created_waiter: ChannelCreatedWaiter = client.get_waiter(\"channel_created\")\n channel_deleted_waiter: ChannelDeletedWaiter = client.get_waiter(\"channel_deleted\")\n channel_placement_group_assigned_waiter: ChannelPlacementGroupAssignedWaiter = (\n client.get_waiter(\"channel_placement_group_assigned\")\n )\n channel_placement_group_deleted_waiter: ChannelPlacementGroupDeletedWaiter = client.get_waiter(\n \"channel_placement_group_deleted\"\n )\n channel_placement_group_unassigned_waiter: ChannelPlacementGroupUnassignedWaiter = (\n client.get_waiter(\"channel_placement_group_unassigned\")\n )\n channel_running_waiter: ChannelRunningWaiter = client.get_waiter(\"channel_running\")\n channel_stopped_waiter: ChannelStoppedWaiter = client.get_waiter(\"channel_stopped\")\n cluster_created_waiter: ClusterCreatedWaiter = client.get_waiter(\"cluster_created\")\n cluster_deleted_waiter: ClusterDeletedWaiter = client.get_waiter(\"cluster_deleted\")\n input_attached_waiter: InputAttachedWaiter = client.get_waiter(\"input_attached\")\n input_deleted_waiter: InputDeletedWaiter = client.get_waiter(\"input_deleted\")\n input_detached_waiter: InputDetachedWaiter = client.get_waiter(\"input_detached\")\n multiplex_created_waiter: MultiplexCreatedWaiter = client.get_waiter(\"multiplex_created\")\n multiplex_deleted_waiter: MultiplexDeletedWaiter = client.get_waiter(\"multiplex_deleted\")\n multiplex_running_waiter: MultiplexRunningWaiter = client.get_waiter(\"multiplex_running\")\n multiplex_stopped_waiter: MultiplexStoppedWaiter = client.get_waiter(\"multiplex_stopped\")\n node_deregistered_waiter: NodeDeregisteredWaiter = client.get_waiter(\"node_deregistered\")\n node_registered_waiter: NodeRegisteredWaiter = client.get_waiter(\"node_registered\")\n signal_map_created_waiter: SignalMapCreatedWaiter = client.get_waiter(\"signal_map_created\")\n signal_map_monitor_deleted_waiter: SignalMapMonitorDeletedWaiter = client.get_waiter(\n \"signal_map_monitor_deleted\"\n )\n signal_map_monitor_deployed_waiter: SignalMapMonitorDeployedWaiter = client.get_waiter(\n \"signal_map_monitor_deployed\"\n )\n signal_map_updated_waiter: SignalMapUpdatedWaiter = client.get_waiter(\"signal_map_updated\")\n```\n\n<a id=\"literals\"></a>\n\n### Literals\n\n`types_aiobotocore_medialive.literals` module contains literals extracted from\nshapes that can be used in user code for type checking.\n\nFull list of `MediaLive` Literals can be found in\n[docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_medialive/literals/).\n\n```python\nfrom types_aiobotocore_medialive.literals import AacCodingModeType\n\n\ndef check_value(value: AacCodingModeType) -> bool: ...\n```\n\n<a id=\"type-definitions\"></a>\n\n### Type definitions\n\n`types_aiobotocore_medialive.type_defs` module contains structures and shapes\nassembled to typed dictionaries and unions for additional type checking.\n\nFull list of `MediaLive` TypeDefs can be found in\n[docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_medialive/type_defs/).\n\n```python\n# TypedDict usage example\nfrom types_aiobotocore_medialive.type_defs import AacSettingsTypeDef\n\n\ndef get_value() -> AacSettingsTypeDef:\n return {\n \"Bitrate\": ...,\n }\n```\n\n<a id=\"how-it-works\"></a>\n\n## How it works\n\nFully automated\n[mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder) carefully\ngenerates type annotations for each service, patiently waiting for\n`aiobotocore` updates. It delivers drop-in type annotations for you and makes\nsure that:\n\n- All available `aiobotocore` services are covered.\n- Each public class and method of every `aiobotocore` service gets valid type\n annotations extracted from `botocore` schemas.\n- Type annotations include up-to-date documentation.\n- Link to documentation is provided for every method.\n- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.\n\n<a id=\"what's-new\"></a>\n\n## What's new\n\n<a id=\"implemented-features\"></a>\n\n### Implemented features\n\n- Fully type annotated `boto3`, `botocore`, `aiobotocore` and `aioboto3`\n libraries\n- `mypy`, `pyright`, `VSCode`, `PyCharm`, `Sublime Text` and `Emacs`\n compatibility\n- `Client`, `ServiceResource`, `Resource`, `Waiter` `Paginator` type\n annotations for each service\n- Generated `TypeDefs` for each service\n- Generated `Literals` for each service\n- Auto discovery of types for `boto3.client` and `boto3.resource` calls\n- Auto discovery of types for `session.client` and `session.resource` calls\n- Auto discovery of types for `client.get_waiter` and `client.get_paginator`\n calls\n- Auto discovery of types for `ServiceResource` and `Resource` collections\n- Auto discovery of types for `aiobotocore.Session.create_client` calls\n\n<a id=\"latest-changes\"></a>\n\n### Latest changes\n\nBuilder changelog can be found in\n[Releases](https://github.com/youtype/mypy_boto3_builder/releases).\n\n<a id=\"versioning\"></a>\n\n## Versioning\n\n`types-aiobotocore-medialive` version is the same as related `aiobotocore`\nversion and follows\n[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).\n\n<a id=\"thank-you\"></a>\n\n## Thank you\n\n- [Allie Fitter](https://github.com/alliefitter) for\n [boto3-type-annotations](https://pypi.org/project/boto3-type-annotations/),\n this package is based on top of his work\n- [black](https://github.com/psf/black) developers for an awesome formatting\n tool\n- [Timothy Edmund Crosley](https://github.com/timothycrosley) for\n [isort](https://github.com/PyCQA/isort) and how flexible it is\n- [mypy](https://github.com/python/mypy) developers for doing all dirty work\n for us\n- [pyright](https://github.com/microsoft/pyright) team for the new era of typed\n Python\n\n<a id=\"documentation\"></a>\n\n## Documentation\n\nAll services type annotations can be found in\n[aiobotocore docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_medialive/)\n\n<a id=\"support-and-contributing\"></a>\n\n## Support and contributing\n\nThis package is auto-generated. Please reports any bugs or request new features\nin [mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder/issues/)\nrepository.\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Type annotations for aiobotocore MediaLive 2.24.0 service generated with mypy-boto3-builder 8.11.0",
"version": "2.24.0",
"project_urls": {
"Documentation": "https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_medialive/",
"Homepage": "https://github.com/youtype/mypy_boto3_builder",
"Source": "https://github.com/youtype/mypy_boto3_builder",
"Tracker": "https://github.com/youtype/mypy_boto3_builder/issues"
},
"split_keywords": [
"aiobotocore",
"medialive",
"aiobotocore-stubs",
"type-annotations",
"mypy",
"typeshed",
"autocomplete"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "0dcf7c311d0b367d4e53d3496a87a156db0449317ad96453f950c53799bdf547",
"md5": "160fa098b06611ec067249c4aeee649b",
"sha256": "1c68aa2a792478288936ab8bd07cc2832d2230cf676745a9847e15dcfa56830f"
},
"downloads": -1,
"filename": "types_aiobotocore_medialive-2.24.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "160fa098b06611ec067249c4aeee649b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 107985,
"upload_time": "2025-08-09T01:52:18",
"upload_time_iso_8601": "2025-08-09T01:52:18.773637Z",
"url": "https://files.pythonhosted.org/packages/0d/cf/7c311d0b367d4e53d3496a87a156db0449317ad96453f950c53799bdf547/types_aiobotocore_medialive-2.24.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0ee594317829f8ae7c43894abe36685d713a859855a106762fb2689cd8f62d13",
"md5": "ed527cd3900b83be5905dd218c08ac6a",
"sha256": "3b5a7d3d4164fa0301a27face922507f677b2b86b8fc080970d3410f985f718f"
},
"downloads": -1,
"filename": "types_aiobotocore_medialive-2.24.0.tar.gz",
"has_sig": false,
"md5_digest": "ed527cd3900b83be5905dd218c08ac6a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 102701,
"upload_time": "2025-08-09T01:52:20",
"upload_time_iso_8601": "2025-08-09T01:52:20.277382Z",
"url": "https://files.pythonhosted.org/packages/0e/e5/94317829f8ae7c43894abe36685d713a859855a106762fb2689cd8f62d13/types_aiobotocore_medialive-2.24.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-09 01:52:20",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "youtype",
"github_project": "mypy_boto3_builder",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "types-aiobotocore-medialive"
}