mypy-boto3-kinesis

Type hints for AWS Kinesis boto3 service in Python development.

pipmacoslinuxwindows
Try with needOr install directly
Source

About

Type annotations for boto3 Kinesis 1.42.41 service generated with mypy-boto3-builder 8.12.0

Examples

add type checking to kinesis stream code$ python -c "from mypy_boto3_kinesis import KinesisClient; client: KinesisClient"
get autocomplete for kinesis methods in IDE$ python -c "from mypy_boto3_kinesis.client import KinesisClient; help(KinesisClient.put_record)"
validate kinesis boto3 code with mypy type checker$ mypy --strict my_kinesis_script.py
import kinesis type stubs for put_records operation$ python -c "from mypy_boto3_kinesis.type_defs import PutRecordRequestRequestTypeDef"
enable intellisense for kinesis client in python project$ from mypy_boto3_kinesis import KinesisClient