gpt4 book ai didi

python - 使用同一个ClientSession获取多个不同的url

转载 作者:太空宇宙 更新时间:2023-11-04 02:14:01 28 4
gpt4 key购买 nike

通常我在请求中编写代码,因此我对 aiohttp 没有太多经验。但由于请求被阻止,我必须使用 aiohttp。

那么我的代码在请求中是什么样子的:

#Account gen code is here using requests 

r = requests.get(product_link)

watch_link = soup(r.text, "html.parser").find("div", {"id": "vi-atl-lnk"}).a["href"]

r = requests.get(watch_link)
r = requests.get(watch_link)

因此,它的作用是转到 Ebay 列表,然后使用 BS4 抓取该列表源代码中的 watch 链接。然后它使用 GET 请求将列表添加到观察列表。添加到监视列表链接上必须有 2 个 GET 请求,否则它不会真正添加它。

那是在请求中,但现在我需要在 aiohttp 中编写它。我得到的最接近的是:

session = aiohttp.ClientSession()

async def main():
#Account gen code is here using aiohttp and session
async with session.get(product_link) as resp:
r = await resp.text()
watch_link = soup(r, "html.parser").find("div", {"id": "vi-atl-lnk"}).a["href"]
async with session.get(watch_link) as respp:
time.sleep(.1)
async with session.get(watch_link) as resp:
time.sleep(.1)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

我试过了,它为我运行了,但是它没有将项目添加到监视列表中。上面的代码(未显示,因为它与 AFAIK 这个问题无关)完美运行并创建了帐户。但是当涉及到监视列表位时,它就不起作用了。这可能是什么原因?

最佳答案

我试了很多次,最后发现是 cookie 的问题。您需要将代码更改为 aiohttp.ClientSession(headers=headers)。顺便说一句,真相可能在 cookies 中,其中将 ; 转换为 \073

Not aiohttp.ClientSession(headers=headers,cookies=cookies)

这是我整理的代码。

import aiohttp
import asyncio
from bs4 import BeautifulSoup as soup

product_link = ""

cookies = {"Cookie":"_ga=GA1.2.808...."}
headers = {"Connection": "keep-alive"}
headers.update(cookies)

async def main():
#Account gen code is here using aiohttp and session
async with aiohttp.ClientSession(headers=headers) as sessions:

async with sessions.get(product_link) as resp:
r = await resp.text()
watch_link = soup(r, "lxml").find("div", {"id": "vi-atl-lnk"}).a.get("href")
print(watch_link)

async with sessions.get(watch_link) as resp:
pass

async with sessions.get(watch_link) as resp:
pass


loop = asyncio.get_event_loop()
loop.run_until_complete(main())

关于python - 使用同一个ClientSession获取多个不同的url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53048654/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com