Загрузка данных


import requests

url = "https://httpbin.org/post"

data = [
    ("custname", "cat"),
    ("custtel", "7777777"),
    ("custemail", "example@text.ru"),
    ("large", "large"),
    ("topping", "bacon"),
    ("topping", "cheese"),
    ("delivery", "15:00"),
    ("comments", "оставить у двери"),
]

response = requests.post(url, data=data)
print(response.status_code)
print(response.text)