Ссылка: http://docs.python -requests.org / ru / master / api /
Вы можете использовать модуль запросов Python, например:
import requests
Req = requests.request(
method = "GET", # or "POST", "PUT", "DELETE", "PATCH" etcetera
url = "http(s)://*",
params = {"key": "value"}, # IF GET Request (Optional)
data = {"key": "value"}, # IF POST Request (Optional)
headers = {"header_name": "header_value"} # (Optional)
)
print Req.content
Вы можете заключить код в блок try :: catch, как показано ниже, чтобы перехватить любое исключение, выданное модулем запросов
try:
# requests.request(** Arguments)
except requests.exceptions.RequestException as e:
print e
Полный список аргументов см. В справочной ссылке.