質問
「InsecureRequestWarning を消したい」です。
公式ドキュメントの通り
2~3行目に非表示のコードを書きましたが非表示になりませんでした。
問題なくリクエストは送信され、レスポンスデータも取得できていますが、メッセージだけ消したいです。
Python
1import requests 2import urllib3 3urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) 4 5s = requests.Session() 6s.proxies = {'https': 'https://127.0.0.1:8008'} 7s.verify = False 8r = s.get('https://example.com') 9print(r.content)
$ python3 main.py /usr/local/lib/python3.5/dist-packages/requests/packages/urllib3/connectionpool.py:789 : InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html InsecureRequestWarning) b'<!doctype html>\n<html>\n<head>\n <title>Example Domain</title>\n\n <meta charset="utf-8" />\n (以下省略)
環境
- Python 3.5.2
- Ubuntu 16.04.3 LTS
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/01 05:21 編集