用Python的urllib库提交WEB表单
程序员文章站
2024-01-24 13:38:52
复制代码 代码如下:class entrydemo( frame ): """demonstrate entrys and event binding""" chosenr...
复制代码 代码如下:
class entrydemo( frame ):
"""demonstrate entrys and event binding"""
chosenrange = 2
url_login="http://.../ipgw/ipgw.ipgw/"
uid = '' #用户名
password = '' # 密码
operation = '' # 操作
range = '2' # 范围
the_page = '' # web服务器返回页面
# 表单的input 值一定要记得填齐全
def login(self):
values = {
'uid' : self.uid,
'password' : self.password,
'operation' : self.operation,
'range' : self.range, # 1:国际 2:国内
'timeout':'0'
}
postdata = urllib.urlencode(values) # 表单值编码
req = urllib2.request(self.url_login, postdata) # 服务器请求
response = urllib2.urlopen(req)
self.the_page = response.read()
#print self.the_page
推荐阅读
-
用Python的urllib库提交WEB表单
-
为什么用div加入小小的表单后,居中的页面整体会左移一点点,php搜索数据库返回数据后,也会这样_html/css_WEB-ITnose
-
用Javascript同时提交多个Web表单的方法_javascript技巧
-
Python-Web框架之 - 利用SQLALchemy创建与数据库MySQL的连接, 详解用Flask时会遇到的一些大坑 !
-
用Javascript同时提交多个Web表单的方法_javascript技巧
-
用Python的urllib库提交WEB表单
-
jsp表单提交后保留表单数据,但查询数据库的数据需要保存_html/css_WEB-ITnose
-
在不刷新的情况下用ajax提交form表单到数据库
-
jsp表单提交后保留表单数据,但查询数据库的数据需要保存_html/css_WEB-ITnose
-
在不刷新的情况下用ajax提交form表单到数据库