You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while retry_count < max_retries:
try:
async with Network(proxies=PROXIES) as client:
google = Google(client=client)
resp = await google.search(file=file)
您好,非常感谢您的库为我的工作带来很多便利,但最近我遇到了一个问题。
`@logger.catch()
async def shape_async(file) -> GoogleResponse:
max_retries = 5
retry_count = 0
retry_delay = 5 # 重试间隔时间(秒)
consoleAndFileLogger.info(f"dealing:{file}")
`
其中的变量resp
raw中没有值,但我点击resp.url是可以正常访问的
https://www.google.com/search?tbs=sbi:AMhZZiuoUpVZZcjPPKtVZzbEgC3SC0Or24gg8MTnFn5wHAu2YXtTXGKiwf0ih2qOThLZPZ7KBeYhAO-2MXVtSwKFoGmByvhfh-aK_1BEehAEJ4ayfG9nv1C4jxOwRLZEw-IuCqLVV0QtHaFKqNFWDbQVeo1BJxR5kZqwJ3LRkFXB0VtCCyqMJbqhvGX4u3SK0m1j2O8ogw4VKwq4Of4eU64NmcRJQKHKtfYGpokdqtjP-JzCoKPxvOklmr0oPPhyYKl05YIvHF-gtrIJZ0CbcU4PtAGQ_1zmsZjsMPV-349SzFRyUPe61WVKpVuKXapkJRf0CYmzUoBONE&safe=off
我尝试更换我的代理ip仍没有解决。
The text was updated successfully, but these errors were encountered: