if response.status_code == 200:
print(response.text)
返回的结果变成:
{
“headers”: {
“Accept”: “text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8”,
“Accept-Encoding”: “br, gzip, deflate”,
“Accept-Language”: “zh-cn”,
“Host”: “httpbin.org”,
“User-Agent”: “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.3 Safari/605.1.15”
}
}
在应用爬虫的时候,可以随机跟换其他 User-Agent 避免触发反爬。
### 2、selenium 模拟使用浏览器伪装 headers
使用自动化测试工具 selenium 可以模拟使用浏览器访问网站。本文使用 selenium 3.14.0 版本,该版本支持 Chrome 和 Firefox 浏览器。要使用浏览器需下载对应版本的 driver。
Driver 下载地址:
Browser Links ——— —————————————————————- Chrome https://sites.google.com/a/chromium.org/chromedriver/downloads Firefox https://github.com/mozilla/geckodriver/releases
使用 webdriver 访问本身自带浏览器的 headers。
from selenium import webdriver
url = ‘https://httpbin.org/headers’
driver_path = ‘/path/to/chromedriver’
browser = webdriver.Chrome(executable_path=driver_path)
browser.get(url)
print(browser.page_source)
browser.close()
打印出返回的网页代码:
{ "headers": { "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8", "Accept-Encoding": "gzip, deflate, br", "Accept-Language": "zh-CN,zh;q=0.9", "Host": "httpbin.org", "Upgrade-Insecure-Requests": "1", "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36" } }
浏览器 driver 也能伪装 User-Agent,只需在创建 webdriver 浏览器对象的时候传入设置即可:
from selenium import webdriver
url = ‘https://httpbin.org/headers’
user_agent = “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.3 Safari/605.1.15”
driver_path = ‘/path/to/chromedriver’
opt = webdriver.ChromeOptions()
opt.add_argument(‘–user-agent=%s’ % user_agent)
browser = webdriver.Chrome(executable_path=driver_path, options=opt)
browser.get(url)
print(browser.page_source)
browser.close()
此时返回的 User-Agent 就变成传入的设置了。
{ "headers": { "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8", "Accept-Encoding": "gzip, deflate, br", "Accept-Language": "zh-CN,zh;q=0.9", "Host": "httpbin.org", "Upgrade-Insecure-Requests": "1", "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.3 Safari/605.1.15" } }
Firefox 浏览器 driver 的设置有所不同:
from selenium import webdriver
url = ‘https://httpbin.org/headers’
user_agent = “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.3 Safari/605.1.15”
driver_path = ‘/path/to/geckodriver’
profile = webdriver.FirefoxProfile()
profile.set_preference(“general.useragent.override”, user_agent)
browser = webdriver.Firefox(executable_path=driver_path, firefox_profile=profile)
browser.get(url)
print(browser.page_source)
browser.close()
### 3、requests 使用 ip 代理发送请求
当一个 ip 短时间访问太过频繁时,网站的反爬机制会被触发,将会要求输入验证码甚至封锁 ip 禁止访问。此时需要使用代理 ip 发起请求才可获取正确的网页。
访问 https://httpbin.org/ip 网址可以查看自己的 ip。
import requests
url = ‘https://httpbin.org/ip’
response = requests.get(url)
print(response.text)
返回本机网络的ip:
{
“origin”: “202.121.167.254, 202.121.167.254”
}
使用代理 IP 与1中伪装 headers 的方式相似,比如现在得到一个代理ip:58.58.213.55:8888,使用如下:
import requests
proxy = {
‘http’: ‘http://58.58.213.55:8888’,
‘https’: ‘http://58.58.213.55:8888’
}
response = requests.get(‘https://httpbin.org/ip’, proxies=proxy)
print(response.text)
返回的就是代理 ip
{
“origin”: “58.58.213.55, 58.58.213.55”
}
### 4、selenium webdriver 使用代理 ip
chrome driver 使用代理 ip 的方式与伪装 user-agent 相似:
from selenium import webdriver
url = ‘https://httpbin.org/ip’
proxy = ‘58.58.213.55:8888’
driver_path = ‘/path/to/chromedriver’
opt = webdriver.ChromeOptions()
opt.add_argument(‘–proxy-server=’ + proxy)
browser = webdriver.Chrome(executable_path=driver_path, options=opt)
browser.get(url)
print(browser.page_source)
browser.close()
打印结果:
{ "origin": "58.58.213.55, 58.58.213.55" }
firefox driver 的设置略有不同,并且需要下载浏览器扩展 `close_proxy_authentication` 取消代理用户认证。可通过谷歌下载,本文使用 firefox 65.0.1 (64 位) 版本,可用的扩展文件是: [close\_proxy\_authentication-1.1-sm+tb+fx.xpi]。
代码如下:
from selenium import webdriver
url = ‘https://httpbin.org/ip’
proxy_ip = ‘58.58.213.55’
proxy_port = 8888
xpi = ‘/path/to/close_proxy_authentication-1.1-sm+tb+fx.xpi’
driver_path = ‘/path/to/geckodriver’
profile = webdriver.FirefoxProfile()
profile.set_preference(‘network.proxy.type’, 1)
profile.set_preference(‘network.proxy.http’, proxy_ip) # http 代理
profile.set_preference(‘network.proxy.http_port’, proxy_port)
现在能在网上找到很多很多的学习资源,有免费的也有收费的,当我拿到1套比较全的学习资源之前,我并没着急去看第1节,我而是去审视这套资源是否值得学习,有时候也会去问一些学长的意见,如果可以之后,我会对这套学习资源做1个学习计划,我的学习计划主要包括规划图和学习进度表。
分享给大家这份我薅到的免费视频资料,质量还不错,大家可以跟着学习
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!