-
Notifications
You must be signed in to change notification settings - Fork 10
#11 - Updating url decorator to allow for place.scope/exact #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
tests/endpoints/v1/events_tests.py
Outdated
client.events.search(id="id", q="query", rank_level=[4,5], rank__gt=85, country=["NZ", "AU"], | ||
within__radius="2km", within__longitude=-71.0432, within__latitude=42.346, | ||
label=["label1", "label2"], category="category", | ||
place__scope=["place1", "place2"], place__exact=["place3"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we not supporting the __
format? If not, should change all the other param tests as well. If we are, should have tests in both forms for all params.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah good point, it's already supported so will update the tests
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice catch, seems good. The reason for "country" not "place" example on readme was to reduce confusion for first time viewer.
No description provided.