首页 > 代码库 > Cookies 模拟登录
Cookies 模拟登录
#coding=utf-8 import requests from lxml import etree from multiprocessing.dummy import Pool cook={"Cookie":"your cookies"} url =‘http://weibo.cn/u/uid‘ #html=requests.get(url).content #print html html=requests.get(url,cookies=cook).content #html=requests.get(url,cookies=cook).text #html=bytes(bytearray(html,encoding=‘utf-8‘)) selector = etree.HTML(html) content =selector.xpath(‘//span[@class="ctt"]‘) for each in content: text=each.xpath(‘string(.)‘) b = 1 print text
运行结果:
方法一:
html=requests.get(url,cookies=cook).content
方法二:
html=requests.get(url,cookies=cook).text html=bytes(bytearray(html,encoding=‘utf-8‘))
极客课程--定向爬虫:简单的模拟登录 http://www.jikexueyuan.com/course/995.html
核心内容:
1.Fiddler 的介绍和使用
2.Fiddler 抓取分析数据包
3.已知 Cookies 登录新浪微博
4.Requests 模拟登录
Cookies 模拟登录
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。