We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a72a7fc commit 55309d7Copy full SHA for 55309d7
usecases/saved_locations.py
@@ -63,15 +63,14 @@
63
64
# You can search for events within a certain saved-location by providing its location_id
65
for event in phq.saved_locations.search_event_result_set(
66
- location_id="some_location_id_here",
67
- date_range_type="next_90d",
68
- category="concerts,community",
69
- limit=10,
70
- ):
+ location_id="some_location_id_here",
+ date_range_type="next_90d",
+ category="concerts,community",
+ limit=10,
+):
71
print(event.title, event.start.strftime("%Y-%m-%d"), event.category)
72
73
74
-
75
# You can also refresh the insights for a certain saved-location by providing its location_id
76
phq.saved_locations.refresh_location_insights(location_id="location_id_here")
77
0 commit comments