Why does the former install 3 additional packages?
Using requests[security]
instead of requests
will install three additional packages:
- pyOpenSSL
- cryptography
- idna
These are defined in extras_requires
, as optional features with additional dependencies.
Are there any things that I need to take care about when I push the code to production?
You'd want to make sure that you are able to install those additional packages without any issues and that any changes to the way SSL connections work don't affect your usage.
Do they both behave the same generally?
Using these packages as opposed to the default standard library options will allow for more secure SSL connections.
For more information, here's the pull request where it was merged in and here is the issue where it was discussed.
(From the comments, for when GitHub goes away):
So right now the SSL connections when you use pyOpenSSL, ndg-httspclient, and pyasn1 are more secure than if you just use the stdlib options. However it's hard to actually remember those three things. It would be cool if requests would add an extra to it's setup.py so that people can install requests with betterssl (Donald Stufft)
Also by default requests can't connect to some sites on OS X because of ancient OpenSSL. Using the above 3 packages makes it possible. (Donald Stufft)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…