Skip to content

Commit

Permalink
better
Browse files Browse the repository at this point in the history
  • Loading branch information
honzajavorek committed Nov 30, 2023
1 parent f2b1308 commit ec378ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This library takes HTML source of a meetup group page on Meetup and returns a li
... html = f.read()
...
>>> events = parse(html)
>>> event = events[0]
>>> event = next(event for event in events if event['venue'] is not None)
>>> sorted(event.keys())
['description', 'ends_at', 'starts_at', 'title', 'url', 'venue']
>>> sorted(event['venue'])
Expand Down

0 comments on commit ec378ed

Please sign in to comment.