import urllib.parse
import urllib.request
import time
def __init__(self, parent= None):
QtGui.QWidget.__init__(self,parent)
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
username = 'name'
password = 'pass'
while True:
try:
page=urllib.request.urlopen('http://10.100.56.55:8090/httpclient.html','&username='+username+'@da-iict.org&password='+password+'&btnSubmit=Login')
the_page=page.read()
我一直在試圖讓這段代碼工作。在Python替代2個工程得很好,但在Python V3.2我得到的錯誤「POST數據應該是字節或字節的數量可迭代無法使用urllib發佈數據到登錄表格python v3.2.1
我一直在試着讓這段代碼工作。工作得很好,但在Python v3.2中我得到的錯誤「** POST數據應該是字節或可反覆數量的字節** – nightf0x