You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 23, 2020. It is now read-only.
from steem.blockchain import Blockchain
# parse only payments from specific datetime until now
b = Blockchain()
history = b.replay(
start_block=b.get_block_from_time("2017-03-01T00:00:00"),
end_block=b.get_current_block(),
filter_by=['transfer']
)
However, it says: 'Blockchain' object has no attribute 'get_block_from_time'.
I'm running the code from the example here
However, it says:
'Blockchain' object has no attribute 'get_block_from_time'.I'm using Python 3.6