Python自动填充与机械化

Python自动填充与机械化,第1张

Python自动填充与机械化

这将帮助您登录一个站点并下载一个页面,例如:

import mechanizebr=mechanize.Browser()br.open('http://www.yourfavoritesite.com')br.select_form(nr=0) #check yoursite forms to match the correct numberbr['Username']='Username' #use the proper input type=text namebr['Password']='Password' #use the proper input type=password namebr.submit()br.retrieve('https://www.yourfavoritesite.com/pagetoretrieve.html','yourfavoritepage.html')

脚本假定您的登录表单是页面的第一页,输入名称是

Username
Password

您还可以通过以下方式按名称选择表单:

br.select_form(name="thisthing")

请将此脚本调整为您喜欢的网站登录页面。
正如AlexMartelli所指出的那样,应使用一些配置参数将此脚本通用化以处理不同的站点。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5631238.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存