“So analysieren Sie die HTTP -Anfrage in Python” Code-Antworten

So senden Sie Get Request Python

import requests
requests.get("https://www.google.com/")
Uninterested Unicorn

So analysieren Sie die HTTP -Anfrage in Python

import email
import pprint
from io import StringIO

request_string = 'GET / HTTP/1.1\r\nHost: localhost\r\nConnection: keep-alive\r\nCache-Control: max-age=0\r\nUpgrade-Insecure-Requests: 1\r\nUser-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36\r\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\r\nAccept-Encoding: gzip, deflate, sdch\r\nAccept-Language: en-US,en;q=0.8'

# pop the first line so we only process headers
_, headers = request_string.split('\r\n', 1)

# construct a message from the request string
message = email.message_from_file(StringIO(headers))

# construct a dictionary containing the headers
headers = dict(message.items())

# pretty-print the dictionary of headers
pprint.pprint(headers, width=160)
Adorable Albatross

Ähnliche Antworten wie “So analysieren Sie die HTTP -Anfrage in Python”

Fragen ähnlich wie “So analysieren Sie die HTTP -Anfrage in Python”

Weitere verwandte Antworten zu “So analysieren Sie die HTTP -Anfrage in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen