时间:2021-05-22
本文实例讲述了python实现的登录与提交表单数据功能。分享给大家供大家参考,具体如下:
# !/usr/bin/env python# -*- coding: utf-8 -*-import urllib2import urllibimport cookielibimport jsonimport httplibimport reimport requestsimport osimport timeimport requests, requests.utils, pickletry: import cookielib # 兼容Python2except: import http.cookiejar as cookielibs=requests.session()print s.headersfrom requests.packages.urllib3.exceptions import InsecureRequestWarningrequests.packages.urllib3.disable_warnings(InsecureRequestWarning)# with open('cook.txt', 'r') as f:# cookies = json.loads(f.read())# print cookies# try:# with open("cookies.txt", "r") as f:# load_cookies = json.loads(f.read())# s.cookies = requests.utils.cookiejar_from_dict(load_cookies)# print s.get('https://fms.lvchengcaifu.com/welcome').content# except:#url = "https://oauth2.lvchengcaifu.com/login"headers={ 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:54.0) Gecko/20100101 Firefox/54.0', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',}r= s.get(url,headers=headers,verify=False)r=r.textprint rprint type(r)r = r.encode('unicode-escape')print type(r)p = re.compile('.*_csrf"\s+value="(.*?)".*')m = p.match(r)token = m.group(1)print tokenheaders={ 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:54.0) Gecko/20100101 Firefox/54.0', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'csrf_token': token}imgurl='https://oauth2.lvchengcaifu.com/Kaptcha.jpg'r = s.get(imgurl)r = r.content# print sprint type(r)print rfilename = 'E:\image.jpg'local = open(filename, 'wb')local.write(r)local.close()print "登录二维码已经下载到本地" + "[" + filename + "]" ##打开图片os.system("start %s" % filename);code = raw_input('输入验证码: ')print codeprint len(code)## <input type="hidden" id="_csrf" name="_csrf" value="6f772fd9-14da-40c4-b317-e8d9a4336203" />login_url='https://oauth2.lvchengcaifu.com/login/form'data = {'username': '1111', 'password': '2222@', '_csrf': token,'validCode':code}response = s.post(login_url, data=data,headers=headers)print response.contentaa=s.cookiesprint '-------------------------------------'print aa更多关于Python相关内容可查看本站专题:《Python Socket编程技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Django之META与前后端交互1提交表单之GET前端提交数据与发送1)提交表单数据2)提交JSON数据后端的数据接收与响应1)接收GET请求数据2)接收PO
HTML表单提交后,返回,保留表单数据Html如何使表达提交后,点回退/返回,保留表单数据?如果a页是一个表单,提交时因某种原因转至出错页面b,如何在b中返回已
在提交表单数据时,提交按钮为submit类型,以layui为js框架时,会重复提交表单数据,为防止这一情况,有效的做法是:在里面,加上lay-filter="f
Form表单的功能自动生成HTML表单元素检查表单数据的合法性如果验证错误,重新显示表单(数据不会重置)数据类型转换(字符类型的数据转换成相应的Python类型
表单在网页中主要负责数据采集功能。一个表单有三个基本组成部分:表单标签:这里面包含了处理表单数据所用CGI程序的URL以及数据提交到服务器的方法。表单域:包含了