python requests 包 使用
Posted 三目鸟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python requests 包 使用相关的知识,希望对你有一定的参考价值。
1: 发送带 cookie 的 请求
resp = requests.get(self.url_item_list_first_page, cookies=self.cookies)
>>> url = ‘http://httpbin.org/cookies‘ >>> cookies = dict(cookies_are=‘working‘) >>> r = requests.get(url, cookies=cookies) >>> r.text ‘{"cookies": {"cookies_are": "working"}}‘
>>> jar = requests.cookies.RequestsCookieJar() >>> jar.set(‘tasty_cookie‘, ‘yum‘, domain=‘httpbin.org‘, path=‘/cookies‘) >>> jar.set(‘gross_cookie‘, ‘blech‘, domain=‘httpbin.org‘, path=‘/elsewhere‘) >>> url = ‘http://httpbin.org/cookies‘ >>> r = requests.get(url, cookies=jar) >>> r.text ‘{"cookies": {"tasty_cookie": "yum"}}‘
官网源码: http://docs.python-requests.org/zh_CN/latest/user/quickstart.html#cookie
以上是关于python requests 包 使用的主要内容,如果未能解决你的问题,请参考以下文章
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段
[未解决问题记录]python asyncio+aiohttp出现Exception ignored:RuntimeError('Event loop is closed')(代码片段