我找不到aiohttp
与登录页面结合使用的工作代码。目标很简单:使用用户名和密码进行基于表单的身份验证,我希望在随后的 aiohttp 异步获取调用中使用该 cookie。
似乎整个 Session 概念在版本之间的 aiohttp 中发生了变化,所以我很好奇如何在最新版本中实现它。我不确定如何获取 cookie 一次然后在异步事务中使用它。
我真的很想看到一个完整的例子,因为不幸的是我无法让它与我在各处找到的片段一起工作。
我想这可能是开始,但我不确定,我当然不知道如何将所有东西连接到它(我还需要一个aiohttp.TCPConnector
吗?)
http://aiohttp.readthedocs.org/en/latest/ client_reference.html#aiohttp.client.ClientSession
我在 Python 2 中使用 mechanize 的非异步版本示例(尽管我自然地将 Python 3 用于 asyncio 等):
import mechanize
import urllib
class MyClass()
def __init__(self):
self.data = {'username' : 'me', 'password' : 'pw'}
self.login_url = 'http://example.com/login'
self.login()
def call(self, url):
request2 = mechanize.Request(url)
self.cookie_jar.add_cookie_header(request2)
response2 = mechanize.urlopen(request2).read()
return response2
def login(self):
request = mechanize.Request(self.login_url)
# 'username' and 'password' keys are actually the name of the <input>
logInfo = urllib.urlencode({'username' : self.data['username'],
'password' : self.data['password']})
response = mechanize.urlopen(request, data = logInfo)
cookie_jar = mechanize.CookieJar()
cookie_jar.extract_cookies(response, request)
self.cookie_jar = cookie_jar
mc = MyClass()
mc.call('http://example.com/other_url')