“Po co wspominać agenta użytkownika w bibliotece żądań” Kod odpowiedzi

Python żądania ustawy użytkownika

import requests

url = 'SOME URL'

headers = {
    'User-Agent': 'My User Agent 1.0',
    'From': '[email protected]'  # This is another valid field
}

response = requests.get(url, headers=headers)
Joeyeyey

Po co wspominać agenta użytkownika w bibliotece żądań

#If you are using python requests old version 

import requests

url = 'SOME URL'

# Get a copy of the default headers that requests would use
headers = requests.utils.default_headers()

# Update the headers with your custom ones
# You don't have to worry about case-sensitivity with
# the dictionary keys, because default_headers uses a custom
# CaseInsensitiveDict implementation within requests' source code.
headers.update(
    {
        'User-Agent': 'My User Agent 1.0',
    }
)

response = requests.get(url, headers=headers)
Muddy Magpie

Odpowiedzi podobne do “Po co wspominać agenta użytkownika w bibliotece żądań”

Pytania podobne do “Po co wspominać agenta użytkownika w bibliotece żądań”

Więcej pokrewnych odpowiedzi na “Po co wspominać agenta użytkownika w bibliotece żądań” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu