from lobstr.exceptions import StoryNotFound

try:
    story = await client.story.get("does_not_exist")
except StoryNotFound:
    print("Story not found")

Available Exceptions

  • StoryNotFound
  • CommentNotFound
  • UserNotFound
  • TagNotFound
  • FeedPageNotFound