-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
HTTPS proxy support #1512
HTTPS proxy support #1512
Conversation
Behaves just like :class:`PoolManager`, but sends all requests through | ||
the defined proxy, using the CONNECT method for HTTPS URLs. | ||
|
||
:param poxy_url: |
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.
Small typo here
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.
I would say this is not an issue which needs to be solved for this PR. Can you send a PR to urllib3? :)
Finally! I spent 4 hours playing with openssl and different combinations of requests itself and different forked urllib3's... I'm happy it looks everything is working fine now. |
This is a great PR. =) One suggestion: it might be better to raise it against the 2.0 branch. |
x2 |
Is there an ETA for 2.0 release? |
Not too far in the future. AFAIK we're not planning to have another point release before then. =) |
So why is there a separate branch at all? :) |
However, here we go: https://github.com/kennethreitz/requests/pull/1515 |
HTTPS proxy support finally made it into urllib3 (urllib3/urllib3#170), this is a patch for requests to support it.