精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

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 數據庫和SQL

Python 網絡編程

相關文章