-
Notifications
You must be signed in to change notification settings - Fork 3
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
Refactor get method implementation #48
Comments
This is a fair point - thanks @surchs! A couple initial thoughts from me: I think the fact that the In terms of your ideas for simplifying I do think we could also (?) have a unit test for the |
We want to keep our issues up to date and active. This issue hasn't seen any activity in the last 30 days. |
I think we could probably rethink the way the
get
method works overall. I think right now it does too many things:create_query
method by passing along all arguments intended for that guyhttpx.post
call by handling the header stuffWe should:
get rid ofget
, put all the logic inside the query routercall the query generator outside ofget
/post
, store the output and pass that alongpost
wrapper that receives the completed query rather than the whole argument chainThe text was updated successfully, but these errors were encountered: