synodriver / nonebot_plugin_picsearcher

pic search plugin for nonebot2
GNU General Public License v3.0
110 stars 16 forks source link

使用EX搜图,返回的内容没有相关信息 #53

Closed YTheSeven closed 1 year ago

YTheSeven commented 1 year ago

image 如图,希望可以有个链接...

YTheSeven commented 1 year ago

看了眼源码的返回格式发现和机器人返回的不一样,感觉是没匹配上搜索方式,我自己再看看...

synodriver commented 1 year ago

是cookie问题吗?

YTheSeven commented 1 year ago

是cookie问题吗?

大概是因为我yunzai的bot的命令添加了一个前缀,#ex没有匹配上ex搜索,试了试取消命令前缀,报了参数错误

Traceback (most recent call last):
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/aiohttp/connector.py", line 980, in _wrap_create_connection
    return await self._loop.create_connection(*args, **kwargs)  # type: ignore[return-value]  # noqa
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/asyncio/base_events.py", line 1073, in create_connection
    raise exceptions[0]
  File "/usr/local/lib/python3.11/asyncio/base_events.py", line 1058, in create_connection
    sock = await self._connect_sock(
           ^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/asyncio/base_events.py", line 964, in _connect_sock
    await self.sock_connect(sock, address)
  File "/usr/local/lib/python3.11/asyncio/selector_events.py", line 633, in sock_connect
    return await fut
           ^^^^^^^^^
  File "/usr/local/lib/python3.11/asyncio/selector_events.py", line 668, in _sock_connect_cb
    raise OSError(err, f'Connect call failed {address}')
TimeoutError: [Errno 110] Connect call failed ('31.13.85.53', 443)

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/nonebot_plugin_picsearcher/__init__.py", line 83, in get_setu
    async for msg in limiter(get_des(url, mod), getattr(bot.config, "search_limit", None) or 2):
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/nonebot_plugin_picsearcher/utils.py", line 9, in limiter
    yield await gen.asend(None)
          ^^^^^^^^^^^^^^^^^^^^^
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/nonebot_plugin_picsearcher/__init__.py", line 39, in get_des
    async for msg in get_des_ex(url):
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/nonebot_plugin_picsearcher/ex.py", line 99, in get_des
    image_data: List[Tuple] = await get_pic_from_url(url)
                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/nonebot_plugin_picsearcher/ex.py", line 74, in get_pic_from_url
    async with session.post(target, data=data, headers=headers, proxy=proxy) as res:
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/aiohttp/client.py", line 1141, in __aenter__
    self._resp = await self._coro
                 ^^^^^^^^^^^^^^^^
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/aiohttp/client.py", line 536, in _request
    conn = await self._connector.connect(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/aiohttp/connector.py", line 540, in connect
    proto = await self._create_connection(req, traces, timeout)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/aiohttp/connector.py", line 901, in _create_connection
    _, proto = await self._create_direct_connection(req, traces, timeout)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/aiohttp/connector.py", line 1206, in _create_direct_connection
    raise last_exc
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/aiohttp/connector.py", line 1175, in _create_direct_connection
    transp, proto = await self._wrap_create_connection(
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/xxx/.cache/pypoetry/virtualenvs/py-plugin-tbyCEf0r-py3.11/lib/python3.11/site-packages/aiohttp/connector.py", line 988, in _wrap_create_connection
    raise client_error(req.connection_key, exc) from exc
aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host upld.e-hentai.org:443 ssl:default [Connect call failed ('31.13.85.53', 443)]
YTheSeven commented 1 year ago

emmm,看着是超时了