mypy-boto3-kinesis 1.19.9__py3-none-any.whl → 1.37.0__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.
@@ -1,10 +1,14 @@
1
1
  """
2
2
  Main interface for kinesis service.
3
3
 
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
4
8
  Usage::
5
9
 
6
10
  ```python
7
- import boto3
11
+ from boto3.session import Session
8
12
  from mypy_boto3_kinesis import (
9
13
  Client,
10
14
  DescribeStreamPaginator,
@@ -16,10 +20,8 @@ Usage::
16
20
  StreamNotExistsWaiter,
17
21
  )
18
22
 
19
- session = boto3.Session()
20
-
21
- client: KinesisClient = boto3.client("kinesis")
22
- session_client: KinesisClient = session.client("kinesis")
23
+ session = Session()
24
+ client: KinesisClient = session.client("kinesis")
23
25
 
24
26
  stream_exists_waiter: StreamExistsWaiter = client.get_waiter("stream_exists")
25
27
  stream_not_exists_waiter: StreamNotExistsWaiter = client.get_waiter("stream_not_exists")
@@ -30,6 +32,7 @@ Usage::
30
32
  list_streams_paginator: ListStreamsPaginator = client.get_paginator("list_streams")
31
33
  ```
32
34
  """
35
+
33
36
  from .client import KinesisClient
34
37
  from .paginator import (
35
38
  DescribeStreamPaginator,
@@ -1,10 +1,14 @@
1
1
  """
2
2
  Main interface for kinesis service.
3
3
 
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
4
8
  Usage::
5
9
 
6
10
  ```python
7
- import boto3
11
+ from boto3.session import Session
8
12
  from mypy_boto3_kinesis import (
9
13
  Client,
10
14
  DescribeStreamPaginator,
@@ -16,10 +20,8 @@ Usage::
16
20
  StreamNotExistsWaiter,
17
21
  )
18
22
 
19
- session = boto3.Session()
20
-
21
- client: KinesisClient = boto3.client("kinesis")
22
- session_client: KinesisClient = session.client("kinesis")
23
+ session = Session()
24
+ client: KinesisClient = session.client("kinesis")
23
25
 
24
26
  stream_exists_waiter: StreamExistsWaiter = client.get_waiter("stream_exists")
25
27
  stream_not_exists_waiter: StreamNotExistsWaiter = client.get_waiter("stream_not_exists")
@@ -30,6 +32,7 @@ Usage::
30
32
  list_streams_paginator: ListStreamsPaginator = client.get_paginator("list_streams")
31
33
  ```
32
34
  """
35
+
33
36
  from .client import KinesisClient
34
37
  from .paginator import (
35
38
  DescribeStreamPaginator,
@@ -1,6 +1,9 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
+
4
+ Copyright 2025 Vlad Emelianov
3
5
  """
6
+
4
7
  import sys
5
8
 
6
9
 
@@ -8,14 +11,14 @@ def print_info() -> None:
8
11
  """
9
12
  Print package info to stdout.
10
13
  """
11
- print(
12
- "Type annotations for boto3.Kinesis 1.19.9\n"
13
- "Version: 1.19.9\n"
14
- "Builder version: 6.0.2\n"
15
- "Docs: https://pypi.org/project/mypy-boto3-kinesis/\n"
16
- "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/kinesis.html#Kinesis\n"
14
+ sys.stdout.write(
15
+ "Type annotations for boto3 Kinesis 1.37.0\n"
16
+ "Version: 1.37.0\n"
17
+ "Builder version: 8.9.2\n"
18
+ "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis.html#kinesis\n"
17
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
18
- "Changelog: https://github.com/vemel/mypy_boto3_builder/releases"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
19
22
  )
20
23
 
21
24
 
@@ -23,7 +26,7 @@ def print_version() -> None:
23
26
  """
24
27
  Print package version to stdout.
25
28
  """
26
- print("1.19.9")
29
+ sys.stdout.write("1.37.0\n")
27
30
 
28
31
 
29
32
  def main() -> None:
@@ -31,7 +34,8 @@ def main() -> None:
31
34
  Main CLI entrypoint.
32
35
  """
33
36
  if "--version" in sys.argv:
34
- return print_version()
37
+ print_version()
38
+ return
35
39
  print_info()
36
40
 
37
41