Advertisement
LyndenSylvester

Untitled

Jan 6th, 2025
49
0
5 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.50 KB | None | 0 0
  1. Traceback (most recent call last):
  2.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/aiohttp/connector.py", line 1122, in _wrap_create_connection
  3.     return await self._loop.create_connection(*args, **kwargs, sock=sock)
  4.            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5.   File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/asyncio/base_events.py", line 1098, in create_connection
  6.     transport, protocol = await self._create_connection_transport(
  7.                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  8.   File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/asyncio/base_events.py", line 1131, in _create_connection_transport
  9.     await waiter
  10.   File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/asyncio/sslproto.py", line 577, in _on_handshake_complete
  11.     raise handshake_exc
  12.   File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/asyncio/sslproto.py", line 559, in _do_handshake
  13.     self._sslobj.do_handshake()
  14.   File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/ssl.py", line 979, in do_handshake
  15.     self._sslobj.do_handshake()
  16. ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
  17.  
  18. The above exception was the direct cause of the following exception:
  19.  
  20. Traceback (most recent call last):
  21.   File "/Users/jack/Skin-Fighters-Integration/main.py", line 170, in <module>
  22.     main()
  23.   File "/Users/jack/Skin-Fighters-Integration/main.py", line 164, in main
  24.     asyncio.run(runner())
  25.   File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/asyncio/runners.py", line 190, in run
  26.     return runner.run(main)
  27.            ^^^^^^^^^^^^^^^^
  28.   File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/asyncio/runners.py", line 118, in run
  29.     return self._loop.run_until_complete(task)
  30.            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  31.   File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/asyncio/base_events.py", line 650, in run_until_complete
  32.     return future.result()
  33.            ^^^^^^^^^^^^^^^
  34.   File "/Users/jack/Skin-Fighters-Integration/main.py", line 161, in runner
  35.     await bot.start()
  36.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/twitchio/client.py", line 387, in start
  37.     await self.login(token=token, load_tokens=load_tokens, save_tokens=save_tokens)
  38.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/twitchio/client.py", line 314, in login
  39.     payload: ClientCredentialsPayload = await self._http.client_credentials_token()
  40.                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  41.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/twitchio/authentication/oauth.py", line 120, in client_credentials_token
  42.     data: ClientCredentialsResponse = await self.request_json(route)
  43.                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  44.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/twitchio/http.py", line 530, in request_json
  45.     data = await self.request(route)
  46.            ^^^^^^^^^^^^^^^^^^^^^^^^^
  47.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/twitchio/authentication/tokens.py", line 184, in request
  48.     data: RawResponse | str | None = await super().request(route)
  49.                                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  50.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/twitchio/http.py", line 507, in request
  51.     async with self._session.request(
  52.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/aiohttp/client.py", line 1425, in __aenter__
  53.     self._resp: _RetType = await self._coro
  54.                            ^^^^^^^^^^^^^^^^
  55.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/aiohttp/client.py", line 703, in _request
  56.     conn = await self._connector.connect(
  57.            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  58.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/aiohttp/connector.py", line 548, in connect
  59.     proto = await self._create_connection(req, traces, timeout)
  60.             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  61.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/aiohttp/connector.py", line 1056, in _create_connection
  62.     _, proto = await self._create_direct_connection(req, traces, timeout)
  63.                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  64.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/aiohttp/connector.py", line 1400, in _create_direct_connection
  65.     raise last_exc
  66.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/aiohttp/connector.py", line 1369, in _create_direct_connection
  67.     transp, proto = await self._wrap_create_connection(
  68.                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  69.   File "/Users/jack/Skin-Fighters-Integration/.venv/lib/python3.11/site-packages/aiohttp/connector.py", line 1124, in _wrap_create_connection
  70.     raise ClientConnectorCertificateError(req.connection_key, exc) from exc
  71. aiohttp.client_exceptions.ClientConnectorCertificateError: Cannot connect to host id.twitch.tv:443 ssl:True [SSLCertVerificationError: (1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)')]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement