Closed dzyk closed 6 years ago
can i take all posts? s = steem b = s.blog.Blog('mgu', steemd_instance=client) po = b.all() print (po) for i in po: print (i)
print only <generator object Blog.all at 0x7fa537e60a98> ...
Blog is lazy by default, and returns a generator. To read all posts, you could do this:
for post in Blog('mgu'): print(post)
can i take all posts? s = steem b = s.blog.Blog('mgu', steemd_instance=client) po = b.all() print (po) for i in po: print (i)
print only <generator object Blog.all at 0x7fa537e60a98> ...