types-aiobotocore-ivs 2.25.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,56 @@
1
+ """
2
+ Main interface for ivs service.
3
+
4
+ [Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ivs/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from aiobotocore.session import get_session
12
+ from types_aiobotocore_ivs import (
13
+ Client,
14
+ IVSClient,
15
+ ListChannelsPaginator,
16
+ ListPlaybackKeyPairsPaginator,
17
+ ListRecordingConfigurationsPaginator,
18
+ ListStreamKeysPaginator,
19
+ ListStreamsPaginator,
20
+ )
21
+
22
+ session = get_session()
23
+ async with session.create_client("ivs") as client:
24
+ client: IVSClient
25
+ ...
26
+
27
+
28
+ list_channels_paginator: ListChannelsPaginator = client.get_paginator("list_channels")
29
+ list_playback_key_pairs_paginator: ListPlaybackKeyPairsPaginator = client.get_paginator("list_playback_key_pairs")
30
+ list_recording_configurations_paginator: ListRecordingConfigurationsPaginator = client.get_paginator("list_recording_configurations")
31
+ list_stream_keys_paginator: ListStreamKeysPaginator = client.get_paginator("list_stream_keys")
32
+ list_streams_paginator: ListStreamsPaginator = client.get_paginator("list_streams")
33
+ ```
34
+ """
35
+
36
+ from .client import IVSClient
37
+ from .paginator import (
38
+ ListChannelsPaginator,
39
+ ListPlaybackKeyPairsPaginator,
40
+ ListRecordingConfigurationsPaginator,
41
+ ListStreamKeysPaginator,
42
+ ListStreamsPaginator,
43
+ )
44
+
45
+ Client = IVSClient
46
+
47
+
48
+ __all__ = (
49
+ "Client",
50
+ "IVSClient",
51
+ "ListChannelsPaginator",
52
+ "ListPlaybackKeyPairsPaginator",
53
+ "ListRecordingConfigurationsPaginator",
54
+ "ListStreamKeysPaginator",
55
+ "ListStreamsPaginator",
56
+ )
@@ -0,0 +1,55 @@
1
+ """
2
+ Main interface for ivs service.
3
+
4
+ [Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ivs/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from aiobotocore.session import get_session
12
+ from types_aiobotocore_ivs import (
13
+ Client,
14
+ IVSClient,
15
+ ListChannelsPaginator,
16
+ ListPlaybackKeyPairsPaginator,
17
+ ListRecordingConfigurationsPaginator,
18
+ ListStreamKeysPaginator,
19
+ ListStreamsPaginator,
20
+ )
21
+
22
+ session = get_session()
23
+ async with session.create_client("ivs") as client:
24
+ client: IVSClient
25
+ ...
26
+
27
+
28
+ list_channels_paginator: ListChannelsPaginator = client.get_paginator("list_channels")
29
+ list_playback_key_pairs_paginator: ListPlaybackKeyPairsPaginator = client.get_paginator("list_playback_key_pairs")
30
+ list_recording_configurations_paginator: ListRecordingConfigurationsPaginator = client.get_paginator("list_recording_configurations")
31
+ list_stream_keys_paginator: ListStreamKeysPaginator = client.get_paginator("list_stream_keys")
32
+ list_streams_paginator: ListStreamsPaginator = client.get_paginator("list_streams")
33
+ ```
34
+ """
35
+
36
+ from .client import IVSClient
37
+ from .paginator import (
38
+ ListChannelsPaginator,
39
+ ListPlaybackKeyPairsPaginator,
40
+ ListRecordingConfigurationsPaginator,
41
+ ListStreamKeysPaginator,
42
+ ListStreamsPaginator,
43
+ )
44
+
45
+ Client = IVSClient
46
+
47
+ __all__ = (
48
+ "Client",
49
+ "IVSClient",
50
+ "ListChannelsPaginator",
51
+ "ListPlaybackKeyPairsPaginator",
52
+ "ListRecordingConfigurationsPaginator",
53
+ "ListStreamKeysPaginator",
54
+ "ListStreamsPaginator",
55
+ )
@@ -0,0 +1,43 @@
1
+ """
2
+ Main CLI entrypoint.
3
+
4
+ Copyright 2025 Vlad Emelianov
5
+ """
6
+
7
+ import sys
8
+
9
+
10
+ def print_info() -> None:
11
+ """
12
+ Print package info to stdout.
13
+ """
14
+ sys.stdout.write(
15
+ "Type annotations for aiobotocore IVS 2.25.2\n"
16
+ "Version: 2.25.2\n"
17
+ "Builder version: 8.12.0\n"
18
+ "Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_ivs//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ivs.html#ivs\n"
20
+ "Other services: https://pypi.org/project/boto3-stubs/\n"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
22
+ )
23
+
24
+
25
+ def print_version() -> None:
26
+ """
27
+ Print package version to stdout.
28
+ """
29
+ sys.stdout.write("2.25.2\n")
30
+
31
+
32
+ def main() -> None:
33
+ """
34
+ Main CLI entrypoint.
35
+ """
36
+ if "--version" in sys.argv:
37
+ print_version()
38
+ return
39
+ print_info()
40
+
41
+
42
+ if __name__ == "__main__":
43
+ main()