You are viewing a single comment's thread from:

RE: Part 2: How To Stream And Filter The Blockchain Using Steem-Python

in #utopian-io6 years ago (edited)

Your code example works, thank you.

Say I would like to check (I have list of authors) if any of them posted in last i don't know, say few hundred posts what was already posted on stream. I can't use this code, since this is live, ongoing stream, correct?

stream = map(Post, blockchain.stream(filter_by=['comment']))
for post in stream:

How would I go about this?