python服務器端收發請求的實現代碼

發送get/post請求html # coding:utf-8 import urllib2 # 定義post的地址 url = 'http://127.0.0.1:8765/' post_data = "aaaaaaaaaaaaaaa" # 提交,發送數據 req = urllib2.urlopen(url, post_data) # 獲取提交後返回的信息 content = req
相關文章
相關標籤/搜索