Skip to content

Instantly share code, notes, and snippets.

@vjeffz
vjeffz / read_kinesis_streams.py
Created October 15, 2017 23:32 — forked from narviis/read_kinesis_streams.py
Read data from Amazon Kinesis Streams
import boto3
# add your stream name
STREAM_NAME = '<stream_name>'
UPDATE_ITER_FREQ = 100
LIMIT = 2
client = boto3.client('kinesis')