We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be nice if the query params could be specified as a kwarg to the get, post, et al methods as the underlying Requests library does.
get
post
Ex:
wcapi = API(...) params = { 'status': 'cancelled', 'per_page': 25, 'page': 1 } r = wcapi.get('orders', params=params)
The text was updated successfully, but these errors were encountered:
Looks like there are already two pull requests open to add this support: #34 and #35.
Sorry, something went wrong.
Closed by #34
No branches or pull requests
It would be nice if the query params could be specified as a kwarg to the
get
,post
, et al methods as the underlying Requests library does.Ex:
The text was updated successfully, but these errors were encountered: