tags = await client.tag.list()

for tag in tags:
    print(tag.name)

Fetch stories for a specific tag:

feed = await client.feed.tag("python")

for post in feed.posts:
    print(post.title)