回答:
簡単な方法:最近のバージョンのリクエスト(1.x以降)でロギングを有効にします。
リクエストは使用http.client
してlogging
説明するように、制御の冗長ロギングにモジュールの構成をここに。
リンクされたドキュメントから抜粋したコード:
import requests
import logging
# These two lines enable debugging at httplib level (requests->urllib3->http.client)
# You will see the REQUEST, including HEADERS and DATA, and RESPONSE with HEADERS but without DATA.
# The only thing missing will be the response.body which is not logged.
try:
import http.client as http_client
except ImportError:
# Python 2
import httplib as http_client
http_client.HTTPConnection.debuglevel = 1
# You must initialize logging, otherwise you'll not see debug output.
logging.basicConfig()
logging.getLogger().setLevel(logging.DEBUG)
requests_log = logging.getLogger("requests.packages.urllib3")
requests_log.setLevel(logging.DEBUG)
requests_log.propagate = True
requests.get('https://httpbin.org/headers')
$ python requests-logging.py
INFO:requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): httpbin.org
send: 'GET /headers HTTP/1.1\r\nHost: httpbin.org\r\nAccept-Encoding: gzip, deflate, compress\r\nAccept: */*\r\nUser-Agent: python-requests/1.2.0 CPython/2.7.3 Linux/3.2.0-48-generic\r\n\r\n'
reply: 'HTTP/1.1 200 OK\r\n'
header: Content-Type: application/json
header: Date: Sat, 29 Jun 2013 11:19:34 GMT
header: Server: gunicorn/0.17.4
header: Content-Length: 226
header: Connection: keep-alive
DEBUG:requests.packages.urllib3.connectionpool:"GET /headers HTTP/1.1" 200 226
import httplib
とimport requests.packages.urllib3.connectionpool as httplib
、または使用6とfrom six.moves import http_client as httplib
。
requests
2.18.1とPython 3、ロガーはlogging.getLogger("requests.packages.urllib3")
存在しないかは効果がありません。
from http.client import HTTPConnection
r = requests.get('https://api.github.com', auth=('user', 'pass'))
r
応答です。必要な情報を持つリクエスト属性があります。
r.request.allow_redirects r.request.headers r.request.register_hook
r.request.auth r.request.hooks r.request.response
r.request.cert r.request.method r.request.send
r.request.config r.request.params r.request.sent
r.request.cookies r.request.path_url r.request.session
r.request.data r.request.prefetch r.request.timeout
r.request.deregister_hook r.request.proxies r.request.url
r.request.files r.request.redirect r.request.verify
r.request.headers
ヘッダーを与える:
{'Accept': '*/*',
'Accept-Encoding': 'identity, deflate, compress, gzip',
'Authorization': u'Basic dXNlcjpwYXNz',
'User-Agent': 'python-requests/0.12.1'}
次にr.request.data
、本体をマッピングとして使用します。あなたがurllib.urlencode
好むならこれでこれを変換することができます:
import urllib
b = r.request.data
encoded_body = urllib.urlencode(b)
応答のタイプによっては、.data
-attributeが欠落していて、.body
代わりに-attributeが存在する場合があります。
response.request
のようですPreparedRequest
私の場合。ありませんが.data
、.body
代わりに。
response.url
(そうでないという点で少し異なりますresponse.request...
これを行うには、HTTPツールキットを使用できます。
コードを変更せずにこれをすばやく行う必要がある場合に特に便利です。HTTPToolkitからターミナルを開き、そこからPythonコードを通常どおり実行すると、すべてのHTTP / HTTPSの完全なコンテンツを表示できます。すぐにリクエストしてください。
あなたが必要とするすべてを行うことができる無料版があり、それは100%オープンソースです。
私はHTTP Toolkitの作成者です。まったく同じ問題を解決するために、実際に自分でビルドしました。私も支払いの統合をデバッグしようとしていましたが、SDKが機能せず、理由を特定できませんでした。適切に修正するには、実際に何が起こっているのかを知る必要がありました。それは非常にイライラしますが、生のトラフィックを見ることができることは本当に役立ちます。
verbose
設定オプションは、あなたが欲しいものを見ることができるかもしれません。あるドキュメントの例が。
注:以下のコメントをお読みください:詳細な構成オプションはもう利用できないようです。