├── README.md ├── assets ├── DeepL.png ├── OpenAI.png └── Translation.png ├── icon.png ├── info.plist ├── libs ├── CHANGELOG.md ├── LICENSE ├── SECURITY.md ├── aiohttp-3.8.4.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── aiohttp │ ├── .hash │ │ ├── _cparser.pxd.hash │ │ ├── _find_header.pxd.hash │ │ ├── _helpers.pyi.hash │ │ ├── _helpers.pyx.hash │ │ ├── _http_parser.pyx.hash │ │ ├── _http_writer.pyx.hash │ │ ├── _websocket.pyx.hash │ │ └── hdrs.py.hash │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── abc.cpython-311.pyc │ │ ├── base_protocol.cpython-311.pyc │ │ ├── client.cpython-311.pyc │ │ ├── client_exceptions.cpython-311.pyc │ │ ├── client_proto.cpython-311.pyc │ │ ├── client_reqrep.cpython-311.pyc │ │ ├── client_ws.cpython-311.pyc │ │ ├── connector.cpython-311.pyc │ │ ├── cookiejar.cpython-311.pyc │ │ ├── formdata.cpython-311.pyc │ │ ├── hdrs.cpython-311.pyc │ │ ├── helpers.cpython-311.pyc │ │ ├── http.cpython-311.pyc │ │ ├── http_exceptions.cpython-311.pyc │ │ ├── http_parser.cpython-311.pyc │ │ ├── http_websocket.cpython-311.pyc │ │ ├── http_writer.cpython-311.pyc │ │ ├── locks.cpython-311.pyc │ │ ├── log.cpython-311.pyc │ │ ├── multipart.cpython-311.pyc │ │ ├── payload.cpython-311.pyc │ │ ├── payload_streamer.cpython-311.pyc │ │ ├── resolver.cpython-311.pyc │ │ ├── streams.cpython-311.pyc │ │ ├── tcp_helpers.cpython-311.pyc │ │ ├── tracing.cpython-311.pyc │ │ ├── typedefs.cpython-311.pyc │ │ └── worker.cpython-311.pyc │ ├── _cparser.pxd │ ├── _find_header.pxd │ ├── _headers.pxi │ ├── _helpers.cpython-39-darwin.so │ ├── _helpers.pyi │ ├── _helpers.pyx │ ├── _http_parser.cpython-39-darwin.so │ ├── _http_parser.pyx │ ├── _http_writer.cpython-39-darwin.so │ ├── _http_writer.pyx │ ├── _websocket.cpython-39-darwin.so │ ├── _websocket.pyx │ ├── abc.py │ ├── base_protocol.py │ ├── client.py │ ├── client_exceptions.py │ ├── client_proto.py │ ├── client_reqrep.py │ ├── client_ws.py │ ├── connector.py │ ├── cookiejar.py │ ├── formdata.py │ ├── hdrs.py │ ├── helpers.py │ ├── http.py │ ├── http_exceptions.py │ ├── http_parser.py │ ├── http_websocket.py │ ├── http_writer.py │ ├── locks.py │ ├── log.py │ ├── multipart.py │ ├── payload.py │ ├── payload_streamer.py │ ├── py.typed │ ├── pytest_plugin.py │ ├── resolver.py │ ├── streams.py │ ├── tcp_helpers.py │ ├── test_utils.py │ ├── tracing.py │ ├── typedefs.py │ ├── web.py │ ├── web_app.py │ ├── web_exceptions.py │ ├── web_fileresponse.py │ ├── web_log.py │ ├── web_middlewares.py │ ├── web_protocol.py │ ├── web_request.py │ ├── web_response.py │ ├── web_routedef.py │ ├── web_runner.py │ ├── web_server.py │ ├── web_urldispatcher.py │ ├── web_ws.py │ └── worker.py ├── aiosignal-1.3.1.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── aiosignal │ ├── __init__.py │ ├── __init__.pyi │ ├── __pycache__ │ │ └── __init__.cpython-311.pyc │ └── py.typed ├── async_timeout-4.0.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── top_level.txt │ └── zip-safe ├── async_timeout │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-311.pyc │ └── py.typed ├── attr │ ├── __init__.py │ ├── __init__.pyi │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _cmp.cpython-311.pyc │ │ ├── _compat.cpython-311.pyc │ │ ├── _config.cpython-311.pyc │ │ ├── _funcs.cpython-311.pyc │ │ ├── _make.cpython-311.pyc │ │ ├── _next_gen.cpython-311.pyc │ │ ├── _version_info.cpython-311.pyc │ │ ├── converters.cpython-311.pyc │ │ ├── exceptions.cpython-311.pyc │ │ ├── filters.cpython-311.pyc │ │ ├── setters.cpython-311.pyc │ │ └── validators.cpython-311.pyc │ ├── _cmp.py │ ├── _cmp.pyi │ ├── _compat.py │ ├── _config.py │ ├── _funcs.py │ ├── _make.py │ ├── _next_gen.py │ ├── _typing_compat.pyi │ ├── _version_info.py │ ├── _version_info.pyi │ ├── converters.py │ ├── converters.pyi │ ├── exceptions.py │ ├── exceptions.pyi │ ├── filters.py │ ├── filters.pyi │ ├── py.typed │ ├── setters.py │ ├── setters.pyi │ ├── validators.py │ └── validators.pyi ├── attrs-23.1.0.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── licenses │ │ └── LICENSE ├── attrs │ ├── __init__.py │ ├── __init__.pyi │ ├── converters.py │ ├── exceptions.py │ ├── filters.py │ ├── py.typed │ ├── setters.py │ └── validators.py ├── bin │ ├── deepl │ ├── normalizer │ ├── openai │ └── tqdm ├── certifi-2023.5.7.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ └── core.cpython-311.pyc │ ├── cacert.pem │ ├── core.py │ └── py.typed ├── chardet-3.0.4.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt ├── chardet │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── big5freq.cpython-311.pyc │ │ ├── big5prober.cpython-311.pyc │ │ ├── chardistribution.cpython-311.pyc │ │ ├── charsetgroupprober.cpython-311.pyc │ │ ├── charsetprober.cpython-311.pyc │ │ ├── codingstatemachine.cpython-311.pyc │ │ ├── compat.cpython-311.pyc │ │ ├── cp949prober.cpython-311.pyc │ │ ├── enums.cpython-311.pyc │ │ ├── escprober.cpython-311.pyc │ │ ├── escsm.cpython-311.pyc │ │ ├── eucjpprober.cpython-311.pyc │ │ ├── euckrfreq.cpython-311.pyc │ │ ├── euckrprober.cpython-311.pyc │ │ ├── euctwfreq.cpython-311.pyc │ │ ├── euctwprober.cpython-311.pyc │ │ ├── gb2312freq.cpython-311.pyc │ │ ├── gb2312prober.cpython-311.pyc │ │ ├── hebrewprober.cpython-311.pyc │ │ ├── jisfreq.cpython-311.pyc │ │ ├── jpcntx.cpython-311.pyc │ │ ├── langbulgarianmodel.cpython-311.pyc │ │ ├── langcyrillicmodel.cpython-311.pyc │ │ ├── langgreekmodel.cpython-311.pyc │ │ ├── langhebrewmodel.cpython-311.pyc │ │ ├── langthaimodel.cpython-311.pyc │ │ ├── langturkishmodel.cpython-311.pyc │ │ ├── latin1prober.cpython-311.pyc │ │ ├── mbcharsetprober.cpython-311.pyc │ │ ├── mbcsgroupprober.cpython-311.pyc │ │ ├── mbcssm.cpython-311.pyc │ │ ├── sbcharsetprober.cpython-311.pyc │ │ ├── sbcsgroupprober.cpython-311.pyc │ │ ├── sjisprober.cpython-311.pyc │ │ ├── universaldetector.cpython-311.pyc │ │ ├── utf8prober.cpython-311.pyc │ │ └── version.cpython-311.pyc │ ├── big5freq.py │ ├── big5prober.py │ ├── chardistribution.py │ ├── charsetgroupprober.py │ ├── charsetprober.py │ ├── cli │ │ ├── __init__.py │ │ └── chardetect.py │ ├── codingstatemachine.py │ ├── compat.py │ ├── cp949prober.py │ ├── enums.py │ ├── escprober.py │ ├── escsm.py │ ├── eucjpprober.py │ ├── euckrfreq.py │ ├── euckrprober.py │ ├── euctwfreq.py │ ├── euctwprober.py │ ├── gb2312freq.py │ ├── gb2312prober.py │ ├── hebrewprober.py │ ├── jisfreq.py │ ├── jpcntx.py │ ├── langbulgarianmodel.py │ ├── langcyrillicmodel.py │ ├── langgreekmodel.py │ ├── langhebrewmodel.py │ ├── langhungarianmodel.py │ ├── langthaimodel.py │ ├── langturkishmodel.py │ ├── latin1prober.py │ ├── mbcharsetprober.py │ ├── mbcsgroupprober.py │ ├── mbcssm.py │ ├── sbcharsetprober.py │ ├── sbcsgroupprober.py │ ├── sjisprober.py │ ├── universaldetector.py │ ├── utf8prober.py │ └── version.py ├── charset_normalizer-3.1.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt ├── charset_normalizer │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── api.cpython-311.pyc │ │ ├── cd.cpython-311.pyc │ │ ├── constant.cpython-311.pyc │ │ ├── legacy.cpython-311.pyc │ │ ├── md.cpython-311.pyc │ │ ├── models.cpython-311.pyc │ │ ├── utils.cpython-311.pyc │ │ └── version.cpython-311.pyc │ ├── api.py │ ├── assets │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-311.pyc │ ├── cd.py │ ├── cli │ │ ├── __init__.py │ │ └── normalizer.py │ ├── constant.py │ ├── legacy.py │ ├── md.cpython-39-darwin.so │ ├── md.py │ ├── md__mypyc.cpython-39-darwin.so │ ├── models.py │ ├── py.typed │ ├── utils.py │ └── version.py ├── deepl-1.14.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── entry_points.txt ├── deepl │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── exceptions.cpython-311.pyc │ │ ├── http_client.cpython-311.pyc │ │ ├── translator.cpython-311.pyc │ │ ├── util.cpython-311.pyc │ │ └── version.cpython-311.pyc │ ├── exceptions.py │ ├── http_client.py │ ├── translator.py │ ├── util.py │ └── version.py ├── frozenlist-1.3.3.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── frozenlist │ ├── __init__.py │ ├── __init__.pyi │ ├── __pycache__ │ │ └── __init__.cpython-311.pyc │ ├── _frozenlist.cpython-39-darwin.so │ ├── _frozenlist.pyx │ └── py.typed ├── googletrans-3.1.0a0.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt ├── googletrans │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── client.cpython-311.pyc │ │ ├── constants.cpython-311.pyc │ │ ├── gtoken.cpython-311.pyc │ │ ├── models.cpython-311.pyc │ │ ├── urls.cpython-311.pyc │ │ └── utils.cpython-311.pyc │ ├── client.py │ ├── constants.py │ ├── gtoken.py │ ├── models.py │ ├── urls.py │ └── utils.py ├── h11-0.9.0.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── h11 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _abnf.cpython-311.pyc │ │ ├── _connection.cpython-311.pyc │ │ ├── _events.cpython-311.pyc │ │ ├── _headers.cpython-311.pyc │ │ ├── _readers.cpython-311.pyc │ │ ├── _receivebuffer.cpython-311.pyc │ │ ├── _state.cpython-311.pyc │ │ ├── _util.cpython-311.pyc │ │ ├── _version.cpython-311.pyc │ │ └── _writers.cpython-311.pyc │ ├── _abnf.py │ ├── _connection.py │ ├── _events.py │ ├── _headers.py │ ├── _readers.py │ ├── _receivebuffer.py │ ├── _state.py │ ├── _util.py │ ├── _version.py │ ├── _writers.py │ └── tests │ │ ├── __init__.py │ │ ├── data │ │ └── test-file │ │ ├── helpers.py │ │ ├── test_against_stdlib_http.py │ │ ├── test_connection.py │ │ ├── test_events.py │ │ ├── test_headers.py │ │ ├── test_helpers.py │ │ ├── test_io.py │ │ ├── test_receivebuffer.py │ │ ├── test_state.py │ │ └── test_util.py ├── h2-3.2.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── h2 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── config.cpython-311.pyc │ │ ├── connection.cpython-311.pyc │ │ ├── errors.cpython-311.pyc │ │ ├── events.cpython-311.pyc │ │ ├── exceptions.cpython-311.pyc │ │ ├── frame_buffer.cpython-311.pyc │ │ ├── settings.cpython-311.pyc │ │ ├── stream.cpython-311.pyc │ │ ├── utilities.cpython-311.pyc │ │ └── windows.cpython-311.pyc │ ├── config.py │ ├── connection.py │ ├── errors.py │ ├── events.py │ ├── exceptions.py │ ├── frame_buffer.py │ ├── settings.py │ ├── stream.py │ ├── utilities.py │ └── windows.py ├── hpack-3.0.0.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt ├── hpack │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── compat.cpython-311.pyc │ │ ├── exceptions.cpython-311.pyc │ │ ├── hpack.cpython-311.pyc │ │ ├── huffman.cpython-311.pyc │ │ ├── huffman_constants.cpython-311.pyc │ │ ├── huffman_table.cpython-311.pyc │ │ ├── struct.cpython-311.pyc │ │ └── table.cpython-311.pyc │ ├── compat.py │ ├── exceptions.py │ ├── hpack.py │ ├── hpack_compat.py │ ├── huffman.py │ ├── huffman_constants.py │ ├── huffman_table.py │ ├── struct.py │ └── table.py ├── hstspreload-2023.1.1.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── hstspreload │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-311.pyc │ └── hstspreload.bin ├── httpcore-0.9.1.dist-info │ ├── INSTALLER │ ├── LICENSE.md │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── httpcore │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _exceptions.cpython-311.pyc │ │ ├── _threadlock.cpython-311.pyc │ │ ├── _types.cpython-311.pyc │ │ └── _utils.cpython-311.pyc │ ├── _async │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── base.cpython-311.pyc │ │ │ ├── connection.cpython-311.pyc │ │ │ ├── connection_pool.cpython-311.pyc │ │ │ ├── http11.cpython-311.pyc │ │ │ ├── http2.cpython-311.pyc │ │ │ └── http_proxy.cpython-311.pyc │ │ ├── base.py │ │ ├── connection.py │ │ ├── connection_pool.py │ │ ├── http11.py │ │ ├── http2.py │ │ └── http_proxy.py │ ├── _backends │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── auto.cpython-311.pyc │ │ │ ├── base.cpython-311.pyc │ │ │ └── sync.cpython-311.pyc │ │ ├── asyncio.py │ │ ├── auto.py │ │ ├── base.py │ │ ├── sync.py │ │ └── trio.py │ ├── _exceptions.py │ ├── _sync │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── base.cpython-311.pyc │ │ │ ├── connection.cpython-311.pyc │ │ │ ├── connection_pool.cpython-311.pyc │ │ │ ├── http11.cpython-311.pyc │ │ │ ├── http2.cpython-311.pyc │ │ │ └── http_proxy.cpython-311.pyc │ │ ├── base.py │ │ ├── connection.py │ │ ├── connection_pool.py │ │ ├── http11.py │ │ ├── http2.py │ │ └── http_proxy.py │ ├── _threadlock.py │ ├── _types.py │ ├── _utils.py │ └── py.typed ├── httpx-0.13.3.dist-info │ ├── INSTALLER │ ├── LICENSE.md │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── httpx │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __version__.cpython-311.pyc │ │ ├── _api.cpython-311.pyc │ │ ├── _auth.cpython-311.pyc │ │ ├── _client.cpython-311.pyc │ │ ├── _config.cpython-311.pyc │ │ ├── _content_streams.cpython-311.pyc │ │ ├── _decoders.cpython-311.pyc │ │ ├── _exceptions.cpython-311.pyc │ │ ├── _models.cpython-311.pyc │ │ ├── _status_codes.cpython-311.pyc │ │ ├── _types.cpython-311.pyc │ │ └── _utils.cpython-311.pyc │ ├── __version__.py │ ├── _api.py │ ├── _auth.py │ ├── _client.py │ ├── _config.py │ ├── _content_streams.py │ ├── _decoders.py │ ├── _exceptions.py │ ├── _models.py │ ├── _status_codes.py │ ├── _transports │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── asgi.cpython-311.pyc │ │ │ ├── urllib3.cpython-311.pyc │ │ │ └── wsgi.cpython-311.pyc │ │ ├── asgi.py │ │ ├── urllib3.py │ │ └── wsgi.py │ ├── _types.py │ ├── _utils.py │ └── py.typed ├── hyperframe-5.2.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── hyperframe │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── exceptions.cpython-311.pyc │ │ ├── flags.cpython-311.pyc │ │ └── frame.cpython-311.pyc │ ├── exceptions.py │ ├── flags.py │ └── frame.py ├── idna-2.10.dist-info │ ├── INSTALLER │ ├── LICENSE.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── idna-3.4.dist-info │ ├── INSTALLER │ ├── LICENSE.md │ ├── METADATA │ ├── RECORD │ └── WHEEL ├── idna │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── core.cpython-311.pyc │ │ ├── idnadata.cpython-311.pyc │ │ ├── intranges.cpython-311.pyc │ │ └── package_data.cpython-311.pyc │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ ├── py.typed │ └── uts46data.py ├── multidict-6.0.4.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── multidict │ ├── __init__.py │ ├── __init__.pyi │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _abc.cpython-311.pyc │ │ ├── _compat.cpython-311.pyc │ │ └── _multidict_py.cpython-311.pyc │ ├── _abc.py │ ├── _compat.py │ ├── _multidict.cpython-39-darwin.so │ ├── _multidict_base.py │ ├── _multidict_py.py │ └── py.typed ├── openai-0.27.7.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ ├── top_level.txt │ └── zip-safe ├── openai │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── api_requestor.cpython-311.pyc │ │ ├── error.cpython-311.pyc │ │ ├── object_classes.cpython-311.pyc │ │ ├── openai_object.cpython-311.pyc │ │ ├── openai_response.cpython-311.pyc │ │ ├── util.cpython-311.pyc │ │ └── version.cpython-311.pyc │ ├── _openai_scripts.py │ ├── api_requestor.py │ ├── api_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── audio.cpython-311.pyc │ │ │ ├── chat_completion.cpython-311.pyc │ │ │ ├── completion.cpython-311.pyc │ │ │ ├── customer.cpython-311.pyc │ │ │ ├── deployment.cpython-311.pyc │ │ │ ├── edit.cpython-311.pyc │ │ │ ├── embedding.cpython-311.pyc │ │ │ ├── engine.cpython-311.pyc │ │ │ ├── error_object.cpython-311.pyc │ │ │ ├── file.cpython-311.pyc │ │ │ ├── fine_tune.cpython-311.pyc │ │ │ ├── image.cpython-311.pyc │ │ │ ├── model.cpython-311.pyc │ │ │ └── moderation.cpython-311.pyc │ │ ├── abstract │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── api_resource.cpython-311.pyc │ │ │ │ ├── createable_api_resource.cpython-311.pyc │ │ │ │ ├── deletable_api_resource.cpython-311.pyc │ │ │ │ ├── engine_api_resource.cpython-311.pyc │ │ │ │ ├── listable_api_resource.cpython-311.pyc │ │ │ │ ├── nested_resource_class_methods.cpython-311.pyc │ │ │ │ └── updateable_api_resource.cpython-311.pyc │ │ │ ├── api_resource.py │ │ │ ├── createable_api_resource.py │ │ │ ├── deletable_api_resource.py │ │ │ ├── engine_api_resource.py │ │ │ ├── listable_api_resource.py │ │ │ ├── nested_resource_class_methods.py │ │ │ └── updateable_api_resource.py │ │ ├── audio.py │ │ ├── chat_completion.py │ │ ├── completion.py │ │ ├── customer.py │ │ ├── deployment.py │ │ ├── edit.py │ │ ├── embedding.py │ │ ├── engine.py │ │ ├── error_object.py │ │ ├── experimental │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── completion_config.cpython-311.pyc │ │ │ └── completion_config.py │ │ ├── file.py │ │ ├── fine_tune.py │ │ ├── image.py │ │ ├── model.py │ │ └── moderation.py │ ├── cli.py │ ├── datalib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── common.cpython-311.pyc │ │ │ └── numpy_helper.cpython-311.pyc │ │ ├── common.py │ │ ├── numpy_helper.py │ │ └── pandas_helper.py │ ├── embeddings_utils.py │ ├── error.py │ ├── object_classes.py │ ├── openai_object.py │ ├── openai_response.py │ ├── py.typed │ ├── tests │ │ ├── __init__.py │ │ ├── asyncio │ │ │ ├── __init__.py │ │ │ └── test_endpoints.py │ │ ├── test_api_requestor.py │ │ ├── test_endpoints.py │ │ ├── test_exceptions.py │ │ ├── test_file_cli.py │ │ ├── test_long_examples_validator.py │ │ ├── test_url_composition.py │ │ └── test_util.py │ ├── upload_progress.py │ ├── util.py │ ├── validators.py │ ├── version.py │ └── wandb_logger.py ├── requests-2.31.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── requests │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __version__.cpython-311.pyc │ │ ├── _internal_utils.cpython-311.pyc │ │ ├── adapters.cpython-311.pyc │ │ ├── api.cpython-311.pyc │ │ ├── auth.cpython-311.pyc │ │ ├── certs.cpython-311.pyc │ │ ├── compat.cpython-311.pyc │ │ ├── cookies.cpython-311.pyc │ │ ├── exceptions.cpython-311.pyc │ │ ├── hooks.cpython-311.pyc │ │ ├── models.cpython-311.pyc │ │ ├── packages.cpython-311.pyc │ │ ├── sessions.cpython-311.pyc │ │ ├── status_codes.cpython-311.pyc │ │ ├── structures.cpython-311.pyc │ │ └── utils.cpython-311.pyc │ ├── __version__.py │ ├── _internal_utils.py │ ├── adapters.py │ ├── api.py │ ├── auth.py │ ├── certs.py │ ├── compat.py │ ├── cookies.py │ ├── exceptions.py │ ├── help.py │ ├── hooks.py │ ├── models.py │ ├── packages.py │ ├── sessions.py │ ├── status_codes.py │ ├── structures.py │ └── utils.py ├── rfc3986-1.5.0.dist-info │ ├── AUTHORS.rst │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── rfc3986 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _mixin.cpython-311.pyc │ │ ├── abnf_regexp.cpython-311.pyc │ │ ├── api.cpython-311.pyc │ │ ├── compat.cpython-311.pyc │ │ ├── exceptions.cpython-311.pyc │ │ ├── iri.cpython-311.pyc │ │ ├── misc.cpython-311.pyc │ │ ├── normalizers.cpython-311.pyc │ │ ├── parseresult.cpython-311.pyc │ │ ├── uri.cpython-311.pyc │ │ └── validators.cpython-311.pyc │ ├── _mixin.py │ ├── abnf_regexp.py │ ├── api.py │ ├── builder.py │ ├── compat.py │ ├── exceptions.py │ ├── iri.py │ ├── misc.py │ ├── normalizers.py │ ├── parseresult.py │ ├── uri.py │ └── validators.py ├── sniffio-1.3.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── LICENSE.APACHE2 │ ├── LICENSE.MIT │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── sniffio │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _impl.cpython-311.pyc │ │ └── _version.cpython-311.pyc │ ├── _impl.py │ ├── _tests │ │ ├── __init__.py │ │ └── test_sniffio.py │ ├── _version.py │ └── py.typed ├── tqdm-4.65.0.dist-info │ ├── INSTALLER │ ├── LICENCE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt ├── tqdm │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _dist_ver.cpython-311.pyc │ │ ├── _monitor.cpython-311.pyc │ │ ├── _tqdm_pandas.cpython-311.pyc │ │ ├── cli.cpython-311.pyc │ │ ├── gui.cpython-311.pyc │ │ ├── std.cpython-311.pyc │ │ ├── utils.cpython-311.pyc │ │ └── version.cpython-311.pyc │ ├── _dist_ver.py │ ├── _main.py │ ├── _monitor.py │ ├── _tqdm.py │ ├── _tqdm_gui.py │ ├── _tqdm_notebook.py │ ├── _tqdm_pandas.py │ ├── _utils.py │ ├── asyncio.py │ ├── auto.py │ ├── autonotebook.py │ ├── cli.py │ ├── completion.sh │ ├── contrib │ │ ├── __init__.py │ │ ├── bells.py │ │ ├── concurrent.py │ │ ├── discord.py │ │ ├── itertools.py │ │ ├── logging.py │ │ ├── slack.py │ │ ├── telegram.py │ │ └── utils_worker.py │ ├── dask.py │ ├── gui.py │ ├── keras.py │ ├── notebook.py │ ├── rich.py │ ├── std.py │ ├── tk.py │ ├── tqdm.1 │ ├── utils.py │ └── version.py ├── urllib3-1.26.16.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt ├── urllib3 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── _collections.cpython-311.pyc │ │ ├── _version.cpython-311.pyc │ │ ├── connection.cpython-311.pyc │ │ ├── connectionpool.cpython-311.pyc │ │ ├── exceptions.cpython-311.pyc │ │ ├── fields.cpython-311.pyc │ │ ├── filepost.cpython-311.pyc │ │ ├── poolmanager.cpython-311.pyc │ │ ├── request.cpython-311.pyc │ │ └── response.cpython-311.pyc │ ├── _collections.py │ ├── _version.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── _appengine_environ.cpython-311.pyc │ │ │ └── socks.cpython-311.pyc │ │ ├── _appengine_environ.py │ │ ├── _securetransport │ │ │ ├── __init__.py │ │ │ ├── bindings.py │ │ │ └── low_level.py │ │ ├── appengine.py │ │ ├── ntlmpool.py │ │ ├── pyopenssl.py │ │ ├── securetransport.py │ │ └── socks.py │ ├── exceptions.py │ ├── fields.py │ ├── filepost.py │ ├── packages │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── six.cpython-311.pyc │ │ ├── backports │ │ │ ├── __init__.py │ │ │ ├── makefile.py │ │ │ └── weakref_finalize.py │ │ └── six.py │ ├── poolmanager.py │ ├── request.py │ ├── response.py │ └── util │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── connection.cpython-311.pyc │ │ ├── proxy.cpython-311.pyc │ │ ├── queue.cpython-311.pyc │ │ ├── request.cpython-311.pyc │ │ ├── response.cpython-311.pyc │ │ ├── retry.cpython-311.pyc │ │ ├── ssl_.cpython-311.pyc │ │ ├── ssl_match_hostname.cpython-311.pyc │ │ ├── ssltransport.cpython-311.pyc │ │ ├── timeout.cpython-311.pyc │ │ ├── url.cpython-311.pyc │ │ └── wait.cpython-311.pyc │ │ ├── connection.py │ │ ├── proxy.py │ │ ├── queue.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── ssl_.py │ │ ├── ssl_match_hostname.py │ │ ├── ssltransport.py │ │ ├── timeout.py │ │ ├── url.py │ │ └── wait.py ├── yarl-1.9.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt └── yarl │ ├── __init__.py │ ├── __init__.pyi │ ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── _quoting.cpython-311.pyc │ ├── _quoting_py.cpython-311.pyc │ └── _url.cpython-311.pyc │ ├── _quoting.py │ ├── _quoting_c.cpython-39-darwin.so │ ├── _quoting_c.pyi │ ├── _quoting_c.pyx │ ├── _quoting_py.py │ ├── _url.py │ └── py.typed └── translate.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/README.md -------------------------------------------------------------------------------- /assets/DeepL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/assets/DeepL.png -------------------------------------------------------------------------------- /assets/OpenAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/assets/OpenAI.png -------------------------------------------------------------------------------- /assets/Translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/assets/Translation.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/icon.png -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/info.plist -------------------------------------------------------------------------------- /libs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/CHANGELOG.md -------------------------------------------------------------------------------- /libs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/LICENSE -------------------------------------------------------------------------------- /libs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/SECURITY.md -------------------------------------------------------------------------------- /libs/aiohttp-3.8.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/aiohttp-3.8.4.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp-3.8.4.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /libs/aiohttp-3.8.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp-3.8.4.dist-info/METADATA -------------------------------------------------------------------------------- /libs/aiohttp-3.8.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp-3.8.4.dist-info/RECORD -------------------------------------------------------------------------------- /libs/aiohttp-3.8.4.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp-3.8.4.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/aiohttp-3.8.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | -------------------------------------------------------------------------------- /libs/aiohttp/.hash/_cparser.pxd.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/.hash/_cparser.pxd.hash -------------------------------------------------------------------------------- /libs/aiohttp/.hash/_find_header.pxd.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/.hash/_find_header.pxd.hash -------------------------------------------------------------------------------- /libs/aiohttp/.hash/_helpers.pyi.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/.hash/_helpers.pyi.hash -------------------------------------------------------------------------------- /libs/aiohttp/.hash/_helpers.pyx.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/.hash/_helpers.pyx.hash -------------------------------------------------------------------------------- /libs/aiohttp/.hash/_http_parser.pyx.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/.hash/_http_parser.pyx.hash -------------------------------------------------------------------------------- /libs/aiohttp/.hash/_http_writer.pyx.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/.hash/_http_writer.pyx.hash -------------------------------------------------------------------------------- /libs/aiohttp/.hash/_websocket.pyx.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/.hash/_websocket.pyx.hash -------------------------------------------------------------------------------- /libs/aiohttp/.hash/hdrs.py.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/.hash/hdrs.py.hash -------------------------------------------------------------------------------- /libs/aiohttp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__init__.py -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/abc.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/abc.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/base_protocol.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/base_protocol.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/client.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/client.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/client_proto.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/client_proto.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/client_reqrep.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/client_reqrep.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/client_ws.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/client_ws.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/connector.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/connector.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/cookiejar.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/cookiejar.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/formdata.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/formdata.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/hdrs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/hdrs.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/helpers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/helpers.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/http.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/http.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/http_parser.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/http_parser.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/http_websocket.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/http_websocket.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/http_writer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/http_writer.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/locks.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/locks.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/log.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/log.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/multipart.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/multipart.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/payload.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/payload.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/resolver.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/resolver.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/streams.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/streams.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/tcp_helpers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/tcp_helpers.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/tracing.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/tracing.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/typedefs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/typedefs.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/__pycache__/worker.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/__pycache__/worker.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiohttp/_cparser.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_cparser.pxd -------------------------------------------------------------------------------- /libs/aiohttp/_find_header.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_find_header.pxd -------------------------------------------------------------------------------- /libs/aiohttp/_headers.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_headers.pxi -------------------------------------------------------------------------------- /libs/aiohttp/_helpers.cpython-39-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_helpers.cpython-39-darwin.so -------------------------------------------------------------------------------- /libs/aiohttp/_helpers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_helpers.pyi -------------------------------------------------------------------------------- /libs/aiohttp/_helpers.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_helpers.pyx -------------------------------------------------------------------------------- /libs/aiohttp/_http_parser.cpython-39-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_http_parser.cpython-39-darwin.so -------------------------------------------------------------------------------- /libs/aiohttp/_http_parser.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_http_parser.pyx -------------------------------------------------------------------------------- /libs/aiohttp/_http_writer.cpython-39-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_http_writer.cpython-39-darwin.so -------------------------------------------------------------------------------- /libs/aiohttp/_http_writer.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_http_writer.pyx -------------------------------------------------------------------------------- /libs/aiohttp/_websocket.cpython-39-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_websocket.cpython-39-darwin.so -------------------------------------------------------------------------------- /libs/aiohttp/_websocket.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/_websocket.pyx -------------------------------------------------------------------------------- /libs/aiohttp/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/abc.py -------------------------------------------------------------------------------- /libs/aiohttp/base_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/base_protocol.py -------------------------------------------------------------------------------- /libs/aiohttp/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/client.py -------------------------------------------------------------------------------- /libs/aiohttp/client_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/client_exceptions.py -------------------------------------------------------------------------------- /libs/aiohttp/client_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/client_proto.py -------------------------------------------------------------------------------- /libs/aiohttp/client_reqrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/client_reqrep.py -------------------------------------------------------------------------------- /libs/aiohttp/client_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/client_ws.py -------------------------------------------------------------------------------- /libs/aiohttp/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/connector.py -------------------------------------------------------------------------------- /libs/aiohttp/cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/cookiejar.py -------------------------------------------------------------------------------- /libs/aiohttp/formdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/formdata.py -------------------------------------------------------------------------------- /libs/aiohttp/hdrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/hdrs.py -------------------------------------------------------------------------------- /libs/aiohttp/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/helpers.py -------------------------------------------------------------------------------- /libs/aiohttp/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/http.py -------------------------------------------------------------------------------- /libs/aiohttp/http_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/http_exceptions.py -------------------------------------------------------------------------------- /libs/aiohttp/http_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/http_parser.py -------------------------------------------------------------------------------- /libs/aiohttp/http_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/http_websocket.py -------------------------------------------------------------------------------- /libs/aiohttp/http_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/http_writer.py -------------------------------------------------------------------------------- /libs/aiohttp/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/locks.py -------------------------------------------------------------------------------- /libs/aiohttp/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/log.py -------------------------------------------------------------------------------- /libs/aiohttp/multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/multipart.py -------------------------------------------------------------------------------- /libs/aiohttp/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/payload.py -------------------------------------------------------------------------------- /libs/aiohttp/payload_streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/payload_streamer.py -------------------------------------------------------------------------------- /libs/aiohttp/py.typed: -------------------------------------------------------------------------------- 1 | Marker 2 | -------------------------------------------------------------------------------- /libs/aiohttp/pytest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/pytest_plugin.py -------------------------------------------------------------------------------- /libs/aiohttp/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/resolver.py -------------------------------------------------------------------------------- /libs/aiohttp/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/streams.py -------------------------------------------------------------------------------- /libs/aiohttp/tcp_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/tcp_helpers.py -------------------------------------------------------------------------------- /libs/aiohttp/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/test_utils.py -------------------------------------------------------------------------------- /libs/aiohttp/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/tracing.py -------------------------------------------------------------------------------- /libs/aiohttp/typedefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/typedefs.py -------------------------------------------------------------------------------- /libs/aiohttp/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web.py -------------------------------------------------------------------------------- /libs/aiohttp/web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_app.py -------------------------------------------------------------------------------- /libs/aiohttp/web_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_exceptions.py -------------------------------------------------------------------------------- /libs/aiohttp/web_fileresponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_fileresponse.py -------------------------------------------------------------------------------- /libs/aiohttp/web_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_log.py -------------------------------------------------------------------------------- /libs/aiohttp/web_middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_middlewares.py -------------------------------------------------------------------------------- /libs/aiohttp/web_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_protocol.py -------------------------------------------------------------------------------- /libs/aiohttp/web_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_request.py -------------------------------------------------------------------------------- /libs/aiohttp/web_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_response.py -------------------------------------------------------------------------------- /libs/aiohttp/web_routedef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_routedef.py -------------------------------------------------------------------------------- /libs/aiohttp/web_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_runner.py -------------------------------------------------------------------------------- /libs/aiohttp/web_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_server.py -------------------------------------------------------------------------------- /libs/aiohttp/web_urldispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_urldispatcher.py -------------------------------------------------------------------------------- /libs/aiohttp/web_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/web_ws.py -------------------------------------------------------------------------------- /libs/aiohttp/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiohttp/worker.py -------------------------------------------------------------------------------- /libs/aiosignal-1.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/aiosignal-1.3.1.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiosignal-1.3.1.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/aiosignal-1.3.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiosignal-1.3.1.dist-info/METADATA -------------------------------------------------------------------------------- /libs/aiosignal-1.3.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiosignal-1.3.1.dist-info/RECORD -------------------------------------------------------------------------------- /libs/aiosignal-1.3.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.38.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/aiosignal-1.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | aiosignal 2 | -------------------------------------------------------------------------------- /libs/aiosignal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiosignal/__init__.py -------------------------------------------------------------------------------- /libs/aiosignal/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiosignal/__init__.pyi -------------------------------------------------------------------------------- /libs/aiosignal/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/aiosignal/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/aiosignal/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/async_timeout-4.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/async_timeout-4.0.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/async_timeout-4.0.2.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/async_timeout-4.0.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/async_timeout-4.0.2.dist-info/METADATA -------------------------------------------------------------------------------- /libs/async_timeout-4.0.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/async_timeout-4.0.2.dist-info/RECORD -------------------------------------------------------------------------------- /libs/async_timeout-4.0.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/async_timeout-4.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | async_timeout 2 | -------------------------------------------------------------------------------- /libs/async_timeout-4.0.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/async_timeout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/async_timeout/__init__.py -------------------------------------------------------------------------------- /libs/async_timeout/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/async_timeout/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/async_timeout/py.typed: -------------------------------------------------------------------------------- 1 | Placeholder 2 | -------------------------------------------------------------------------------- /libs/attr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__init__.py -------------------------------------------------------------------------------- /libs/attr/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__init__.pyi -------------------------------------------------------------------------------- /libs/attr/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/_cmp.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/_cmp.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/_compat.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/_compat.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/_config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/_config.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/_funcs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/_funcs.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/_make.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/_make.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/_next_gen.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/_next_gen.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/_version_info.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/_version_info.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/converters.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/converters.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/exceptions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/exceptions.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/filters.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/filters.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/setters.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/setters.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/__pycache__/validators.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/__pycache__/validators.cpython-311.pyc -------------------------------------------------------------------------------- /libs/attr/_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/_cmp.py -------------------------------------------------------------------------------- /libs/attr/_cmp.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/_cmp.pyi -------------------------------------------------------------------------------- /libs/attr/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/_compat.py -------------------------------------------------------------------------------- /libs/attr/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/_config.py -------------------------------------------------------------------------------- /libs/attr/_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/_funcs.py -------------------------------------------------------------------------------- /libs/attr/_make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/_make.py -------------------------------------------------------------------------------- /libs/attr/_next_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/_next_gen.py -------------------------------------------------------------------------------- /libs/attr/_typing_compat.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/_typing_compat.pyi -------------------------------------------------------------------------------- /libs/attr/_version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/_version_info.py -------------------------------------------------------------------------------- /libs/attr/_version_info.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/_version_info.pyi -------------------------------------------------------------------------------- /libs/attr/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/converters.py -------------------------------------------------------------------------------- /libs/attr/converters.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/converters.pyi -------------------------------------------------------------------------------- /libs/attr/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/exceptions.py -------------------------------------------------------------------------------- /libs/attr/exceptions.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/exceptions.pyi -------------------------------------------------------------------------------- /libs/attr/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/filters.py -------------------------------------------------------------------------------- /libs/attr/filters.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/filters.pyi -------------------------------------------------------------------------------- /libs/attr/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/attr/setters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/setters.py -------------------------------------------------------------------------------- /libs/attr/setters.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/setters.pyi -------------------------------------------------------------------------------- /libs/attr/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/validators.py -------------------------------------------------------------------------------- /libs/attr/validators.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attr/validators.pyi -------------------------------------------------------------------------------- /libs/attrs-23.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/attrs-23.1.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attrs-23.1.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/attrs-23.1.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attrs-23.1.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/attrs-23.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attrs-23.1.0.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/attrs-23.1.0.dist-info/licenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attrs-23.1.0.dist-info/licenses/LICENSE -------------------------------------------------------------------------------- /libs/attrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attrs/__init__.py -------------------------------------------------------------------------------- /libs/attrs/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/attrs/__init__.pyi -------------------------------------------------------------------------------- /libs/attrs/converters.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | 3 | from attr.converters import * # noqa 4 | -------------------------------------------------------------------------------- /libs/attrs/exceptions.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | 3 | from attr.exceptions import * # noqa 4 | -------------------------------------------------------------------------------- /libs/attrs/filters.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | 3 | from attr.filters import * # noqa 4 | -------------------------------------------------------------------------------- /libs/attrs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/attrs/setters.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | 3 | from attr.setters import * # noqa 4 | -------------------------------------------------------------------------------- /libs/attrs/validators.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | 3 | from attr.validators import * # noqa 4 | -------------------------------------------------------------------------------- /libs/bin/deepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/bin/deepl -------------------------------------------------------------------------------- /libs/bin/normalizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/bin/normalizer -------------------------------------------------------------------------------- /libs/bin/openai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/bin/openai -------------------------------------------------------------------------------- /libs/bin/tqdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/bin/tqdm -------------------------------------------------------------------------------- /libs/certifi-2023.5.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/certifi-2023.5.7.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/certifi-2023.5.7.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/certifi-2023.5.7.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/certifi-2023.5.7.dist-info/METADATA -------------------------------------------------------------------------------- /libs/certifi-2023.5.7.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/certifi-2023.5.7.dist-info/RECORD -------------------------------------------------------------------------------- /libs/certifi-2023.5.7.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/certifi-2023.5.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /libs/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/certifi/__init__.py -------------------------------------------------------------------------------- /libs/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/certifi/__main__.py -------------------------------------------------------------------------------- /libs/certifi/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/certifi/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/certifi/__pycache__/core.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/certifi/__pycache__/core.cpython-311.pyc -------------------------------------------------------------------------------- /libs/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/certifi/cacert.pem -------------------------------------------------------------------------------- /libs/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/certifi/core.py -------------------------------------------------------------------------------- /libs/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/chardet-3.0.4.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet-3.0.4.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /libs/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/chardet-3.0.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet-3.0.4.dist-info/METADATA -------------------------------------------------------------------------------- /libs/chardet-3.0.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet-3.0.4.dist-info/RECORD -------------------------------------------------------------------------------- /libs/chardet-3.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet-3.0.4.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/chardet-3.0.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet-3.0.4.dist-info/entry_points.txt -------------------------------------------------------------------------------- /libs/chardet-3.0.4.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet-3.0.4.dist-info/metadata.json -------------------------------------------------------------------------------- /libs/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /libs/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__init__.py -------------------------------------------------------------------------------- /libs/chardet/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/big5freq.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/big5freq.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/big5prober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/big5prober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/charsetprober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/charsetprober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/compat.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/compat.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/cp949prober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/cp949prober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/enums.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/enums.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/escprober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/escprober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/escsm.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/escsm.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/eucjpprober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/eucjpprober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/euckrfreq.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/euckrfreq.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/euckrprober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/euckrprober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/euctwfreq.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/euctwfreq.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/euctwprober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/euctwprober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/gb2312freq.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/gb2312freq.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/gb2312prober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/gb2312prober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/hebrewprober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/hebrewprober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/jisfreq.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/jisfreq.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/jpcntx.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/jpcntx.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/langgreekmodel.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/langgreekmodel.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/langthaimodel.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/langthaimodel.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/latin1prober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/latin1prober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/mbcssm.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/mbcssm.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/sjisprober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/sjisprober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/utf8prober.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/utf8prober.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/__pycache__/version.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/__pycache__/version.cpython-311.pyc -------------------------------------------------------------------------------- /libs/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/big5freq.py -------------------------------------------------------------------------------- /libs/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/big5prober.py -------------------------------------------------------------------------------- /libs/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/chardistribution.py -------------------------------------------------------------------------------- /libs/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /libs/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/charsetprober.py -------------------------------------------------------------------------------- /libs/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /libs/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /libs/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/compat.py -------------------------------------------------------------------------------- /libs/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/cp949prober.py -------------------------------------------------------------------------------- /libs/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/enums.py -------------------------------------------------------------------------------- /libs/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/escprober.py -------------------------------------------------------------------------------- /libs/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/escsm.py -------------------------------------------------------------------------------- /libs/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/eucjpprober.py -------------------------------------------------------------------------------- /libs/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/euckrfreq.py -------------------------------------------------------------------------------- /libs/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/euckrprober.py -------------------------------------------------------------------------------- /libs/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/euctwfreq.py -------------------------------------------------------------------------------- /libs/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/euctwprober.py -------------------------------------------------------------------------------- /libs/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/gb2312freq.py -------------------------------------------------------------------------------- /libs/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/gb2312prober.py -------------------------------------------------------------------------------- /libs/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/hebrewprober.py -------------------------------------------------------------------------------- /libs/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/jisfreq.py -------------------------------------------------------------------------------- /libs/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/jpcntx.py -------------------------------------------------------------------------------- /libs/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /libs/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /libs/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /libs/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /libs/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /libs/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/langthaimodel.py -------------------------------------------------------------------------------- /libs/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /libs/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/latin1prober.py -------------------------------------------------------------------------------- /libs/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /libs/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /libs/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/mbcssm.py -------------------------------------------------------------------------------- /libs/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /libs/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /libs/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/sjisprober.py -------------------------------------------------------------------------------- /libs/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/universaldetector.py -------------------------------------------------------------------------------- /libs/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/utf8prober.py -------------------------------------------------------------------------------- /libs/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/chardet/version.py -------------------------------------------------------------------------------- /libs/charset_normalizer-3.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/charset_normalizer-3.1.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer-3.1.0.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/charset_normalizer-3.1.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer-3.1.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/charset_normalizer-3.1.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer-3.1.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/charset_normalizer-3.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer-3.1.0.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/charset_normalizer-3.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | charset_normalizer 2 | -------------------------------------------------------------------------------- /libs/charset_normalizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/__init__.py -------------------------------------------------------------------------------- /libs/charset_normalizer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/api.py -------------------------------------------------------------------------------- /libs/charset_normalizer/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/assets/__init__.py -------------------------------------------------------------------------------- /libs/charset_normalizer/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/cd.py -------------------------------------------------------------------------------- /libs/charset_normalizer/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/charset_normalizer/cli/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/cli/normalizer.py -------------------------------------------------------------------------------- /libs/charset_normalizer/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/constant.py -------------------------------------------------------------------------------- /libs/charset_normalizer/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/legacy.py -------------------------------------------------------------------------------- /libs/charset_normalizer/md.cpython-39-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/md.cpython-39-darwin.so -------------------------------------------------------------------------------- /libs/charset_normalizer/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/md.py -------------------------------------------------------------------------------- /libs/charset_normalizer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/models.py -------------------------------------------------------------------------------- /libs/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/charset_normalizer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/utils.py -------------------------------------------------------------------------------- /libs/charset_normalizer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/charset_normalizer/version.py -------------------------------------------------------------------------------- /libs/deepl-1.14.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/deepl-1.14.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl-1.14.0.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/deepl-1.14.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl-1.14.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/deepl-1.14.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl-1.14.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/deepl-1.14.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/deepl-1.14.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl-1.14.0.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/deepl-1.14.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl-1.14.0.dist-info/entry_points.txt -------------------------------------------------------------------------------- /libs/deepl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/__init__.py -------------------------------------------------------------------------------- /libs/deepl/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/__main__.py -------------------------------------------------------------------------------- /libs/deepl/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/deepl/__pycache__/exceptions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/__pycache__/exceptions.cpython-311.pyc -------------------------------------------------------------------------------- /libs/deepl/__pycache__/http_client.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/__pycache__/http_client.cpython-311.pyc -------------------------------------------------------------------------------- /libs/deepl/__pycache__/translator.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/__pycache__/translator.cpython-311.pyc -------------------------------------------------------------------------------- /libs/deepl/__pycache__/util.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/__pycache__/util.cpython-311.pyc -------------------------------------------------------------------------------- /libs/deepl/__pycache__/version.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/__pycache__/version.cpython-311.pyc -------------------------------------------------------------------------------- /libs/deepl/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/exceptions.py -------------------------------------------------------------------------------- /libs/deepl/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/http_client.py -------------------------------------------------------------------------------- /libs/deepl/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/translator.py -------------------------------------------------------------------------------- /libs/deepl/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/util.py -------------------------------------------------------------------------------- /libs/deepl/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/deepl/version.py -------------------------------------------------------------------------------- /libs/frozenlist-1.3.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/frozenlist-1.3.3.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/frozenlist-1.3.3.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/frozenlist-1.3.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/frozenlist-1.3.3.dist-info/METADATA -------------------------------------------------------------------------------- /libs/frozenlist-1.3.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/frozenlist-1.3.3.dist-info/RECORD -------------------------------------------------------------------------------- /libs/frozenlist-1.3.3.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/frozenlist-1.3.3.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/frozenlist-1.3.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | frozenlist 2 | -------------------------------------------------------------------------------- /libs/frozenlist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/frozenlist/__init__.py -------------------------------------------------------------------------------- /libs/frozenlist/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/frozenlist/__init__.pyi -------------------------------------------------------------------------------- /libs/frozenlist/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/frozenlist/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/frozenlist/_frozenlist.cpython-39-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/frozenlist/_frozenlist.cpython-39-darwin.so -------------------------------------------------------------------------------- /libs/frozenlist/_frozenlist.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/frozenlist/_frozenlist.pyx -------------------------------------------------------------------------------- /libs/frozenlist/py.typed: -------------------------------------------------------------------------------- 1 | Marker 2 | -------------------------------------------------------------------------------- /libs/googletrans-3.1.0a0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/googletrans-3.1.0a0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans-3.1.0a0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/googletrans-3.1.0a0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans-3.1.0a0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/googletrans-3.1.0a0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/googletrans-3.1.0a0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.40.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/googletrans-3.1.0a0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | googletrans 2 | -------------------------------------------------------------------------------- /libs/googletrans/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/__init__.py -------------------------------------------------------------------------------- /libs/googletrans/__pycache__/client.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/__pycache__/client.cpython-311.pyc -------------------------------------------------------------------------------- /libs/googletrans/__pycache__/gtoken.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/__pycache__/gtoken.cpython-311.pyc -------------------------------------------------------------------------------- /libs/googletrans/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /libs/googletrans/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /libs/googletrans/__pycache__/utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/__pycache__/utils.cpython-311.pyc -------------------------------------------------------------------------------- /libs/googletrans/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/client.py -------------------------------------------------------------------------------- /libs/googletrans/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/constants.py -------------------------------------------------------------------------------- /libs/googletrans/gtoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/gtoken.py -------------------------------------------------------------------------------- /libs/googletrans/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/models.py -------------------------------------------------------------------------------- /libs/googletrans/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/urls.py -------------------------------------------------------------------------------- /libs/googletrans/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/googletrans/utils.py -------------------------------------------------------------------------------- /libs/h11-0.9.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/h11-0.9.0.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11-0.9.0.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /libs/h11-0.9.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11-0.9.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/h11-0.9.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11-0.9.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/h11-0.9.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11-0.9.0.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/h11-0.9.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | h11 2 | -------------------------------------------------------------------------------- /libs/h11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__init__.py -------------------------------------------------------------------------------- /libs/h11/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/__pycache__/_abnf.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/_abnf.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/__pycache__/_connection.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/_connection.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/__pycache__/_events.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/_events.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/__pycache__/_headers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/_headers.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/__pycache__/_readers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/_readers.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/__pycache__/_receivebuffer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/_receivebuffer.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/__pycache__/_state.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/_state.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/__pycache__/_util.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/_util.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/__pycache__/_version.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/_version.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/__pycache__/_writers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/__pycache__/_writers.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h11/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/_abnf.py -------------------------------------------------------------------------------- /libs/h11/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/_connection.py -------------------------------------------------------------------------------- /libs/h11/_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/_events.py -------------------------------------------------------------------------------- /libs/h11/_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/_headers.py -------------------------------------------------------------------------------- /libs/h11/_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/_readers.py -------------------------------------------------------------------------------- /libs/h11/_receivebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/_receivebuffer.py -------------------------------------------------------------------------------- /libs/h11/_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/_state.py -------------------------------------------------------------------------------- /libs/h11/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/_util.py -------------------------------------------------------------------------------- /libs/h11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/_version.py -------------------------------------------------------------------------------- /libs/h11/_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/_writers.py -------------------------------------------------------------------------------- /libs/h11/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/h11/tests/data/test-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/data/test-file -------------------------------------------------------------------------------- /libs/h11/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/helpers.py -------------------------------------------------------------------------------- /libs/h11/tests/test_against_stdlib_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/test_against_stdlib_http.py -------------------------------------------------------------------------------- /libs/h11/tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/test_connection.py -------------------------------------------------------------------------------- /libs/h11/tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/test_events.py -------------------------------------------------------------------------------- /libs/h11/tests/test_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/test_headers.py -------------------------------------------------------------------------------- /libs/h11/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/test_helpers.py -------------------------------------------------------------------------------- /libs/h11/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/test_io.py -------------------------------------------------------------------------------- /libs/h11/tests/test_receivebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/test_receivebuffer.py -------------------------------------------------------------------------------- /libs/h11/tests/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/test_state.py -------------------------------------------------------------------------------- /libs/h11/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h11/tests/test_util.py -------------------------------------------------------------------------------- /libs/h2-3.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/h2-3.2.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2-3.2.0.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/h2-3.2.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2-3.2.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/h2-3.2.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2-3.2.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/h2-3.2.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2-3.2.0.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/h2-3.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | h2 2 | -------------------------------------------------------------------------------- /libs/h2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__init__.py -------------------------------------------------------------------------------- /libs/h2/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/__pycache__/connection.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/connection.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/__pycache__/errors.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/errors.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/__pycache__/events.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/events.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/__pycache__/exceptions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/exceptions.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/__pycache__/frame_buffer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/frame_buffer.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/__pycache__/stream.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/stream.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/__pycache__/utilities.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/utilities.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/__pycache__/windows.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/__pycache__/windows.cpython-311.pyc -------------------------------------------------------------------------------- /libs/h2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/config.py -------------------------------------------------------------------------------- /libs/h2/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/connection.py -------------------------------------------------------------------------------- /libs/h2/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/errors.py -------------------------------------------------------------------------------- /libs/h2/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/events.py -------------------------------------------------------------------------------- /libs/h2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/exceptions.py -------------------------------------------------------------------------------- /libs/h2/frame_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/frame_buffer.py -------------------------------------------------------------------------------- /libs/h2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/settings.py -------------------------------------------------------------------------------- /libs/h2/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/stream.py -------------------------------------------------------------------------------- /libs/h2/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/utilities.py -------------------------------------------------------------------------------- /libs/h2/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/h2/windows.py -------------------------------------------------------------------------------- /libs/hpack-3.0.0.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack-3.0.0.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /libs/hpack-3.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/hpack-3.0.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack-3.0.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/hpack-3.0.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack-3.0.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/hpack-3.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack-3.0.0.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/hpack-3.0.0.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack-3.0.0.dist-info/metadata.json -------------------------------------------------------------------------------- /libs/hpack-3.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | hpack 2 | -------------------------------------------------------------------------------- /libs/hpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/__init__.py -------------------------------------------------------------------------------- /libs/hpack/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hpack/__pycache__/compat.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/__pycache__/compat.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hpack/__pycache__/exceptions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/__pycache__/exceptions.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hpack/__pycache__/hpack.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/__pycache__/hpack.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hpack/__pycache__/huffman.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/__pycache__/huffman.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hpack/__pycache__/huffman_table.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/__pycache__/huffman_table.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hpack/__pycache__/struct.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/__pycache__/struct.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hpack/__pycache__/table.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/__pycache__/table.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hpack/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/compat.py -------------------------------------------------------------------------------- /libs/hpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/exceptions.py -------------------------------------------------------------------------------- /libs/hpack/hpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/hpack.py -------------------------------------------------------------------------------- /libs/hpack/hpack_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/hpack_compat.py -------------------------------------------------------------------------------- /libs/hpack/huffman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/huffman.py -------------------------------------------------------------------------------- /libs/hpack/huffman_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/huffman_constants.py -------------------------------------------------------------------------------- /libs/hpack/huffman_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/huffman_table.py -------------------------------------------------------------------------------- /libs/hpack/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/struct.py -------------------------------------------------------------------------------- /libs/hpack/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hpack/table.py -------------------------------------------------------------------------------- /libs/hstspreload-2023.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/hstspreload-2023.1.1.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hstspreload-2023.1.1.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/hstspreload-2023.1.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hstspreload-2023.1.1.dist-info/METADATA -------------------------------------------------------------------------------- /libs/hstspreload-2023.1.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hstspreload-2023.1.1.dist-info/RECORD -------------------------------------------------------------------------------- /libs/hstspreload-2023.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.38.4) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/hstspreload-2023.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | hstspreload 2 | -------------------------------------------------------------------------------- /libs/hstspreload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hstspreload/__init__.py -------------------------------------------------------------------------------- /libs/hstspreload/hstspreload.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hstspreload/hstspreload.bin -------------------------------------------------------------------------------- /libs/httpcore-0.9.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/httpcore-0.9.1.dist-info/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore-0.9.1.dist-info/LICENSE.md -------------------------------------------------------------------------------- /libs/httpcore-0.9.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore-0.9.1.dist-info/METADATA -------------------------------------------------------------------------------- /libs/httpcore-0.9.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore-0.9.1.dist-info/RECORD -------------------------------------------------------------------------------- /libs/httpcore-0.9.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/httpcore-0.9.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore-0.9.1.dist-info/top_level.txt -------------------------------------------------------------------------------- /libs/httpcore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/__init__.py -------------------------------------------------------------------------------- /libs/httpcore/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpcore/__pycache__/_types.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/__pycache__/_types.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpcore/__pycache__/_utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/__pycache__/_utils.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpcore/_async/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/httpcore/_async/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_async/base.py -------------------------------------------------------------------------------- /libs/httpcore/_async/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_async/connection.py -------------------------------------------------------------------------------- /libs/httpcore/_async/connection_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_async/connection_pool.py -------------------------------------------------------------------------------- /libs/httpcore/_async/http11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_async/http11.py -------------------------------------------------------------------------------- /libs/httpcore/_async/http2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_async/http2.py -------------------------------------------------------------------------------- /libs/httpcore/_async/http_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_async/http_proxy.py -------------------------------------------------------------------------------- /libs/httpcore/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/httpcore/_backends/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_backends/asyncio.py -------------------------------------------------------------------------------- /libs/httpcore/_backends/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_backends/auto.py -------------------------------------------------------------------------------- /libs/httpcore/_backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_backends/base.py -------------------------------------------------------------------------------- /libs/httpcore/_backends/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_backends/sync.py -------------------------------------------------------------------------------- /libs/httpcore/_backends/trio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_backends/trio.py -------------------------------------------------------------------------------- /libs/httpcore/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_exceptions.py -------------------------------------------------------------------------------- /libs/httpcore/_sync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/httpcore/_sync/__pycache__/base.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_sync/__pycache__/base.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpcore/_sync/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_sync/base.py -------------------------------------------------------------------------------- /libs/httpcore/_sync/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_sync/connection.py -------------------------------------------------------------------------------- /libs/httpcore/_sync/connection_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_sync/connection_pool.py -------------------------------------------------------------------------------- /libs/httpcore/_sync/http11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_sync/http11.py -------------------------------------------------------------------------------- /libs/httpcore/_sync/http2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_sync/http2.py -------------------------------------------------------------------------------- /libs/httpcore/_sync/http_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_sync/http_proxy.py -------------------------------------------------------------------------------- /libs/httpcore/_threadlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_threadlock.py -------------------------------------------------------------------------------- /libs/httpcore/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_types.py -------------------------------------------------------------------------------- /libs/httpcore/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpcore/_utils.py -------------------------------------------------------------------------------- /libs/httpcore/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/httpx-0.13.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/httpx-0.13.3.dist-info/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx-0.13.3.dist-info/LICENSE.md -------------------------------------------------------------------------------- /libs/httpx-0.13.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx-0.13.3.dist-info/METADATA -------------------------------------------------------------------------------- /libs/httpx-0.13.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx-0.13.3.dist-info/RECORD -------------------------------------------------------------------------------- /libs/httpx-0.13.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/httpx-0.13.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx-0.13.3.dist-info/top_level.txt -------------------------------------------------------------------------------- /libs/httpx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__init__.py -------------------------------------------------------------------------------- /libs/httpx/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/__version__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/__version__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/_api.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/_api.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/_auth.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/_auth.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/_client.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/_client.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/_config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/_config.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/_decoders.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/_decoders.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/_exceptions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/_exceptions.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/_models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/_models.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/_status_codes.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/_status_codes.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/_types.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/_types.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__pycache__/_utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__pycache__/_utils.cpython-311.pyc -------------------------------------------------------------------------------- /libs/httpx/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/__version__.py -------------------------------------------------------------------------------- /libs/httpx/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_api.py -------------------------------------------------------------------------------- /libs/httpx/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_auth.py -------------------------------------------------------------------------------- /libs/httpx/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_client.py -------------------------------------------------------------------------------- /libs/httpx/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_config.py -------------------------------------------------------------------------------- /libs/httpx/_content_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_content_streams.py -------------------------------------------------------------------------------- /libs/httpx/_decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_decoders.py -------------------------------------------------------------------------------- /libs/httpx/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_exceptions.py -------------------------------------------------------------------------------- /libs/httpx/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_models.py -------------------------------------------------------------------------------- /libs/httpx/_status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_status_codes.py -------------------------------------------------------------------------------- /libs/httpx/_transports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/httpx/_transports/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_transports/asgi.py -------------------------------------------------------------------------------- /libs/httpx/_transports/urllib3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_transports/urllib3.py -------------------------------------------------------------------------------- /libs/httpx/_transports/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_transports/wsgi.py -------------------------------------------------------------------------------- /libs/httpx/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_types.py -------------------------------------------------------------------------------- /libs/httpx/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/httpx/_utils.py -------------------------------------------------------------------------------- /libs/httpx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/hyperframe-5.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/hyperframe-5.2.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe-5.2.0.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/hyperframe-5.2.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe-5.2.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/hyperframe-5.2.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe-5.2.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/hyperframe-5.2.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe-5.2.0.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/hyperframe-5.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | hyperframe 2 | -------------------------------------------------------------------------------- /libs/hyperframe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe/__init__.py -------------------------------------------------------------------------------- /libs/hyperframe/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hyperframe/__pycache__/flags.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe/__pycache__/flags.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hyperframe/__pycache__/frame.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe/__pycache__/frame.cpython-311.pyc -------------------------------------------------------------------------------- /libs/hyperframe/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe/exceptions.py -------------------------------------------------------------------------------- /libs/hyperframe/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe/flags.py -------------------------------------------------------------------------------- /libs/hyperframe/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/hyperframe/frame.py -------------------------------------------------------------------------------- /libs/idna-2.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/idna-2.10.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna-2.10.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /libs/idna-2.10.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna-2.10.dist-info/METADATA -------------------------------------------------------------------------------- /libs/idna-2.10.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna-2.10.dist-info/RECORD -------------------------------------------------------------------------------- /libs/idna-2.10.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna-2.10.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/idna-2.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /libs/idna-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/idna-3.4.dist-info/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna-3.4.dist-info/LICENSE.md -------------------------------------------------------------------------------- /libs/idna-3.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna-3.4.dist-info/METADATA -------------------------------------------------------------------------------- /libs/idna-3.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna-3.4.dist-info/RECORD -------------------------------------------------------------------------------- /libs/idna-3.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.7.1 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /libs/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/__init__.py -------------------------------------------------------------------------------- /libs/idna/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/idna/__pycache__/core.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/__pycache__/core.cpython-311.pyc -------------------------------------------------------------------------------- /libs/idna/__pycache__/idnadata.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/__pycache__/idnadata.cpython-311.pyc -------------------------------------------------------------------------------- /libs/idna/__pycache__/intranges.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/__pycache__/intranges.cpython-311.pyc -------------------------------------------------------------------------------- /libs/idna/__pycache__/package_data.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/__pycache__/package_data.cpython-311.pyc -------------------------------------------------------------------------------- /libs/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/codec.py -------------------------------------------------------------------------------- /libs/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/compat.py -------------------------------------------------------------------------------- /libs/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/core.py -------------------------------------------------------------------------------- /libs/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/idnadata.py -------------------------------------------------------------------------------- /libs/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/intranges.py -------------------------------------------------------------------------------- /libs/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.4' 2 | 3 | -------------------------------------------------------------------------------- /libs/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/idna/uts46data.py -------------------------------------------------------------------------------- /libs/multidict-6.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/multidict-6.0.4.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict-6.0.4.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/multidict-6.0.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict-6.0.4.dist-info/METADATA -------------------------------------------------------------------------------- /libs/multidict-6.0.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict-6.0.4.dist-info/RECORD -------------------------------------------------------------------------------- /libs/multidict-6.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict-6.0.4.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/multidict-6.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | multidict 2 | -------------------------------------------------------------------------------- /libs/multidict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict/__init__.py -------------------------------------------------------------------------------- /libs/multidict/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict/__init__.pyi -------------------------------------------------------------------------------- /libs/multidict/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/multidict/__pycache__/_abc.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict/__pycache__/_abc.cpython-311.pyc -------------------------------------------------------------------------------- /libs/multidict/__pycache__/_compat.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict/__pycache__/_compat.cpython-311.pyc -------------------------------------------------------------------------------- /libs/multidict/_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict/_abc.py -------------------------------------------------------------------------------- /libs/multidict/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict/_compat.py -------------------------------------------------------------------------------- /libs/multidict/_multidict.cpython-39-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict/_multidict.cpython-39-darwin.so -------------------------------------------------------------------------------- /libs/multidict/_multidict_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict/_multidict_base.py -------------------------------------------------------------------------------- /libs/multidict/_multidict_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/multidict/_multidict_py.py -------------------------------------------------------------------------------- /libs/multidict/py.typed: -------------------------------------------------------------------------------- 1 | PEP-561 marker. -------------------------------------------------------------------------------- /libs/openai-0.27.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/openai-0.27.7.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai-0.27.7.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/openai-0.27.7.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai-0.27.7.dist-info/METADATA -------------------------------------------------------------------------------- /libs/openai-0.27.7.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai-0.27.7.dist-info/RECORD -------------------------------------------------------------------------------- /libs/openai-0.27.7.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/openai-0.27.7.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.40.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/openai-0.27.7.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai-0.27.7.dist-info/entry_points.txt -------------------------------------------------------------------------------- /libs/openai-0.27.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | openai 2 | -------------------------------------------------------------------------------- /libs/openai-0.27.7.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/openai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/__init__.py -------------------------------------------------------------------------------- /libs/openai/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/openai/__pycache__/error.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/__pycache__/error.cpython-311.pyc -------------------------------------------------------------------------------- /libs/openai/__pycache__/util.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/__pycache__/util.cpython-311.pyc -------------------------------------------------------------------------------- /libs/openai/__pycache__/version.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/__pycache__/version.cpython-311.pyc -------------------------------------------------------------------------------- /libs/openai/_openai_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/_openai_scripts.py -------------------------------------------------------------------------------- /libs/openai/api_requestor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_requestor.py -------------------------------------------------------------------------------- /libs/openai/api_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/__init__.py -------------------------------------------------------------------------------- /libs/openai/api_resources/abstract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/abstract/__init__.py -------------------------------------------------------------------------------- /libs/openai/api_resources/abstract/api_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/abstract/api_resource.py -------------------------------------------------------------------------------- /libs/openai/api_resources/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/audio.py -------------------------------------------------------------------------------- /libs/openai/api_resources/chat_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/chat_completion.py -------------------------------------------------------------------------------- /libs/openai/api_resources/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/completion.py -------------------------------------------------------------------------------- /libs/openai/api_resources/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/customer.py -------------------------------------------------------------------------------- /libs/openai/api_resources/deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/deployment.py -------------------------------------------------------------------------------- /libs/openai/api_resources/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/edit.py -------------------------------------------------------------------------------- /libs/openai/api_resources/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/embedding.py -------------------------------------------------------------------------------- /libs/openai/api_resources/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/engine.py -------------------------------------------------------------------------------- /libs/openai/api_resources/error_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/error_object.py -------------------------------------------------------------------------------- /libs/openai/api_resources/experimental/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/experimental/__init__.py -------------------------------------------------------------------------------- /libs/openai/api_resources/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/file.py -------------------------------------------------------------------------------- /libs/openai/api_resources/fine_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/fine_tune.py -------------------------------------------------------------------------------- /libs/openai/api_resources/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/image.py -------------------------------------------------------------------------------- /libs/openai/api_resources/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/model.py -------------------------------------------------------------------------------- /libs/openai/api_resources/moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/api_resources/moderation.py -------------------------------------------------------------------------------- /libs/openai/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/cli.py -------------------------------------------------------------------------------- /libs/openai/datalib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/datalib/__init__.py -------------------------------------------------------------------------------- /libs/openai/datalib/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/datalib/common.py -------------------------------------------------------------------------------- /libs/openai/datalib/numpy_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/datalib/numpy_helper.py -------------------------------------------------------------------------------- /libs/openai/datalib/pandas_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/datalib/pandas_helper.py -------------------------------------------------------------------------------- /libs/openai/embeddings_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/embeddings_utils.py -------------------------------------------------------------------------------- /libs/openai/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/error.py -------------------------------------------------------------------------------- /libs/openai/object_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/object_classes.py -------------------------------------------------------------------------------- /libs/openai/openai_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/openai_object.py -------------------------------------------------------------------------------- /libs/openai/openai_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/openai_response.py -------------------------------------------------------------------------------- /libs/openai/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/openai/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/openai/tests/asyncio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/openai/tests/asyncio/test_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/tests/asyncio/test_endpoints.py -------------------------------------------------------------------------------- /libs/openai/tests/test_api_requestor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/tests/test_api_requestor.py -------------------------------------------------------------------------------- /libs/openai/tests/test_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/tests/test_endpoints.py -------------------------------------------------------------------------------- /libs/openai/tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/tests/test_exceptions.py -------------------------------------------------------------------------------- /libs/openai/tests/test_file_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/tests/test_file_cli.py -------------------------------------------------------------------------------- /libs/openai/tests/test_long_examples_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/tests/test_long_examples_validator.py -------------------------------------------------------------------------------- /libs/openai/tests/test_url_composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/tests/test_url_composition.py -------------------------------------------------------------------------------- /libs/openai/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/tests/test_util.py -------------------------------------------------------------------------------- /libs/openai/upload_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/upload_progress.py -------------------------------------------------------------------------------- /libs/openai/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/util.py -------------------------------------------------------------------------------- /libs/openai/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/validators.py -------------------------------------------------------------------------------- /libs/openai/version.py: -------------------------------------------------------------------------------- 1 | VERSION = "0.27.7" 2 | -------------------------------------------------------------------------------- /libs/openai/wandb_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/openai/wandb_logger.py -------------------------------------------------------------------------------- /libs/requests-2.31.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/requests-2.31.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests-2.31.0.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/requests-2.31.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests-2.31.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/requests-2.31.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests-2.31.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/requests-2.31.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.40.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/requests-2.31.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /libs/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__init__.py -------------------------------------------------------------------------------- /libs/requests/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/adapters.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/adapters.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/api.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/api.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/auth.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/auth.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/certs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/certs.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/compat.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/compat.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/cookies.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/cookies.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/exceptions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/exceptions.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/hooks.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/hooks.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/packages.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/packages.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/sessions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/sessions.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/structures.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/structures.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__pycache__/utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__pycache__/utils.cpython-311.pyc -------------------------------------------------------------------------------- /libs/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/__version__.py -------------------------------------------------------------------------------- /libs/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/_internal_utils.py -------------------------------------------------------------------------------- /libs/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/adapters.py -------------------------------------------------------------------------------- /libs/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/api.py -------------------------------------------------------------------------------- /libs/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/auth.py -------------------------------------------------------------------------------- /libs/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/certs.py -------------------------------------------------------------------------------- /libs/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/compat.py -------------------------------------------------------------------------------- /libs/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/cookies.py -------------------------------------------------------------------------------- /libs/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/exceptions.py -------------------------------------------------------------------------------- /libs/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/help.py -------------------------------------------------------------------------------- /libs/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/hooks.py -------------------------------------------------------------------------------- /libs/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/models.py -------------------------------------------------------------------------------- /libs/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/packages.py -------------------------------------------------------------------------------- /libs/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/sessions.py -------------------------------------------------------------------------------- /libs/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/status_codes.py -------------------------------------------------------------------------------- /libs/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/structures.py -------------------------------------------------------------------------------- /libs/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/requests/utils.py -------------------------------------------------------------------------------- /libs/rfc3986-1.5.0.dist-info/AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986-1.5.0.dist-info/AUTHORS.rst -------------------------------------------------------------------------------- /libs/rfc3986-1.5.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/rfc3986-1.5.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986-1.5.0.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/rfc3986-1.5.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986-1.5.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/rfc3986-1.5.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986-1.5.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/rfc3986-1.5.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986-1.5.0.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/rfc3986-1.5.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | rfc3986 2 | -------------------------------------------------------------------------------- /libs/rfc3986/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__init__.py -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/_mixin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/_mixin.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/abnf_regexp.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/abnf_regexp.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/api.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/api.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/compat.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/compat.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/exceptions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/exceptions.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/iri.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/iri.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/misc.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/misc.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/normalizers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/normalizers.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/parseresult.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/parseresult.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/uri.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/uri.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/__pycache__/validators.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/__pycache__/validators.cpython-311.pyc -------------------------------------------------------------------------------- /libs/rfc3986/_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/_mixin.py -------------------------------------------------------------------------------- /libs/rfc3986/abnf_regexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/abnf_regexp.py -------------------------------------------------------------------------------- /libs/rfc3986/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/api.py -------------------------------------------------------------------------------- /libs/rfc3986/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/builder.py -------------------------------------------------------------------------------- /libs/rfc3986/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/compat.py -------------------------------------------------------------------------------- /libs/rfc3986/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/exceptions.py -------------------------------------------------------------------------------- /libs/rfc3986/iri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/iri.py -------------------------------------------------------------------------------- /libs/rfc3986/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/misc.py -------------------------------------------------------------------------------- /libs/rfc3986/normalizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/normalizers.py -------------------------------------------------------------------------------- /libs/rfc3986/parseresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/parseresult.py -------------------------------------------------------------------------------- /libs/rfc3986/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/uri.py -------------------------------------------------------------------------------- /libs/rfc3986/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/rfc3986/validators.py -------------------------------------------------------------------------------- /libs/sniffio-1.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/sniffio-1.3.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio-1.3.0.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/sniffio-1.3.0.dist-info/LICENSE.APACHE2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio-1.3.0.dist-info/LICENSE.APACHE2 -------------------------------------------------------------------------------- /libs/sniffio-1.3.0.dist-info/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio-1.3.0.dist-info/LICENSE.MIT -------------------------------------------------------------------------------- /libs/sniffio-1.3.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio-1.3.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/sniffio-1.3.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio-1.3.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/sniffio-1.3.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/sniffio-1.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sniffio 2 | -------------------------------------------------------------------------------- /libs/sniffio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio/__init__.py -------------------------------------------------------------------------------- /libs/sniffio/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/sniffio/__pycache__/_impl.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio/__pycache__/_impl.cpython-311.pyc -------------------------------------------------------------------------------- /libs/sniffio/__pycache__/_version.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio/__pycache__/_version.cpython-311.pyc -------------------------------------------------------------------------------- /libs/sniffio/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio/_impl.py -------------------------------------------------------------------------------- /libs/sniffio/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/sniffio/_tests/test_sniffio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio/_tests/test_sniffio.py -------------------------------------------------------------------------------- /libs/sniffio/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/sniffio/_version.py -------------------------------------------------------------------------------- /libs/sniffio/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/tqdm-4.65.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/tqdm-4.65.0.dist-info/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm-4.65.0.dist-info/LICENCE -------------------------------------------------------------------------------- /libs/tqdm-4.65.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm-4.65.0.dist-info/METADATA -------------------------------------------------------------------------------- /libs/tqdm-4.65.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm-4.65.0.dist-info/RECORD -------------------------------------------------------------------------------- /libs/tqdm-4.65.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.38.4) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /libs/tqdm-4.65.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm-4.65.0.dist-info/entry_points.txt -------------------------------------------------------------------------------- /libs/tqdm-4.65.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | tqdm 2 | -------------------------------------------------------------------------------- /libs/tqdm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__init__.py -------------------------------------------------------------------------------- /libs/tqdm/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__main__.py -------------------------------------------------------------------------------- /libs/tqdm/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/tqdm/__pycache__/_dist_ver.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__pycache__/_dist_ver.cpython-311.pyc -------------------------------------------------------------------------------- /libs/tqdm/__pycache__/_monitor.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__pycache__/_monitor.cpython-311.pyc -------------------------------------------------------------------------------- /libs/tqdm/__pycache__/_tqdm_pandas.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__pycache__/_tqdm_pandas.cpython-311.pyc -------------------------------------------------------------------------------- /libs/tqdm/__pycache__/cli.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__pycache__/cli.cpython-311.pyc -------------------------------------------------------------------------------- /libs/tqdm/__pycache__/gui.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__pycache__/gui.cpython-311.pyc -------------------------------------------------------------------------------- /libs/tqdm/__pycache__/std.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__pycache__/std.cpython-311.pyc -------------------------------------------------------------------------------- /libs/tqdm/__pycache__/utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__pycache__/utils.cpython-311.pyc -------------------------------------------------------------------------------- /libs/tqdm/__pycache__/version.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/__pycache__/version.cpython-311.pyc -------------------------------------------------------------------------------- /libs/tqdm/_dist_ver.py: -------------------------------------------------------------------------------- 1 | __version__ = '4.65.0' 2 | -------------------------------------------------------------------------------- /libs/tqdm/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/_main.py -------------------------------------------------------------------------------- /libs/tqdm/_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/_monitor.py -------------------------------------------------------------------------------- /libs/tqdm/_tqdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/_tqdm.py -------------------------------------------------------------------------------- /libs/tqdm/_tqdm_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/_tqdm_gui.py -------------------------------------------------------------------------------- /libs/tqdm/_tqdm_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/_tqdm_notebook.py -------------------------------------------------------------------------------- /libs/tqdm/_tqdm_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/_tqdm_pandas.py -------------------------------------------------------------------------------- /libs/tqdm/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/_utils.py -------------------------------------------------------------------------------- /libs/tqdm/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/asyncio.py -------------------------------------------------------------------------------- /libs/tqdm/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/auto.py -------------------------------------------------------------------------------- /libs/tqdm/autonotebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/autonotebook.py -------------------------------------------------------------------------------- /libs/tqdm/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/cli.py -------------------------------------------------------------------------------- /libs/tqdm/completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/completion.sh -------------------------------------------------------------------------------- /libs/tqdm/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/contrib/__init__.py -------------------------------------------------------------------------------- /libs/tqdm/contrib/bells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/contrib/bells.py -------------------------------------------------------------------------------- /libs/tqdm/contrib/concurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/contrib/concurrent.py -------------------------------------------------------------------------------- /libs/tqdm/contrib/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/contrib/discord.py -------------------------------------------------------------------------------- /libs/tqdm/contrib/itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/contrib/itertools.py -------------------------------------------------------------------------------- /libs/tqdm/contrib/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/contrib/logging.py -------------------------------------------------------------------------------- /libs/tqdm/contrib/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/contrib/slack.py -------------------------------------------------------------------------------- /libs/tqdm/contrib/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/contrib/telegram.py -------------------------------------------------------------------------------- /libs/tqdm/contrib/utils_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/contrib/utils_worker.py -------------------------------------------------------------------------------- /libs/tqdm/dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/dask.py -------------------------------------------------------------------------------- /libs/tqdm/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/gui.py -------------------------------------------------------------------------------- /libs/tqdm/keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/keras.py -------------------------------------------------------------------------------- /libs/tqdm/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/notebook.py -------------------------------------------------------------------------------- /libs/tqdm/rich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/rich.py -------------------------------------------------------------------------------- /libs/tqdm/std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/std.py -------------------------------------------------------------------------------- /libs/tqdm/tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/tk.py -------------------------------------------------------------------------------- /libs/tqdm/tqdm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/tqdm.1 -------------------------------------------------------------------------------- /libs/tqdm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/utils.py -------------------------------------------------------------------------------- /libs/tqdm/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/tqdm/version.py -------------------------------------------------------------------------------- /libs/urllib3-1.26.16.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/urllib3-1.26.16.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3-1.26.16.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /libs/urllib3-1.26.16.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3-1.26.16.dist-info/METADATA -------------------------------------------------------------------------------- /libs/urllib3-1.26.16.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3-1.26.16.dist-info/RECORD -------------------------------------------------------------------------------- /libs/urllib3-1.26.16.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/urllib3-1.26.16.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3-1.26.16.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/urllib3-1.26.16.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /libs/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/__init__.py -------------------------------------------------------------------------------- /libs/urllib3/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/__pycache__/_version.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/__pycache__/_version.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/__pycache__/connection.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/__pycache__/connection.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/__pycache__/exceptions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/__pycache__/exceptions.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/__pycache__/fields.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/__pycache__/fields.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/__pycache__/filepost.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/__pycache__/filepost.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/__pycache__/poolmanager.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/__pycache__/poolmanager.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/__pycache__/request.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/__pycache__/request.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/__pycache__/response.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/__pycache__/response.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/_collections.py -------------------------------------------------------------------------------- /libs/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.16" 3 | -------------------------------------------------------------------------------- /libs/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/connection.py -------------------------------------------------------------------------------- /libs/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/connectionpool.py -------------------------------------------------------------------------------- /libs/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /libs/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /libs/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /libs/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /libs/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /libs/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /libs/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /libs/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /libs/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/exceptions.py -------------------------------------------------------------------------------- /libs/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/fields.py -------------------------------------------------------------------------------- /libs/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/filepost.py -------------------------------------------------------------------------------- /libs/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /libs/urllib3/packages/backports/weakref_finalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/packages/backports/weakref_finalize.py -------------------------------------------------------------------------------- /libs/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/packages/six.py -------------------------------------------------------------------------------- /libs/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/poolmanager.py -------------------------------------------------------------------------------- /libs/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/request.py -------------------------------------------------------------------------------- /libs/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/response.py -------------------------------------------------------------------------------- /libs/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/__init__.py -------------------------------------------------------------------------------- /libs/urllib3/util/__pycache__/proxy.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/__pycache__/proxy.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/util/__pycache__/queue.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/__pycache__/queue.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/util/__pycache__/retry.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/__pycache__/retry.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/util/__pycache__/ssl_.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/__pycache__/ssl_.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/util/__pycache__/url.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/__pycache__/url.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/util/__pycache__/wait.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/__pycache__/wait.cpython-311.pyc -------------------------------------------------------------------------------- /libs/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/connection.py -------------------------------------------------------------------------------- /libs/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/proxy.py -------------------------------------------------------------------------------- /libs/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/queue.py -------------------------------------------------------------------------------- /libs/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/request.py -------------------------------------------------------------------------------- /libs/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/response.py -------------------------------------------------------------------------------- /libs/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/retry.py -------------------------------------------------------------------------------- /libs/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /libs/urllib3/util/ssl_match_hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/ssl_match_hostname.py -------------------------------------------------------------------------------- /libs/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /libs/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/timeout.py -------------------------------------------------------------------------------- /libs/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/url.py -------------------------------------------------------------------------------- /libs/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/urllib3/util/wait.py -------------------------------------------------------------------------------- /libs/yarl-1.9.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /libs/yarl-1.9.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl-1.9.2.dist-info/LICENSE -------------------------------------------------------------------------------- /libs/yarl-1.9.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl-1.9.2.dist-info/METADATA -------------------------------------------------------------------------------- /libs/yarl-1.9.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl-1.9.2.dist-info/RECORD -------------------------------------------------------------------------------- /libs/yarl-1.9.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl-1.9.2.dist-info/WHEEL -------------------------------------------------------------------------------- /libs/yarl-1.9.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | yarl 2 | -------------------------------------------------------------------------------- /libs/yarl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/__init__.py -------------------------------------------------------------------------------- /libs/yarl/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/__init__.pyi -------------------------------------------------------------------------------- /libs/yarl/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/yarl/__pycache__/_quoting.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/__pycache__/_quoting.cpython-311.pyc -------------------------------------------------------------------------------- /libs/yarl/__pycache__/_quoting_py.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/__pycache__/_quoting_py.cpython-311.pyc -------------------------------------------------------------------------------- /libs/yarl/__pycache__/_url.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/__pycache__/_url.cpython-311.pyc -------------------------------------------------------------------------------- /libs/yarl/_quoting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/_quoting.py -------------------------------------------------------------------------------- /libs/yarl/_quoting_c.cpython-39-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/_quoting_c.cpython-39-darwin.so -------------------------------------------------------------------------------- /libs/yarl/_quoting_c.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/_quoting_c.pyi -------------------------------------------------------------------------------- /libs/yarl/_quoting_c.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/_quoting_c.pyx -------------------------------------------------------------------------------- /libs/yarl/_quoting_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/_quoting_py.py -------------------------------------------------------------------------------- /libs/yarl/_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/libs/yarl/_url.py -------------------------------------------------------------------------------- /libs/yarl/py.typed: -------------------------------------------------------------------------------- 1 | # Placeholder 2 | -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinan-c/alfred-translate-it/HEAD/translate.py --------------------------------------------------------------------------------