Python Web表單提交
Python Web表單提交
通常,與網頁的交互需要一些數據通過html頁面中的表單提交給服務器。這些網絡表單通常用于諸如注冊新帳戶或提供一些信息(例如姓名或卷號)以檢索檢查結果的過程。requests模塊使用帶有所需參數的POST方法優雅地處理此問題。
示例
在下面的示例中,我們通過提供用戶名和密碼值來使用網站的注冊表單。提交值后,將打印響應的結果。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.090948.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()
執行上面示例代碼,得到類似下面結果:
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.090948.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> ..................... .....................
相關文章
- python字符串定義的方式有哪些
- Python讀寫csv文件的操作方法
- Python中find函數如何使用
- 在Python里面調用Golang代碼的方法
- Python異步怎么使用等待有時間限制協程
- Python?Pyperclip模塊怎么安裝和使用
- Python異步之怎么保護任務免于取消
- Python異步之在Asyncio中怎么運行阻塞任務
- Python反射機制怎么應用
- Python錯誤JSONDecodeError:?Expecting?value:?line?1?column?1怎么解決
- Python如何利用手勢識別實現貪吃蛇游戲
- Python 網絡編程
- Python 請求狀態代碼
- Python POP3
- Python 線程通信
- Python 測試線程應用程序
- Python 基準測試和分析
- Python 處理器通信
- Python 事件驅動編程
- Python 反應式編程