python 自动登录

Posted 沧海一粒水

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 自动登录相关的知识,希望对你有一定的参考价值。

import scrapy
from scrapy.http import Request,FormRequest

class TySpider(scrapy.Spider):
name = ‘ty‘
allowed_domains = [‘iqianyue.com‘]
#start_urls = [‘http://iqianyue.com/‘]
header={ ‘User-Agent‘:‘Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; 360SE)‘}

def start_requests(self):
return [Request(‘http://edu.iqianyue.com/index_user_login.html‘,meta={‘cookiejar‘:1},callback=self.parse)]


def parse(self, response):
data = {
‘number‘:‘xiesongyou‘,
‘passwd‘:‘xsy667437‘,
}
print("登录中.....")
return [FormRequest.from_response(response,
meta={‘cookiejar‘:response.meta[‘cookiejar‘]},
headers=self.header,
formdata=data,
callback=self.next,)]
def next(self,response):
# rst=response.body
# print(rst.decode())
print(response.xpath("/html/head/title/text()").extract())
yield Request(‘http://edu.iqianyue.com/index_user_index.html‘,
callback=self.next2,
meta={"cookiejar":True})
def next2(self,response):
print(response.xpath("/html/head/title/text()").extract())
# rst = response.body
# print(‘- ‘ * 60)
# print(rst.decode())



































以上是关于python 自动登录的主要内容,如果未能解决你的问题,请参考以下文章

一次完整的自动化登录测试-基于python+selenium进行cnblog的自动化登录测试

一次完整的自动化登录测试-基于python+selenium进行cnblog的自动化登录测试

使用Python自动登录Gmail

python网络爬虫之使用scrapy自动登录网站

python 自动登录

Selenium2+python自动化48-登录方法(参数化)