溫馨提示×

python中怎么用post提交數(shù)據(jù)

小億
121
2024-03-06 12:02:58
欄目: 編程語言

在Python中使用post方法提交數(shù)據(jù),通常使用requests庫。以下是一個(gè)簡單的例子:

import requests

url = 'https://www.example.com/api'
data = {'key1': 'value1', 'key2': 'value2'}

response = requests.post(url, data=data)

print(response.text)

在這個(gè)例子中,我們使用requests庫發(fā)送一個(gè)post請求到指定的url,并傳遞一個(gè)包含鍵值對的字典作為數(shù)據(jù)。提交的數(shù)據(jù)可以是表單數(shù)據(jù)、JSON數(shù)據(jù)等。接收到的響應(yīng)可以通過response.text來獲取。

0