Use mechanize to log into megaupload

心已入冬 提交于 2019-12-01 11:05:55

Search the error message in the response body:

"Username and password do not match" in br.response().read()

Or check if you got the expected cookie (simple example, tweak as needed):

any(c.domain == ".megaupload.com" and c.name == "user" for c in cj)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!