Python crawler access to web pages the get requests a cookie
Python in the process of accessing the web page,encounter with cookie,so we need to get it.
cookie in Python is form of a dictionary exists ,so cookie is {'cookie':'cookies'}
get cookie need webdriver(),Several browsers/drivers are supported (Firefox, Chrome, Internet Explorer, PhantomJS), as well as the Remote protocol.
1 from selenium import webdriver
Definition function,Because cookie in requests headers.so:
1 headers={} 2 if headers.get('cookie'): 3 'No!' 4 else: 5 'YES!'
Definition function:
def p(url,header): if header.get('cookie'): print 'YES!' else: print 'NO!' headers = {} driver=webdriver.Chrome() driver.get(url) cookie=driver.get_cookies() #print cookie s = [] for i in cookie: lt.append(i.get('value')) s.append(i.get('name') + "=" +i.get('value') ) #print s #headers['cookie'] = ','.join(s) # if headers.get('cookie') header.update(headers) # if no headers.get('cookie') driver.quit() p(url,header) #xiuluo
Interface ~:
1 if __name__ == '__main__': 2 header={'data':'dasda'} 3 url = '' 4 p(url,header)
If there is no entry, the function will not be executed ~~!!
Welcome to Python world! I have a contract in this world! How about you?
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· ShadowSql之.net sql拼写神器
· 感觉程序员要被 AI 淘汰了?学什么才有机会?
· MQTT协议发布和订阅的实现,一步步带你实现发布订阅服务。
· Dify开发必备:分享8个官方文档不曾解释的关键技巧