Replies: 1 comment 6 replies
-
mind posting the full traceback? |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Ok, so now I'm trying to pass "q" query string. For example: params = { 'q': 'gender==F' }
Running students.query(**params) throws an error. Looking at the stack it looks like the '==' is being converted to "%3D"
so the call string ends in "/count?q=gender%3DF" rather than ==F
I've tried escaping the == signs in several ways but the all give the same error.
Beta Was this translation helpful? Give feedback.
All reactions