Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #88870
| From | Cecil Westerhof <Cecil@decebal.nl> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Getting rid of |
| Organization | Decebal Computing |
| Date | 2015-04-12 19:48 +0200 |
| Message-ID | <87k2xh9r0a.fsf@Equus.decebal.nl> (permalink) |
I am playing a little bit with libturpial. I got a few warnings. Most
I could get rid of, but one I still get, while I have done what is
said in the reference of the warning.
Example code:
#!/usr/bin/env python
import certifi
import urllib3
import urllib3.contrib.pyopenssl
from libturpial.api.core import Core
urllib3.contrib.pyopenssl.inject_into_urllib3()
http = urllib3.PoolManager(
cert_reqs='CERT_REQUIRED', # Force certificate check.
ca_certs=certifi.where(), # Path to the Certifi bundle.
)
Core()
What should I do to get rid of the warnings:
/usr/lib/python2.7/site-packages/requests-2.6.0-py2.7.egg/requests/packages/urllib3/connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
/usr/lib/python2.7/site-packages/requests-2.6.0-py2.7.egg/requests/packages/urllib3/connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
/usr/lib/python2.7/site-packages/requests-2.6.0-py2.7.egg/requests/packages/urllib3/connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
--
Cecil Westerhof
Senior Software Engineer
LinkedIn: http://www.linkedin.com/in/cecilwesterhof
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Getting rid of Cecil Westerhof <Cecil@decebal.nl> - 2015-04-12 19:48 +0200
Re: Getting rid of Denis McMahon <denismfmcmahon@gmail.com> - 2015-04-12 18:54 +0000
Re: Getting rid of Cecil Westerhof <Cecil@decebal.nl> - 2015-04-12 21:27 +0200
Re: Getting rid of Denis McMahon <denismfmcmahon@gmail.com> - 2015-04-12 21:46 +0000
csiph-web