Python Web表單提交
Python Web表單提交
通常,與網(wǎng)頁的交互需要一些數(shù)據(jù)通過html頁面中的表單提交給服務(wù)器。這些網(wǎng)絡(luò)表單通常用于諸如注冊新帳戶或提供一些信息(例如姓名或卷號)以檢索檢查結(jié)果的過程。requests模塊使用帶有所需參數(shù)的POST方法優(yōu)雅地處理此問題。
示例
在下面的示例中,我們通過提供用戶名和密碼值來使用網(wǎng)站的注冊表單。提交值后,將打印響應(yīng)的結(jié)果。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 import requests ID_USERNAME = 'signup-user-name' ID_PASSWORD = 'signup-user-password' USERNAME = 'username' PASSWORD = 'yourpassword' SIGNUP_URL = 'http://codepad.org/login' def submit_form(): """Submit a form""" payload = {ID_USERNAME : USERNAME, ID_PASSWORD : PASSWORD,} resp = requests.get(SIGNUP_URL) print "Response to GET request: %s" %resp.content resp = requests.post(SIGNUP_URL, payload) print "Headers from a POST request response: %s" %resp.headers #print "HTML Response: %s" %resp.read() if __name__ == '__main__': submit_form()
執(zhí)行上面示例代碼,得到類似下面結(jié)果:
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 Response to GET request: <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Expires" content="-1"> <title>Login - codepad</title> <link href="/main.css" media="screen" rel="stylesheet" type="text/css"> <style type="text/css"> ????</style> <script src="https://www.google.com/recaptcha/api.js"></script> <script> ???????function onRecaptcha(token) { ?????????document.getElementById("editor-form").submit(); ???????} ????</script> ..................... .....................
相關(guān)文章
- python字符串定義的方式有哪些
- Python讀寫csv文件的操作方法
- Python中find函數(shù)如何使用
- 在Python里面調(diào)用Golang代碼的方法
- Python異步怎么使用等待有時間限制協(xié)程
- Python?Pyperclip模塊怎么安裝和使用
- Python異步之怎么保護(hù)任務(wù)免于取消
- Python異步之在Asyncio中怎么運行阻塞任務(wù)
- Python反射機(jī)制怎么應(yīng)用
- Python錯誤JSONDecodeError:?Expecting?value:?line?1?column?1怎么解決
- Python如何利用手勢識別實現(xiàn)貪吃蛇游戲
- Python 網(wǎng)絡(luò)編程
- Python 請求狀態(tài)代碼
- Python POP3
- Python 線程通信
- Python 測試線程應(yīng)用程序
- Python 基準(zhǔn)測試和分析
- Python 處理器通信
- Python 事件驅(qū)動編程
- Python 反應(yīng)式編程