├── .aiderignore ├── .bash_aliases ├── .bumpversion.cfg ├── .coveragerc ├── .devcontainer ├── Dockerfile ├── config │ ├── .vnc │ │ └── xstartup │ └── novnc │ │ └── index.html ├── devcontainer.json ├── postCreate.sh └── postStart.sh ├── .gitignore ├── .tmuxp.yaml ├── CLAUDE.md ├── LICENSE ├── README.md ├── TESTINGPROCEDURE.md ├── __init__.py ├── config.json ├── conftest.py ├── external ├── boto3 │ ├── __init__.py │ ├── compat.py │ ├── crt.py │ ├── data │ │ ├── cloudformation │ │ │ └── 2010-05-15 │ │ │ │ └── resources-1.json │ │ ├── cloudwatch │ │ │ └── 2010-08-01 │ │ │ │ └── resources-1.json │ │ ├── dynamodb │ │ │ └── 2012-08-10 │ │ │ │ └── resources-1.json │ │ ├── ec2 │ │ │ ├── 2014-10-01 │ │ │ │ └── resources-1.json │ │ │ ├── 2015-03-01 │ │ │ │ └── resources-1.json │ │ │ ├── 2015-04-15 │ │ │ │ └── resources-1.json │ │ │ ├── 2015-10-01 │ │ │ │ └── resources-1.json │ │ │ ├── 2016-04-01 │ │ │ │ └── resources-1.json │ │ │ ├── 2016-09-15 │ │ │ │ └── resources-1.json │ │ │ └── 2016-11-15 │ │ │ │ └── resources-1.json │ │ ├── glacier │ │ │ └── 2012-06-01 │ │ │ │ └── resources-1.json │ │ ├── iam │ │ │ └── 2010-05-08 │ │ │ │ └── resources-1.json │ │ ├── opsworks │ │ │ └── 2013-02-18 │ │ │ │ └── resources-1.json │ │ ├── s3 │ │ │ └── 2006-03-01 │ │ │ │ └── resources-1.json │ │ ├── sns │ │ │ └── 2010-03-31 │ │ │ │ └── resources-1.json │ │ └── sqs │ │ │ └── 2012-11-05 │ │ │ └── resources-1.json │ ├── docs │ │ ├── __init__.py │ │ ├── action.py │ │ ├── attr.py │ │ ├── base.py │ │ ├── client.py │ │ ├── collection.py │ │ ├── docstring.py │ │ ├── method.py │ │ ├── resource.py │ │ ├── service.py │ │ ├── subresource.py │ │ ├── utils.py │ │ └── waiter.py │ ├── dynamodb │ │ ├── __init__.py │ │ ├── conditions.py │ │ ├── table.py │ │ ├── transform.py │ │ └── types.py │ ├── ec2 │ │ ├── __init__.py │ │ ├── createtags.py │ │ └── deletetags.py │ ├── examples │ │ ├── cloudfront.rst │ │ └── s3.rst │ ├── exceptions.py │ ├── resources │ │ ├── __init__.py │ │ ├── action.py │ │ ├── base.py │ │ ├── collection.py │ │ ├── factory.py │ │ ├── model.py │ │ ├── params.py │ │ └── response.py │ ├── s3 │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── inject.py │ │ └── transfer.py │ ├── session.py │ └── utils.py ├── botocore │ ├── __init__.py │ ├── args.py │ ├── auth.py │ ├── awsrequest.py │ ├── cacert.pem │ ├── client.py │ ├── compat.py │ ├── compress.py │ ├── config.py │ ├── configloader.py │ ├── configprovider.py │ ├── context.py │ ├── credentials.py │ ├── crt │ │ ├── __init__.py │ │ └── auth.py │ ├── data │ │ ├── _retry.json │ │ ├── endpoints.json │ │ ├── partitions.json │ │ ├── polly │ │ │ └── 2016-06-10 │ │ │ │ ├── endpoint-rule-set-1.json.gz │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json.gz │ │ └── sdk-default-configuration.json │ ├── discovery.py │ ├── docs │ │ ├── __init__.py │ │ ├── bcdoc │ │ │ ├── __init__.py │ │ │ ├── docstringparser.py │ │ │ ├── restdoc.py │ │ │ └── style.py │ │ ├── client.py │ │ ├── docstring.py │ │ ├── example.py │ │ ├── method.py │ │ ├── paginator.py │ │ ├── params.py │ │ ├── service.py │ │ ├── shape.py │ │ ├── sharedexample.py │ │ ├── translator.py │ │ ├── utils.py │ │ └── waiter.py │ ├── endpoint.py │ ├── endpoint_provider.py │ ├── errorfactory.py │ ├── eventstream.py │ ├── exceptions.py │ ├── handlers.py │ ├── history.py │ ├── hooks.py │ ├── httpchecksum.py │ ├── httpsession.py │ ├── loaders.py │ ├── model.py │ ├── monitoring.py │ ├── paginate.py │ ├── parsers.py │ ├── regions.py │ ├── response.py │ ├── retries │ │ ├── __init__.py │ │ ├── adaptive.py │ │ ├── base.py │ │ ├── bucket.py │ │ ├── quota.py │ │ ├── special.py │ │ ├── standard.py │ │ └── throttling.py │ ├── retryhandler.py │ ├── serialize.py │ ├── session.py │ ├── signers.py │ ├── stub.py │ ├── tokens.py │ ├── translate.py │ ├── useragent.py │ ├── utils.py │ ├── validate.py │ ├── vendored │ │ ├── __init__.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ └── packages │ │ │ │ ├── __init__.py │ │ │ │ └── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ └── exceptions.py │ │ └── six.py │ └── waiter.py ├── cachetools │ ├── __init__.py │ ├── _cached.py │ ├── _cachedmethod.py │ ├── func.py │ └── keys.py ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── cacert.pem │ ├── core.py │ └── py.typed ├── charset_normalizer │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── cd.py │ ├── cli │ │ ├── __init__.py │ │ └── __main__.py │ ├── constant.py │ ├── legacy.py │ ├── md.cpython-313-x86_64-linux-gnu.so │ ├── md.py │ ├── md__mypyc.cpython-313-x86_64-linux-gnu.so │ ├── models.py │ ├── py.typed │ ├── utils.py │ └── version.py ├── click │ ├── __init__.py │ ├── _compat.py │ ├── _termui_impl.py │ ├── _textwrap.py │ ├── _winconsole.py │ ├── core.py │ ├── decorators.py │ ├── exceptions.py │ ├── formatting.py │ ├── globals.py │ ├── parser.py │ ├── py.typed │ ├── shell_completion.py │ ├── termui.py │ ├── testing.py │ ├── types.py │ └── utils.py ├── comtypes │ ├── GUID.py │ ├── __init__.py │ ├── _comobject.py │ ├── _memberspec.py │ ├── _meta.py │ ├── _npsupport.py │ ├── _post_coinit │ │ ├── __init__.py │ │ ├── _cominterface_meta_patcher.py │ │ ├── bstr.py │ │ ├── instancemethod.py │ │ ├── misc.py │ │ └── unknwn.py │ ├── _safearray.py │ ├── _tlib_version_checker.py │ ├── _vtbl.py │ ├── automation.py │ ├── clear_cache.py │ ├── client │ │ ├── __init__.py │ │ ├── _activeobj.py │ │ ├── _code_cache.py │ │ ├── _constants.py │ │ ├── _create.py │ │ ├── _events.py │ │ ├── _generate.py │ │ ├── _managing.py │ │ ├── dynamic.py │ │ └── lazybind.py │ ├── connectionpoints.py │ ├── errorinfo.py │ ├── git.py │ ├── hints.pyi │ ├── hresult.py │ ├── logutil.py │ ├── messageloop.py │ ├── patcher.py │ ├── persist.py │ ├── safearray.py │ ├── server │ │ ├── __init__.py │ │ ├── automation.py │ │ ├── connectionpoints.py │ │ ├── inprocserver.py │ │ ├── localserver.py │ │ ├── register.py │ │ └── w_getopt.py │ ├── shelllink.py │ ├── stream.py │ ├── test │ │ ├── TestComServer.idl │ │ ├── TestComServer.py │ │ ├── TestComServer.tlb │ │ ├── TestDispServer.idl │ │ ├── TestDispServer.py │ │ ├── TestDispServer.tlb │ │ ├── __init__.py │ │ ├── find_memleak.py │ │ ├── mylib.idl │ │ ├── mylib.tlb │ │ ├── mytypelib.idl │ │ ├── runtests.py │ │ ├── setup.py │ │ ├── test_BSTR.py │ │ ├── test_DISPPARAMS.py │ │ ├── test_GUID.py │ │ ├── test_QueryService.py │ │ ├── test_agilent.py │ │ ├── test_avmc.py │ │ ├── test_basic.py │ │ ├── test_casesensitivity.py │ │ ├── test_clear_cache.py │ │ ├── test_client.py │ │ ├── test_client_dynamic.py │ │ ├── test_client_regenerate_modules.py │ │ ├── test_collections.py │ │ ├── test_comobject.py │ │ ├── test_comserver.py │ │ ├── test_createwrappers.py │ │ ├── test_dict.py │ │ ├── test_dispifc_records.py │ │ ├── test_dispifc_safearrays.py │ │ ├── test_dispinterface.py │ │ ├── test_dyndispatch.py │ │ ├── test_errorinfo.py │ │ ├── test_excel.py │ │ ├── test_findgendir.py │ │ ├── test_getactiveobj.py │ │ ├── test_hresult.py │ │ ├── test_ie.py │ │ ├── test_ienum.py │ │ ├── test_imfattributes.py │ │ ├── test_inout_args.py │ │ ├── test_jscript.js │ │ ├── test_midl_safearray_create.py │ │ ├── test_monikers.py │ │ ├── test_msscript.py │ │ ├── test_npsupport.py │ │ ├── test_outparam.py │ │ ├── test_persist.py │ │ ├── test_pump_events.py │ │ ├── test_recordinfo.py │ │ ├── test_safearray.py │ │ ├── test_sapi.py │ │ ├── test_server.py │ │ ├── test_server_register.py │ │ ├── test_shelllink.py │ │ ├── test_showevents.py │ │ ├── test_storage.py │ │ ├── test_stream.py │ │ ├── test_subinterface.py │ │ ├── test_typeannotator.py │ │ ├── test_typeinfo.py │ │ ├── test_urlhistory.py │ │ ├── test_variant.py │ │ ├── test_w_getopt.py │ │ ├── test_win32com_interop.py │ │ ├── test_wmi.py │ │ ├── test_word.py │ │ └── urlhist.tlb │ ├── tools │ │ ├── __init__.py │ │ ├── codegenerator │ │ │ ├── __init__.py │ │ │ ├── codegenerator.py │ │ │ ├── comments.py │ │ │ ├── heads.py │ │ │ ├── helpers.py │ │ │ ├── modulenamer.py │ │ │ ├── namespaces.py │ │ │ ├── packing.py │ │ │ └── typeannotator.py │ │ ├── tlbparser.py │ │ ├── typedesc.py │ │ └── typedesc_base.py │ ├── typeinfo.py │ ├── util.py │ └── viewobject.py ├── databind │ ├── core │ │ ├── __init__.py │ │ ├── context.py │ │ ├── converter.py │ │ ├── dataclasses.py │ │ ├── dataclasses.pyi │ │ ├── mapper.py │ │ ├── py.typed │ │ ├── schema.py │ │ ├── settings.py │ │ ├── tests │ │ │ ├── context_test.py │ │ │ ├── schema_docspec_example_test.py │ │ │ ├── schema_test.py │ │ │ └── schema_with_nested_dataclasses_test.py │ │ ├── union.py │ │ └── utils.py │ └── json │ │ ├── __init__.py │ │ ├── converters.py │ │ ├── module.py │ │ ├── py.typed │ │ ├── settings.py │ │ └── tests │ │ └── converters_test.py ├── dateutil │ ├── __init__.py │ ├── _common.py │ ├── _version.py │ ├── easter.py │ ├── parser │ │ ├── __init__.py │ │ ├── _parser.py │ │ └── isoparser.py │ ├── relativedelta.py │ ├── rrule.py │ ├── tz │ │ ├── __init__.py │ │ ├── _common.py │ │ ├── _factories.py │ │ ├── tz.py │ │ └── win.py │ ├── tzwin.py │ ├── utils.py │ └── zoneinfo │ │ ├── __init__.py │ │ ├── dateutil-zoneinfo.tar.gz │ │ └── rebuild.py ├── deprecated │ ├── __init__.py │ ├── classic.py │ └── sphinx.py ├── espeakng │ └── __init__.py ├── gtts │ ├── __init__.py │ ├── accents.py │ ├── cli.py │ ├── lang.py │ ├── langs.py │ ├── tests │ │ ├── __init__.py │ │ ├── input_files │ │ │ ├── test_cli_test_ascii.txt │ │ │ └── test_cli_test_utf8.txt │ │ ├── test_cli.py │ │ ├── test_lang.py │ │ ├── test_tts.py │ │ └── test_utils.py │ ├── tokenizer │ │ ├── __init__.py │ │ ├── core.py │ │ ├── pre_processors.py │ │ ├── symbols.py │ │ ├── tests │ │ │ ├── test_core.py │ │ │ ├── test_pre_processors.py │ │ │ └── test_tokenizer_cases.py │ │ └── tokenizer_cases.py │ ├── tts.py │ ├── utils.py │ └── version.py ├── idna │ ├── __init__.py │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ ├── py.typed │ └── uts46data.py ├── jmespath │ ├── __init__.py │ ├── ast.py │ ├── compat.py │ ├── exceptions.py │ ├── functions.py │ ├── lexer.py │ ├── parser.py │ └── visitor.py ├── machineid │ ├── __init__.py │ └── py.typed ├── nr │ ├── date │ │ ├── __init__.py │ │ ├── duration.py │ │ ├── format.py │ │ ├── format_sets.py │ │ ├── options.py │ │ ├── py.typed │ │ └── re.py │ └── stream │ │ ├── __init__.py │ │ ├── _notset.py │ │ ├── _optional.py │ │ ├── _refreshable.py │ │ ├── _stream.py │ │ ├── _supplier.py │ │ └── py.typed ├── requests │ ├── __init__.py │ ├── __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 ├── s3transfer │ ├── __init__.py │ ├── bandwidth.py │ ├── compat.py │ ├── constants.py │ ├── copies.py │ ├── crt.py │ ├── delete.py │ ├── download.py │ ├── exceptions.py │ ├── futures.py │ ├── manager.py │ ├── processpool.py │ ├── subscribers.py │ ├── tasks.py │ ├── upload.py │ └── utils.py ├── sentry_sdk │ ├── __init__.py │ ├── _compat.py │ ├── _init_implementation.py │ ├── _log_batcher.py │ ├── _lru_cache.py │ ├── _queue.py │ ├── _types.py │ ├── _werkzeug.py │ ├── ai │ │ ├── __init__.py │ │ ├── monitoring.py │ │ └── utils.py │ ├── api.py │ ├── attachments.py │ ├── client.py │ ├── consts.py │ ├── crons │ │ ├── __init__.py │ │ ├── api.py │ │ ├── consts.py │ │ └── decorator.py │ ├── debug.py │ ├── envelope.py │ ├── feature_flags.py │ ├── hub.py │ ├── integrations │ │ ├── __init__.py │ │ ├── _asgi_common.py │ │ ├── _wsgi_common.py │ │ ├── aiohttp.py │ │ ├── anthropic.py │ │ ├── argv.py │ │ ├── ariadne.py │ │ ├── arq.py │ │ ├── asgi.py │ │ ├── asyncio.py │ │ ├── asyncpg.py │ │ ├── atexit.py │ │ ├── aws_lambda.py │ │ ├── beam.py │ │ ├── boto3.py │ │ ├── bottle.py │ │ ├── celery │ │ │ ├── __init__.py │ │ │ ├── beat.py │ │ │ └── utils.py │ │ ├── chalice.py │ │ ├── clickhouse_driver.py │ │ ├── cloud_resource_context.py │ │ ├── cohere.py │ │ ├── dedupe.py │ │ ├── django │ │ │ ├── __init__.py │ │ │ ├── asgi.py │ │ │ ├── caching.py │ │ │ ├── middleware.py │ │ │ ├── signals_handlers.py │ │ │ ├── templates.py │ │ │ ├── transactions.py │ │ │ └── views.py │ │ ├── dramatiq.py │ │ ├── excepthook.py │ │ ├── executing.py │ │ ├── falcon.py │ │ ├── fastapi.py │ │ ├── flask.py │ │ ├── gcp.py │ │ ├── gnu_backtrace.py │ │ ├── gql.py │ │ ├── graphene.py │ │ ├── grpc │ │ │ ├── __init__.py │ │ │ ├── aio │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── server.py │ │ │ ├── client.py │ │ │ ├── consts.py │ │ │ └── server.py │ │ ├── httpx.py │ │ ├── huey.py │ │ ├── huggingface_hub.py │ │ ├── langchain.py │ │ ├── launchdarkly.py │ │ ├── litestar.py │ │ ├── logging.py │ │ ├── loguru.py │ │ ├── modules.py │ │ ├── openai.py │ │ ├── openai_agents │ │ │ ├── __init__.py │ │ │ ├── consts.py │ │ │ ├── patches │ │ │ │ ├── __init__.py │ │ │ │ ├── agent_run.py │ │ │ │ ├── models.py │ │ │ │ ├── runner.py │ │ │ │ └── tools.py │ │ │ ├── spans │ │ │ │ ├── __init__.py │ │ │ │ ├── agent_workflow.py │ │ │ │ ├── ai_client.py │ │ │ │ ├── execute_tool.py │ │ │ │ ├── handoff.py │ │ │ │ └── invoke_agent.py │ │ │ └── utils.py │ │ ├── openfeature.py │ │ ├── opentelemetry │ │ │ ├── __init__.py │ │ │ ├── consts.py │ │ │ ├── integration.py │ │ │ ├── propagator.py │ │ │ └── span_processor.py │ │ ├── pure_eval.py │ │ ├── pymongo.py │ │ ├── pyramid.py │ │ ├── quart.py │ │ ├── ray.py │ │ ├── redis │ │ │ ├── __init__.py │ │ │ ├── _async_common.py │ │ │ ├── _sync_common.py │ │ │ ├── consts.py │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── caches.py │ │ │ │ └── queries.py │ │ │ ├── rb.py │ │ │ ├── redis.py │ │ │ ├── redis_cluster.py │ │ │ ├── redis_py_cluster_legacy.py │ │ │ └── utils.py │ │ ├── rq.py │ │ ├── rust_tracing.py │ │ ├── sanic.py │ │ ├── serverless.py │ │ ├── socket.py │ │ ├── spark │ │ │ ├── __init__.py │ │ │ ├── spark_driver.py │ │ │ └── spark_worker.py │ │ ├── sqlalchemy.py │ │ ├── starlette.py │ │ ├── starlite.py │ │ ├── statsig.py │ │ ├── stdlib.py │ │ ├── strawberry.py │ │ ├── sys_exit.py │ │ ├── threading.py │ │ ├── tornado.py │ │ ├── trytond.py │ │ ├── typer.py │ │ ├── unleash.py │ │ └── wsgi.py │ ├── logger.py │ ├── metrics.py │ ├── monitor.py │ ├── profiler │ │ ├── __init__.py │ │ ├── continuous_profiler.py │ │ ├── transaction_profiler.py │ │ └── utils.py │ ├── py.typed │ ├── scope.py │ ├── scrubber.py │ ├── serializer.py │ ├── session.py │ ├── sessions.py │ ├── spotlight.py │ ├── tracing.py │ ├── tracing_utils.py │ ├── transport.py │ ├── types.py │ ├── utils.py │ └── worker.py ├── six.py ├── typeapi │ ├── __init__.py │ ├── __init___test.py │ ├── backport │ │ ├── __init__.py │ │ └── inspect.py │ ├── future │ │ ├── __init__.py │ │ ├── astrewrite.py │ │ ├── astrewrite_test.py │ │ ├── fake.py │ │ └── fake_test.py │ ├── py.typed │ ├── typehint.py │ ├── typehint_test.py │ ├── utils.py │ └── utils_test.py ├── typing_extensions.py ├── urllib3 │ ├── __init__.py │ ├── _base_connection.py │ ├── _collections.py │ ├── _request_methods.py │ ├── _version.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ │ ├── __init__.py │ │ ├── emscripten │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── emscripten_fetch_worker.js │ │ │ ├── fetch.py │ │ │ ├── request.py │ │ │ └── response.py │ │ ├── pyopenssl.py │ │ └── socks.py │ ├── exceptions.py │ ├── fields.py │ ├── filepost.py │ ├── http2 │ │ ├── __init__.py │ │ ├── connection.py │ │ └── probe.py │ ├── poolmanager.py │ ├── py.typed │ ├── response.py │ └── util │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── proxy.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── ssl_.py │ │ ├── ssl_match_hostname.py │ │ ├── ssltransport.py │ │ ├── timeout.py │ │ ├── url.py │ │ ├── util.py │ │ └── wait.py └── wrapt │ ├── __init__.py │ ├── __wrapt__.py │ ├── _wrappers.cpython-313-x86_64-linux-gnu.so │ ├── arguments.py │ ├── decorators.py │ ├── importer.py │ ├── patches.py │ ├── weakrefs.py │ └── wrappers.py ├── graphics ├── hypertts_lite_banner.png ├── hypertts_pro_banner.png ├── hypertts_service_compatible_banner.png ├── hypertts_service_enabled_banner.png ├── icon_play.png ├── icon_settings.png └── icon_speaker.png ├── hypertts_addon ├── __init__.py ├── anki_utils.py ├── batch_status.py ├── cloudlanguagetools.py ├── component_batch.py ├── component_batch_preview.py ├── component_choose_easy_advanced.py ├── component_choosepreset.py ├── component_common.py ├── component_configuration.py ├── component_easy.py ├── component_errorhandling.py ├── component_hyperttspro.py ├── component_label_preview.py ├── component_mappingrule.py ├── component_preferences.py ├── component_presetmappingrules.py ├── component_realtime.py ├── component_realtime_side.py ├── component_realtime_source.py ├── component_services_configuration.py ├── component_shortcuts.py ├── component_source.py ├── component_source_easy.py ├── component_target.py ├── component_target_easy.py ├── component_text_processing.py ├── component_trialsignup.py ├── component_voiceselection.py ├── component_voiceselection_easy.py ├── config_models.py ├── constants.py ├── constants_events.py ├── context.py ├── errors.py ├── gui.py ├── gui_utils.py ├── hypertts.py ├── languages.py ├── logging_utils.py ├── options.py ├── preset_rules_status.py ├── sentry_utils.py ├── service.py ├── servicemanager.py ├── services │ ├── __init__.py │ ├── service_alibaba.py │ ├── service_amazon.py │ ├── service_azure.py │ ├── service_cambridge.py │ ├── service_cereproc.py │ ├── service_duden.py │ ├── service_dwds.py │ ├── service_elevenlabs.py │ ├── service_elevenlabscustom.py │ ├── service_espeakng.py │ ├── service_forvo.py │ ├── service_fptai.py │ ├── service_fptaiclassic.py │ ├── service_google.py │ ├── service_googletranslate.py │ ├── service_macos.py │ ├── service_naver.py │ ├── service_naverpapago.py │ ├── service_openai.py │ ├── service_oxford.py │ ├── service_spanishdict.py │ ├── service_vocalware.py │ ├── service_watson.py │ ├── service_windows.py │ ├── service_youdao.py │ └── voicelist.py ├── stats.py ├── test_services │ ├── __init__.py │ ├── service_a.py │ ├── service_b.py │ └── service_c.py ├── text_utils.py ├── ttsplayer.py ├── version.py └── voice.py ├── manifest.json ├── package.sh ├── pytest.ini ├── requirements.anki-2.1.49.txt ├── requirements.external.txt ├── requirements.txt ├── requirements.windows.txt ├── scripts ├── openbox_menu_hypertts └── run_hypertts_manual_test ├── test_utils ├── __init__.py ├── gui_testing_utils.py └── testing_utils.py ├── tests ├── test_audio_batch.py ├── test_audio_realtime.py ├── test_audio_rules.py ├── test_component_batch_editor.py ├── test_component_choosepreset.py ├── test_component_presetmappingrules.py ├── test_components_1.py ├── test_components_2.py ├── test_components_3.py ├── test_components_4.py ├── test_config_models.py ├── test_data_sentry │ ├── reject_events │ │ ├── hypertts_error_reject_ankihub_1.json │ │ ├── hypertts_error_reject_discord_pipe_1.json │ │ ├── hypertts_error_reject_feature_flags_1.json │ │ ├── hypertts_error_reject_smartnotes_1.json │ │ ├── hypertts_error_reject_smartnotes_2.json │ │ ├── hypertts_error_reject_smartnotes_3.json │ │ └── hypertts_error_reject_widget_pause_button_1.json │ └── valid_events │ │ ├── error_logger.json │ │ ├── hypertts_error_accept_azure_429.json │ │ ├── hypertts_error_accept_cambridge.json │ │ ├── hypertts_error_accept_connectionerror_1.json │ │ ├── hypertts_error_accept_elevenlabscustom_1.json │ │ ├── hypertts_error_accept_readtimeout_1.json │ │ ├── runtime_error.json │ │ └── unknown_exception.json ├── test_errors.py ├── test_hypertts.py ├── test_sentry_utils.py ├── test_servicemanager.py ├── test_services_error_handling.py ├── test_text_utils.py └── test_tts_services.py ├── user_files └── README.txt └── workspace.code-workspace /.aiderignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.aiderignore -------------------------------------------------------------------------------- /.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.bash_aliases -------------------------------------------------------------------------------- /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.coveragerc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/config/.vnc/xstartup: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec startxfce4 3 | -------------------------------------------------------------------------------- /.devcontainer/config/novnc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.devcontainer/config/novnc/index.html -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/postCreate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.devcontainer/postCreate.sh -------------------------------------------------------------------------------- /.devcontainer/postStart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.devcontainer/postStart.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.gitignore -------------------------------------------------------------------------------- /.tmuxp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/.tmuxp.yaml -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/README.md -------------------------------------------------------------------------------- /TESTINGPROCEDURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/TESTINGPROCEDURE.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/__init__.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/config.json -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/conftest.py -------------------------------------------------------------------------------- /external/boto3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/__init__.py -------------------------------------------------------------------------------- /external/boto3/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/compat.py -------------------------------------------------------------------------------- /external/boto3/crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/crt.py -------------------------------------------------------------------------------- /external/boto3/data/cloudformation/2010-05-15/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/cloudformation/2010-05-15/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/cloudwatch/2010-08-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/cloudwatch/2010-08-01/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/dynamodb/2012-08-10/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/dynamodb/2012-08-10/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/ec2/2014-10-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/ec2/2014-10-01/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/ec2/2015-03-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/ec2/2015-03-01/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/ec2/2015-04-15/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/ec2/2015-04-15/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/ec2/2015-10-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/ec2/2015-10-01/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/ec2/2016-04-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/ec2/2016-04-01/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/ec2/2016-09-15/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/ec2/2016-09-15/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/ec2/2016-11-15/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/ec2/2016-11-15/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/glacier/2012-06-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/glacier/2012-06-01/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/iam/2010-05-08/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/iam/2010-05-08/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/opsworks/2013-02-18/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/opsworks/2013-02-18/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/s3/2006-03-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/s3/2006-03-01/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/sns/2010-03-31/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/sns/2010-03-31/resources-1.json -------------------------------------------------------------------------------- /external/boto3/data/sqs/2012-11-05/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/data/sqs/2012-11-05/resources-1.json -------------------------------------------------------------------------------- /external/boto3/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/__init__.py -------------------------------------------------------------------------------- /external/boto3/docs/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/action.py -------------------------------------------------------------------------------- /external/boto3/docs/attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/attr.py -------------------------------------------------------------------------------- /external/boto3/docs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/base.py -------------------------------------------------------------------------------- /external/boto3/docs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/client.py -------------------------------------------------------------------------------- /external/boto3/docs/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/collection.py -------------------------------------------------------------------------------- /external/boto3/docs/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/docstring.py -------------------------------------------------------------------------------- /external/boto3/docs/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/method.py -------------------------------------------------------------------------------- /external/boto3/docs/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/resource.py -------------------------------------------------------------------------------- /external/boto3/docs/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/service.py -------------------------------------------------------------------------------- /external/boto3/docs/subresource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/subresource.py -------------------------------------------------------------------------------- /external/boto3/docs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/utils.py -------------------------------------------------------------------------------- /external/boto3/docs/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/docs/waiter.py -------------------------------------------------------------------------------- /external/boto3/dynamodb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/dynamodb/__init__.py -------------------------------------------------------------------------------- /external/boto3/dynamodb/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/dynamodb/conditions.py -------------------------------------------------------------------------------- /external/boto3/dynamodb/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/dynamodb/table.py -------------------------------------------------------------------------------- /external/boto3/dynamodb/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/dynamodb/transform.py -------------------------------------------------------------------------------- /external/boto3/dynamodb/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/dynamodb/types.py -------------------------------------------------------------------------------- /external/boto3/ec2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/ec2/__init__.py -------------------------------------------------------------------------------- /external/boto3/ec2/createtags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/ec2/createtags.py -------------------------------------------------------------------------------- /external/boto3/ec2/deletetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/ec2/deletetags.py -------------------------------------------------------------------------------- /external/boto3/examples/cloudfront.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/examples/cloudfront.rst -------------------------------------------------------------------------------- /external/boto3/examples/s3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/examples/s3.rst -------------------------------------------------------------------------------- /external/boto3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/exceptions.py -------------------------------------------------------------------------------- /external/boto3/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/boto3/resources/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/resources/action.py -------------------------------------------------------------------------------- /external/boto3/resources/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/resources/base.py -------------------------------------------------------------------------------- /external/boto3/resources/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/resources/collection.py -------------------------------------------------------------------------------- /external/boto3/resources/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/resources/factory.py -------------------------------------------------------------------------------- /external/boto3/resources/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/resources/model.py -------------------------------------------------------------------------------- /external/boto3/resources/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/resources/params.py -------------------------------------------------------------------------------- /external/boto3/resources/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/resources/response.py -------------------------------------------------------------------------------- /external/boto3/s3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/s3/__init__.py -------------------------------------------------------------------------------- /external/boto3/s3/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/s3/constants.py -------------------------------------------------------------------------------- /external/boto3/s3/inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/s3/inject.py -------------------------------------------------------------------------------- /external/boto3/s3/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/s3/transfer.py -------------------------------------------------------------------------------- /external/boto3/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/session.py -------------------------------------------------------------------------------- /external/boto3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/boto3/utils.py -------------------------------------------------------------------------------- /external/botocore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/__init__.py -------------------------------------------------------------------------------- /external/botocore/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/args.py -------------------------------------------------------------------------------- /external/botocore/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/auth.py -------------------------------------------------------------------------------- /external/botocore/awsrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/awsrequest.py -------------------------------------------------------------------------------- /external/botocore/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/cacert.pem -------------------------------------------------------------------------------- /external/botocore/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/client.py -------------------------------------------------------------------------------- /external/botocore/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/compat.py -------------------------------------------------------------------------------- /external/botocore/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/compress.py -------------------------------------------------------------------------------- /external/botocore/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/config.py -------------------------------------------------------------------------------- /external/botocore/configloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/configloader.py -------------------------------------------------------------------------------- /external/botocore/configprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/configprovider.py -------------------------------------------------------------------------------- /external/botocore/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/context.py -------------------------------------------------------------------------------- /external/botocore/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/credentials.py -------------------------------------------------------------------------------- /external/botocore/crt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/crt/__init__.py -------------------------------------------------------------------------------- /external/botocore/crt/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/crt/auth.py -------------------------------------------------------------------------------- /external/botocore/data/_retry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/data/_retry.json -------------------------------------------------------------------------------- /external/botocore/data/endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/data/endpoints.json -------------------------------------------------------------------------------- /external/botocore/data/partitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/data/partitions.json -------------------------------------------------------------------------------- /external/botocore/data/polly/2016-06-10/endpoint-rule-set-1.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/data/polly/2016-06-10/endpoint-rule-set-1.json.gz -------------------------------------------------------------------------------- /external/botocore/data/polly/2016-06-10/examples-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/data/polly/2016-06-10/examples-1.json -------------------------------------------------------------------------------- /external/botocore/data/polly/2016-06-10/paginators-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/data/polly/2016-06-10/paginators-1.json -------------------------------------------------------------------------------- /external/botocore/data/polly/2016-06-10/service-2.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/data/polly/2016-06-10/service-2.json.gz -------------------------------------------------------------------------------- /external/botocore/data/sdk-default-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/data/sdk-default-configuration.json -------------------------------------------------------------------------------- /external/botocore/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/discovery.py -------------------------------------------------------------------------------- /external/botocore/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/__init__.py -------------------------------------------------------------------------------- /external/botocore/docs/bcdoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/bcdoc/__init__.py -------------------------------------------------------------------------------- /external/botocore/docs/bcdoc/docstringparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/bcdoc/docstringparser.py -------------------------------------------------------------------------------- /external/botocore/docs/bcdoc/restdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/bcdoc/restdoc.py -------------------------------------------------------------------------------- /external/botocore/docs/bcdoc/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/bcdoc/style.py -------------------------------------------------------------------------------- /external/botocore/docs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/client.py -------------------------------------------------------------------------------- /external/botocore/docs/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/docstring.py -------------------------------------------------------------------------------- /external/botocore/docs/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/example.py -------------------------------------------------------------------------------- /external/botocore/docs/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/method.py -------------------------------------------------------------------------------- /external/botocore/docs/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/paginator.py -------------------------------------------------------------------------------- /external/botocore/docs/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/params.py -------------------------------------------------------------------------------- /external/botocore/docs/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/service.py -------------------------------------------------------------------------------- /external/botocore/docs/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/shape.py -------------------------------------------------------------------------------- /external/botocore/docs/sharedexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/sharedexample.py -------------------------------------------------------------------------------- /external/botocore/docs/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/translator.py -------------------------------------------------------------------------------- /external/botocore/docs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/utils.py -------------------------------------------------------------------------------- /external/botocore/docs/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/docs/waiter.py -------------------------------------------------------------------------------- /external/botocore/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/endpoint.py -------------------------------------------------------------------------------- /external/botocore/endpoint_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/endpoint_provider.py -------------------------------------------------------------------------------- /external/botocore/errorfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/errorfactory.py -------------------------------------------------------------------------------- /external/botocore/eventstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/eventstream.py -------------------------------------------------------------------------------- /external/botocore/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/exceptions.py -------------------------------------------------------------------------------- /external/botocore/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/handlers.py -------------------------------------------------------------------------------- /external/botocore/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/history.py -------------------------------------------------------------------------------- /external/botocore/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/hooks.py -------------------------------------------------------------------------------- /external/botocore/httpchecksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/httpchecksum.py -------------------------------------------------------------------------------- /external/botocore/httpsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/httpsession.py -------------------------------------------------------------------------------- /external/botocore/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/loaders.py -------------------------------------------------------------------------------- /external/botocore/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/model.py -------------------------------------------------------------------------------- /external/botocore/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/monitoring.py -------------------------------------------------------------------------------- /external/botocore/paginate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/paginate.py -------------------------------------------------------------------------------- /external/botocore/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/parsers.py -------------------------------------------------------------------------------- /external/botocore/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/regions.py -------------------------------------------------------------------------------- /external/botocore/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/response.py -------------------------------------------------------------------------------- /external/botocore/retries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/retries/__init__.py -------------------------------------------------------------------------------- /external/botocore/retries/adaptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/retries/adaptive.py -------------------------------------------------------------------------------- /external/botocore/retries/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/retries/base.py -------------------------------------------------------------------------------- /external/botocore/retries/bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/retries/bucket.py -------------------------------------------------------------------------------- /external/botocore/retries/quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/retries/quota.py -------------------------------------------------------------------------------- /external/botocore/retries/special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/retries/special.py -------------------------------------------------------------------------------- /external/botocore/retries/standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/retries/standard.py -------------------------------------------------------------------------------- /external/botocore/retries/throttling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/retries/throttling.py -------------------------------------------------------------------------------- /external/botocore/retryhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/retryhandler.py -------------------------------------------------------------------------------- /external/botocore/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/serialize.py -------------------------------------------------------------------------------- /external/botocore/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/session.py -------------------------------------------------------------------------------- /external/botocore/signers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/signers.py -------------------------------------------------------------------------------- /external/botocore/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/stub.py -------------------------------------------------------------------------------- /external/botocore/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/tokens.py -------------------------------------------------------------------------------- /external/botocore/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/translate.py -------------------------------------------------------------------------------- /external/botocore/useragent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/useragent.py -------------------------------------------------------------------------------- /external/botocore/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/utils.py -------------------------------------------------------------------------------- /external/botocore/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/validate.py -------------------------------------------------------------------------------- /external/botocore/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/botocore/vendored/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/vendored/requests/__init__.py -------------------------------------------------------------------------------- /external/botocore/vendored/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/vendored/requests/exceptions.py -------------------------------------------------------------------------------- /external/botocore/vendored/requests/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/vendored/requests/packages/__init__.py -------------------------------------------------------------------------------- /external/botocore/vendored/requests/packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/vendored/requests/packages/urllib3/__init__.py -------------------------------------------------------------------------------- /external/botocore/vendored/requests/packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/vendored/requests/packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /external/botocore/vendored/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/vendored/six.py -------------------------------------------------------------------------------- /external/botocore/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/botocore/waiter.py -------------------------------------------------------------------------------- /external/cachetools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/cachetools/__init__.py -------------------------------------------------------------------------------- /external/cachetools/_cached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/cachetools/_cached.py -------------------------------------------------------------------------------- /external/cachetools/_cachedmethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/cachetools/_cachedmethod.py -------------------------------------------------------------------------------- /external/cachetools/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/cachetools/func.py -------------------------------------------------------------------------------- /external/cachetools/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/cachetools/keys.py -------------------------------------------------------------------------------- /external/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/certifi/__init__.py -------------------------------------------------------------------------------- /external/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/certifi/__main__.py -------------------------------------------------------------------------------- /external/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/certifi/cacert.pem -------------------------------------------------------------------------------- /external/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/certifi/core.py -------------------------------------------------------------------------------- /external/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/charset_normalizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/__init__.py -------------------------------------------------------------------------------- /external/charset_normalizer/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/__main__.py -------------------------------------------------------------------------------- /external/charset_normalizer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/api.py -------------------------------------------------------------------------------- /external/charset_normalizer/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/cd.py -------------------------------------------------------------------------------- /external/charset_normalizer/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/cli/__init__.py -------------------------------------------------------------------------------- /external/charset_normalizer/cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/cli/__main__.py -------------------------------------------------------------------------------- /external/charset_normalizer/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/constant.py -------------------------------------------------------------------------------- /external/charset_normalizer/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/legacy.py -------------------------------------------------------------------------------- /external/charset_normalizer/md.cpython-313-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/md.cpython-313-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /external/charset_normalizer/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/md.py -------------------------------------------------------------------------------- /external/charset_normalizer/md__mypyc.cpython-313-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/md__mypyc.cpython-313-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /external/charset_normalizer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/models.py -------------------------------------------------------------------------------- /external/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/charset_normalizer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/utils.py -------------------------------------------------------------------------------- /external/charset_normalizer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/charset_normalizer/version.py -------------------------------------------------------------------------------- /external/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/__init__.py -------------------------------------------------------------------------------- /external/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/_compat.py -------------------------------------------------------------------------------- /external/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/_termui_impl.py -------------------------------------------------------------------------------- /external/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/_textwrap.py -------------------------------------------------------------------------------- /external/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/_winconsole.py -------------------------------------------------------------------------------- /external/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/core.py -------------------------------------------------------------------------------- /external/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/decorators.py -------------------------------------------------------------------------------- /external/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/exceptions.py -------------------------------------------------------------------------------- /external/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/formatting.py -------------------------------------------------------------------------------- /external/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/globals.py -------------------------------------------------------------------------------- /external/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/parser.py -------------------------------------------------------------------------------- /external/click/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/click/shell_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/shell_completion.py -------------------------------------------------------------------------------- /external/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/termui.py -------------------------------------------------------------------------------- /external/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/testing.py -------------------------------------------------------------------------------- /external/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/types.py -------------------------------------------------------------------------------- /external/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/click/utils.py -------------------------------------------------------------------------------- /external/comtypes/GUID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/GUID.py -------------------------------------------------------------------------------- /external/comtypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/__init__.py -------------------------------------------------------------------------------- /external/comtypes/_comobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_comobject.py -------------------------------------------------------------------------------- /external/comtypes/_memberspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_memberspec.py -------------------------------------------------------------------------------- /external/comtypes/_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_meta.py -------------------------------------------------------------------------------- /external/comtypes/_npsupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_npsupport.py -------------------------------------------------------------------------------- /external/comtypes/_post_coinit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_post_coinit/__init__.py -------------------------------------------------------------------------------- /external/comtypes/_post_coinit/_cominterface_meta_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_post_coinit/_cominterface_meta_patcher.py -------------------------------------------------------------------------------- /external/comtypes/_post_coinit/bstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_post_coinit/bstr.py -------------------------------------------------------------------------------- /external/comtypes/_post_coinit/instancemethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_post_coinit/instancemethod.py -------------------------------------------------------------------------------- /external/comtypes/_post_coinit/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_post_coinit/misc.py -------------------------------------------------------------------------------- /external/comtypes/_post_coinit/unknwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_post_coinit/unknwn.py -------------------------------------------------------------------------------- /external/comtypes/_safearray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_safearray.py -------------------------------------------------------------------------------- /external/comtypes/_tlib_version_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_tlib_version_checker.py -------------------------------------------------------------------------------- /external/comtypes/_vtbl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/_vtbl.py -------------------------------------------------------------------------------- /external/comtypes/automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/automation.py -------------------------------------------------------------------------------- /external/comtypes/clear_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/clear_cache.py -------------------------------------------------------------------------------- /external/comtypes/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/client/__init__.py -------------------------------------------------------------------------------- /external/comtypes/client/_activeobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/client/_activeobj.py -------------------------------------------------------------------------------- /external/comtypes/client/_code_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/client/_code_cache.py -------------------------------------------------------------------------------- /external/comtypes/client/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/client/_constants.py -------------------------------------------------------------------------------- /external/comtypes/client/_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/client/_create.py -------------------------------------------------------------------------------- /external/comtypes/client/_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/client/_events.py -------------------------------------------------------------------------------- /external/comtypes/client/_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/client/_generate.py -------------------------------------------------------------------------------- /external/comtypes/client/_managing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/client/_managing.py -------------------------------------------------------------------------------- /external/comtypes/client/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/client/dynamic.py -------------------------------------------------------------------------------- /external/comtypes/client/lazybind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/client/lazybind.py -------------------------------------------------------------------------------- /external/comtypes/connectionpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/connectionpoints.py -------------------------------------------------------------------------------- /external/comtypes/errorinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/errorinfo.py -------------------------------------------------------------------------------- /external/comtypes/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/git.py -------------------------------------------------------------------------------- /external/comtypes/hints.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/hints.pyi -------------------------------------------------------------------------------- /external/comtypes/hresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/hresult.py -------------------------------------------------------------------------------- /external/comtypes/logutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/logutil.py -------------------------------------------------------------------------------- /external/comtypes/messageloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/messageloop.py -------------------------------------------------------------------------------- /external/comtypes/patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/patcher.py -------------------------------------------------------------------------------- /external/comtypes/persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/persist.py -------------------------------------------------------------------------------- /external/comtypes/safearray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/safearray.py -------------------------------------------------------------------------------- /external/comtypes/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/server/__init__.py -------------------------------------------------------------------------------- /external/comtypes/server/automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/server/automation.py -------------------------------------------------------------------------------- /external/comtypes/server/connectionpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/server/connectionpoints.py -------------------------------------------------------------------------------- /external/comtypes/server/inprocserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/server/inprocserver.py -------------------------------------------------------------------------------- /external/comtypes/server/localserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/server/localserver.py -------------------------------------------------------------------------------- /external/comtypes/server/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/server/register.py -------------------------------------------------------------------------------- /external/comtypes/server/w_getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/server/w_getopt.py -------------------------------------------------------------------------------- /external/comtypes/shelllink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/shelllink.py -------------------------------------------------------------------------------- /external/comtypes/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/stream.py -------------------------------------------------------------------------------- /external/comtypes/test/TestComServer.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/TestComServer.idl -------------------------------------------------------------------------------- /external/comtypes/test/TestComServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/TestComServer.py -------------------------------------------------------------------------------- /external/comtypes/test/TestComServer.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/TestComServer.tlb -------------------------------------------------------------------------------- /external/comtypes/test/TestDispServer.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/TestDispServer.idl -------------------------------------------------------------------------------- /external/comtypes/test/TestDispServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/TestDispServer.py -------------------------------------------------------------------------------- /external/comtypes/test/TestDispServer.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/TestDispServer.tlb -------------------------------------------------------------------------------- /external/comtypes/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/__init__.py -------------------------------------------------------------------------------- /external/comtypes/test/find_memleak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/find_memleak.py -------------------------------------------------------------------------------- /external/comtypes/test/mylib.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/mylib.idl -------------------------------------------------------------------------------- /external/comtypes/test/mylib.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/mylib.tlb -------------------------------------------------------------------------------- /external/comtypes/test/mytypelib.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/mytypelib.idl -------------------------------------------------------------------------------- /external/comtypes/test/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/runtests.py -------------------------------------------------------------------------------- /external/comtypes/test/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/setup.py -------------------------------------------------------------------------------- /external/comtypes/test/test_BSTR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_BSTR.py -------------------------------------------------------------------------------- /external/comtypes/test/test_DISPPARAMS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_DISPPARAMS.py -------------------------------------------------------------------------------- /external/comtypes/test/test_GUID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_GUID.py -------------------------------------------------------------------------------- /external/comtypes/test/test_QueryService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_QueryService.py -------------------------------------------------------------------------------- /external/comtypes/test/test_agilent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_agilent.py -------------------------------------------------------------------------------- /external/comtypes/test/test_avmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_avmc.py -------------------------------------------------------------------------------- /external/comtypes/test/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_basic.py -------------------------------------------------------------------------------- /external/comtypes/test/test_casesensitivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_casesensitivity.py -------------------------------------------------------------------------------- /external/comtypes/test/test_clear_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_clear_cache.py -------------------------------------------------------------------------------- /external/comtypes/test/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_client.py -------------------------------------------------------------------------------- /external/comtypes/test/test_client_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_client_dynamic.py -------------------------------------------------------------------------------- /external/comtypes/test/test_client_regenerate_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_client_regenerate_modules.py -------------------------------------------------------------------------------- /external/comtypes/test/test_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_collections.py -------------------------------------------------------------------------------- /external/comtypes/test/test_comobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_comobject.py -------------------------------------------------------------------------------- /external/comtypes/test/test_comserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_comserver.py -------------------------------------------------------------------------------- /external/comtypes/test/test_createwrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_createwrappers.py -------------------------------------------------------------------------------- /external/comtypes/test/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_dict.py -------------------------------------------------------------------------------- /external/comtypes/test/test_dispifc_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_dispifc_records.py -------------------------------------------------------------------------------- /external/comtypes/test/test_dispifc_safearrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_dispifc_safearrays.py -------------------------------------------------------------------------------- /external/comtypes/test/test_dispinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_dispinterface.py -------------------------------------------------------------------------------- /external/comtypes/test/test_dyndispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_dyndispatch.py -------------------------------------------------------------------------------- /external/comtypes/test/test_errorinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_errorinfo.py -------------------------------------------------------------------------------- /external/comtypes/test/test_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_excel.py -------------------------------------------------------------------------------- /external/comtypes/test/test_findgendir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_findgendir.py -------------------------------------------------------------------------------- /external/comtypes/test/test_getactiveobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_getactiveobj.py -------------------------------------------------------------------------------- /external/comtypes/test/test_hresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_hresult.py -------------------------------------------------------------------------------- /external/comtypes/test/test_ie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_ie.py -------------------------------------------------------------------------------- /external/comtypes/test/test_ienum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_ienum.py -------------------------------------------------------------------------------- /external/comtypes/test/test_imfattributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_imfattributes.py -------------------------------------------------------------------------------- /external/comtypes/test/test_inout_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_inout_args.py -------------------------------------------------------------------------------- /external/comtypes/test/test_jscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_jscript.js -------------------------------------------------------------------------------- /external/comtypes/test/test_midl_safearray_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_midl_safearray_create.py -------------------------------------------------------------------------------- /external/comtypes/test/test_monikers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_monikers.py -------------------------------------------------------------------------------- /external/comtypes/test/test_msscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_msscript.py -------------------------------------------------------------------------------- /external/comtypes/test/test_npsupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_npsupport.py -------------------------------------------------------------------------------- /external/comtypes/test/test_outparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_outparam.py -------------------------------------------------------------------------------- /external/comtypes/test/test_persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_persist.py -------------------------------------------------------------------------------- /external/comtypes/test/test_pump_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_pump_events.py -------------------------------------------------------------------------------- /external/comtypes/test/test_recordinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_recordinfo.py -------------------------------------------------------------------------------- /external/comtypes/test/test_safearray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_safearray.py -------------------------------------------------------------------------------- /external/comtypes/test/test_sapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_sapi.py -------------------------------------------------------------------------------- /external/comtypes/test/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_server.py -------------------------------------------------------------------------------- /external/comtypes/test/test_server_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_server_register.py -------------------------------------------------------------------------------- /external/comtypes/test/test_shelllink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_shelllink.py -------------------------------------------------------------------------------- /external/comtypes/test/test_showevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_showevents.py -------------------------------------------------------------------------------- /external/comtypes/test/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_storage.py -------------------------------------------------------------------------------- /external/comtypes/test/test_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_stream.py -------------------------------------------------------------------------------- /external/comtypes/test/test_subinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_subinterface.py -------------------------------------------------------------------------------- /external/comtypes/test/test_typeannotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_typeannotator.py -------------------------------------------------------------------------------- /external/comtypes/test/test_typeinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_typeinfo.py -------------------------------------------------------------------------------- /external/comtypes/test/test_urlhistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_urlhistory.py -------------------------------------------------------------------------------- /external/comtypes/test/test_variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_variant.py -------------------------------------------------------------------------------- /external/comtypes/test/test_w_getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_w_getopt.py -------------------------------------------------------------------------------- /external/comtypes/test/test_win32com_interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_win32com_interop.py -------------------------------------------------------------------------------- /external/comtypes/test/test_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_wmi.py -------------------------------------------------------------------------------- /external/comtypes/test/test_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/test_word.py -------------------------------------------------------------------------------- /external/comtypes/test/urlhist.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/test/urlhist.tlb -------------------------------------------------------------------------------- /external/comtypes/tools/__init__.py: -------------------------------------------------------------------------------- 1 | # the comtypes.tools package 2 | -------------------------------------------------------------------------------- /external/comtypes/tools/codegenerator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/codegenerator/__init__.py -------------------------------------------------------------------------------- /external/comtypes/tools/codegenerator/codegenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/codegenerator/codegenerator.py -------------------------------------------------------------------------------- /external/comtypes/tools/codegenerator/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/codegenerator/comments.py -------------------------------------------------------------------------------- /external/comtypes/tools/codegenerator/heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/codegenerator/heads.py -------------------------------------------------------------------------------- /external/comtypes/tools/codegenerator/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/codegenerator/helpers.py -------------------------------------------------------------------------------- /external/comtypes/tools/codegenerator/modulenamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/codegenerator/modulenamer.py -------------------------------------------------------------------------------- /external/comtypes/tools/codegenerator/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/codegenerator/namespaces.py -------------------------------------------------------------------------------- /external/comtypes/tools/codegenerator/packing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/codegenerator/packing.py -------------------------------------------------------------------------------- /external/comtypes/tools/codegenerator/typeannotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/codegenerator/typeannotator.py -------------------------------------------------------------------------------- /external/comtypes/tools/tlbparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/tlbparser.py -------------------------------------------------------------------------------- /external/comtypes/tools/typedesc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/typedesc.py -------------------------------------------------------------------------------- /external/comtypes/tools/typedesc_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/tools/typedesc_base.py -------------------------------------------------------------------------------- /external/comtypes/typeinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/typeinfo.py -------------------------------------------------------------------------------- /external/comtypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/util.py -------------------------------------------------------------------------------- /external/comtypes/viewobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/comtypes/viewobject.py -------------------------------------------------------------------------------- /external/databind/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/__init__.py -------------------------------------------------------------------------------- /external/databind/core/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/context.py -------------------------------------------------------------------------------- /external/databind/core/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/converter.py -------------------------------------------------------------------------------- /external/databind/core/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/dataclasses.py -------------------------------------------------------------------------------- /external/databind/core/dataclasses.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/dataclasses.pyi -------------------------------------------------------------------------------- /external/databind/core/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/mapper.py -------------------------------------------------------------------------------- /external/databind/core/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/databind/core/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/schema.py -------------------------------------------------------------------------------- /external/databind/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/settings.py -------------------------------------------------------------------------------- /external/databind/core/tests/context_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/tests/context_test.py -------------------------------------------------------------------------------- /external/databind/core/tests/schema_docspec_example_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/tests/schema_docspec_example_test.py -------------------------------------------------------------------------------- /external/databind/core/tests/schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/tests/schema_test.py -------------------------------------------------------------------------------- /external/databind/core/tests/schema_with_nested_dataclasses_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/tests/schema_with_nested_dataclasses_test.py -------------------------------------------------------------------------------- /external/databind/core/union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/union.py -------------------------------------------------------------------------------- /external/databind/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/core/utils.py -------------------------------------------------------------------------------- /external/databind/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/json/__init__.py -------------------------------------------------------------------------------- /external/databind/json/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/json/converters.py -------------------------------------------------------------------------------- /external/databind/json/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/json/module.py -------------------------------------------------------------------------------- /external/databind/json/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/databind/json/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/json/settings.py -------------------------------------------------------------------------------- /external/databind/json/tests/converters_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/databind/json/tests/converters_test.py -------------------------------------------------------------------------------- /external/dateutil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/__init__.py -------------------------------------------------------------------------------- /external/dateutil/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/_common.py -------------------------------------------------------------------------------- /external/dateutil/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/_version.py -------------------------------------------------------------------------------- /external/dateutil/easter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/easter.py -------------------------------------------------------------------------------- /external/dateutil/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/parser/__init__.py -------------------------------------------------------------------------------- /external/dateutil/parser/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/parser/_parser.py -------------------------------------------------------------------------------- /external/dateutil/parser/isoparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/parser/isoparser.py -------------------------------------------------------------------------------- /external/dateutil/relativedelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/relativedelta.py -------------------------------------------------------------------------------- /external/dateutil/rrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/rrule.py -------------------------------------------------------------------------------- /external/dateutil/tz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/tz/__init__.py -------------------------------------------------------------------------------- /external/dateutil/tz/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/tz/_common.py -------------------------------------------------------------------------------- /external/dateutil/tz/_factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/tz/_factories.py -------------------------------------------------------------------------------- /external/dateutil/tz/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/tz/tz.py -------------------------------------------------------------------------------- /external/dateutil/tz/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/tz/win.py -------------------------------------------------------------------------------- /external/dateutil/tzwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/tzwin.py -------------------------------------------------------------------------------- /external/dateutil/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/utils.py -------------------------------------------------------------------------------- /external/dateutil/zoneinfo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/zoneinfo/__init__.py -------------------------------------------------------------------------------- /external/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz -------------------------------------------------------------------------------- /external/dateutil/zoneinfo/rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/dateutil/zoneinfo/rebuild.py -------------------------------------------------------------------------------- /external/deprecated/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/deprecated/__init__.py -------------------------------------------------------------------------------- /external/deprecated/classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/deprecated/classic.py -------------------------------------------------------------------------------- /external/deprecated/sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/deprecated/sphinx.py -------------------------------------------------------------------------------- /external/espeakng/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/espeakng/__init__.py -------------------------------------------------------------------------------- /external/gtts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/__init__.py -------------------------------------------------------------------------------- /external/gtts/accents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/accents.py -------------------------------------------------------------------------------- /external/gtts/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/cli.py -------------------------------------------------------------------------------- /external/gtts/lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/lang.py -------------------------------------------------------------------------------- /external/gtts/langs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/langs.py -------------------------------------------------------------------------------- /external/gtts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gtts/tests/input_files/test_cli_test_ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tests/input_files/test_cli_test_ascii.txt -------------------------------------------------------------------------------- /external/gtts/tests/input_files/test_cli_test_utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tests/input_files/test_cli_test_utf8.txt -------------------------------------------------------------------------------- /external/gtts/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tests/test_cli.py -------------------------------------------------------------------------------- /external/gtts/tests/test_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tests/test_lang.py -------------------------------------------------------------------------------- /external/gtts/tests/test_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tests/test_tts.py -------------------------------------------------------------------------------- /external/gtts/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tests/test_utils.py -------------------------------------------------------------------------------- /external/gtts/tokenizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tokenizer/__init__.py -------------------------------------------------------------------------------- /external/gtts/tokenizer/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tokenizer/core.py -------------------------------------------------------------------------------- /external/gtts/tokenizer/pre_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tokenizer/pre_processors.py -------------------------------------------------------------------------------- /external/gtts/tokenizer/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tokenizer/symbols.py -------------------------------------------------------------------------------- /external/gtts/tokenizer/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tokenizer/tests/test_core.py -------------------------------------------------------------------------------- /external/gtts/tokenizer/tests/test_pre_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tokenizer/tests/test_pre_processors.py -------------------------------------------------------------------------------- /external/gtts/tokenizer/tests/test_tokenizer_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tokenizer/tests/test_tokenizer_cases.py -------------------------------------------------------------------------------- /external/gtts/tokenizer/tokenizer_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tokenizer/tokenizer_cases.py -------------------------------------------------------------------------------- /external/gtts/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/tts.py -------------------------------------------------------------------------------- /external/gtts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/gtts/utils.py -------------------------------------------------------------------------------- /external/gtts/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.5.4" 2 | -------------------------------------------------------------------------------- /external/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/idna/__init__.py -------------------------------------------------------------------------------- /external/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/idna/codec.py -------------------------------------------------------------------------------- /external/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/idna/compat.py -------------------------------------------------------------------------------- /external/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/idna/core.py -------------------------------------------------------------------------------- /external/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/idna/idnadata.py -------------------------------------------------------------------------------- /external/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/idna/intranges.py -------------------------------------------------------------------------------- /external/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.10" 2 | -------------------------------------------------------------------------------- /external/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/idna/uts46data.py -------------------------------------------------------------------------------- /external/jmespath/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/jmespath/__init__.py -------------------------------------------------------------------------------- /external/jmespath/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/jmespath/ast.py -------------------------------------------------------------------------------- /external/jmespath/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/jmespath/compat.py -------------------------------------------------------------------------------- /external/jmespath/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/jmespath/exceptions.py -------------------------------------------------------------------------------- /external/jmespath/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/jmespath/functions.py -------------------------------------------------------------------------------- /external/jmespath/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/jmespath/lexer.py -------------------------------------------------------------------------------- /external/jmespath/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/jmespath/parser.py -------------------------------------------------------------------------------- /external/jmespath/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/jmespath/visitor.py -------------------------------------------------------------------------------- /external/machineid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/machineid/__init__.py -------------------------------------------------------------------------------- /external/machineid/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/nr/date/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/date/__init__.py -------------------------------------------------------------------------------- /external/nr/date/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/date/duration.py -------------------------------------------------------------------------------- /external/nr/date/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/date/format.py -------------------------------------------------------------------------------- /external/nr/date/format_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/date/format_sets.py -------------------------------------------------------------------------------- /external/nr/date/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/date/options.py -------------------------------------------------------------------------------- /external/nr/date/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/nr/date/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/date/re.py -------------------------------------------------------------------------------- /external/nr/stream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/stream/__init__.py -------------------------------------------------------------------------------- /external/nr/stream/_notset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/stream/_notset.py -------------------------------------------------------------------------------- /external/nr/stream/_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/stream/_optional.py -------------------------------------------------------------------------------- /external/nr/stream/_refreshable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/stream/_refreshable.py -------------------------------------------------------------------------------- /external/nr/stream/_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/stream/_stream.py -------------------------------------------------------------------------------- /external/nr/stream/_supplier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/nr/stream/_supplier.py -------------------------------------------------------------------------------- /external/nr/stream/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/__init__.py -------------------------------------------------------------------------------- /external/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/__version__.py -------------------------------------------------------------------------------- /external/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/_internal_utils.py -------------------------------------------------------------------------------- /external/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/adapters.py -------------------------------------------------------------------------------- /external/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/api.py -------------------------------------------------------------------------------- /external/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/auth.py -------------------------------------------------------------------------------- /external/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/certs.py -------------------------------------------------------------------------------- /external/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/compat.py -------------------------------------------------------------------------------- /external/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/cookies.py -------------------------------------------------------------------------------- /external/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/exceptions.py -------------------------------------------------------------------------------- /external/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/help.py -------------------------------------------------------------------------------- /external/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/hooks.py -------------------------------------------------------------------------------- /external/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/models.py -------------------------------------------------------------------------------- /external/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/packages.py -------------------------------------------------------------------------------- /external/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/sessions.py -------------------------------------------------------------------------------- /external/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/status_codes.py -------------------------------------------------------------------------------- /external/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/structures.py -------------------------------------------------------------------------------- /external/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/requests/utils.py -------------------------------------------------------------------------------- /external/s3transfer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/__init__.py -------------------------------------------------------------------------------- /external/s3transfer/bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/bandwidth.py -------------------------------------------------------------------------------- /external/s3transfer/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/compat.py -------------------------------------------------------------------------------- /external/s3transfer/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/constants.py -------------------------------------------------------------------------------- /external/s3transfer/copies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/copies.py -------------------------------------------------------------------------------- /external/s3transfer/crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/crt.py -------------------------------------------------------------------------------- /external/s3transfer/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/delete.py -------------------------------------------------------------------------------- /external/s3transfer/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/download.py -------------------------------------------------------------------------------- /external/s3transfer/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/exceptions.py -------------------------------------------------------------------------------- /external/s3transfer/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/futures.py -------------------------------------------------------------------------------- /external/s3transfer/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/manager.py -------------------------------------------------------------------------------- /external/s3transfer/processpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/processpool.py -------------------------------------------------------------------------------- /external/s3transfer/subscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/subscribers.py -------------------------------------------------------------------------------- /external/s3transfer/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/tasks.py -------------------------------------------------------------------------------- /external/s3transfer/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/upload.py -------------------------------------------------------------------------------- /external/s3transfer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/s3transfer/utils.py -------------------------------------------------------------------------------- /external/sentry_sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/_compat.py -------------------------------------------------------------------------------- /external/sentry_sdk/_init_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/_init_implementation.py -------------------------------------------------------------------------------- /external/sentry_sdk/_log_batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/_log_batcher.py -------------------------------------------------------------------------------- /external/sentry_sdk/_lru_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/_lru_cache.py -------------------------------------------------------------------------------- /external/sentry_sdk/_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/_queue.py -------------------------------------------------------------------------------- /external/sentry_sdk/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/_types.py -------------------------------------------------------------------------------- /external/sentry_sdk/_werkzeug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/_werkzeug.py -------------------------------------------------------------------------------- /external/sentry_sdk/ai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/sentry_sdk/ai/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/ai/monitoring.py -------------------------------------------------------------------------------- /external/sentry_sdk/ai/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/ai/utils.py -------------------------------------------------------------------------------- /external/sentry_sdk/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/api.py -------------------------------------------------------------------------------- /external/sentry_sdk/attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/attachments.py -------------------------------------------------------------------------------- /external/sentry_sdk/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/client.py -------------------------------------------------------------------------------- /external/sentry_sdk/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/consts.py -------------------------------------------------------------------------------- /external/sentry_sdk/crons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/crons/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/crons/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/crons/api.py -------------------------------------------------------------------------------- /external/sentry_sdk/crons/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/crons/consts.py -------------------------------------------------------------------------------- /external/sentry_sdk/crons/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/crons/decorator.py -------------------------------------------------------------------------------- /external/sentry_sdk/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/debug.py -------------------------------------------------------------------------------- /external/sentry_sdk/envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/envelope.py -------------------------------------------------------------------------------- /external/sentry_sdk/feature_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/feature_flags.py -------------------------------------------------------------------------------- /external/sentry_sdk/hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/hub.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/_asgi_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/_asgi_common.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/_wsgi_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/_wsgi_common.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/aiohttp.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/anthropic.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/argv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/argv.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/ariadne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/ariadne.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/arq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/arq.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/asgi.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/asyncio.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/asyncpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/asyncpg.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/atexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/atexit.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/aws_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/aws_lambda.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/beam.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/boto3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/boto3.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/bottle.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/celery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/celery/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/celery/beat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/celery/beat.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/celery/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/celery/utils.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/chalice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/chalice.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/clickhouse_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/clickhouse_driver.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/cloud_resource_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/cloud_resource_context.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/cohere.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/dedupe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/dedupe.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/django/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/django/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/django/asgi.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/django/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/django/caching.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/django/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/django/middleware.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/django/signals_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/django/signals_handlers.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/django/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/django/templates.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/django/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/django/transactions.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/django/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/django/views.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/dramatiq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/dramatiq.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/excepthook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/excepthook.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/executing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/executing.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/falcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/falcon.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/fastapi.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/flask.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/gcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/gcp.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/gnu_backtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/gnu_backtrace.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/gql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/gql.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/graphene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/graphene.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/grpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/grpc/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/grpc/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/grpc/aio/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/grpc/aio/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/grpc/aio/client.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/grpc/aio/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/grpc/aio/server.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/grpc/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/grpc/client.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/grpc/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/grpc/consts.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/grpc/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/grpc/server.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/httpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/httpx.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/huey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/huey.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/huggingface_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/huggingface_hub.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/langchain.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/launchdarkly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/launchdarkly.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/litestar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/litestar.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/logging.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/loguru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/loguru.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/modules.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/consts.py: -------------------------------------------------------------------------------- 1 | SPAN_ORIGIN = "auto.ai.openai_agents" 2 | -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/patches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/patches/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/patches/agent_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/patches/agent_run.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/patches/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/patches/models.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/patches/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/patches/runner.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/patches/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/patches/tools.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/spans/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/spans/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/spans/agent_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/spans/agent_workflow.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/spans/ai_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/spans/ai_client.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/spans/execute_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/spans/execute_tool.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/spans/handoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/spans/handoff.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/spans/invoke_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/spans/invoke_agent.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openai_agents/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openai_agents/utils.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/openfeature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/openfeature.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/opentelemetry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/opentelemetry/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/opentelemetry/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/opentelemetry/consts.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/opentelemetry/integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/opentelemetry/integration.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/opentelemetry/propagator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/opentelemetry/propagator.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/opentelemetry/span_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/opentelemetry/span_processor.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/pure_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/pure_eval.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/pymongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/pymongo.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/pyramid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/pyramid.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/quart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/quart.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/ray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/ray.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/_async_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/_async_common.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/_sync_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/_sync_common.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/consts.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/modules/caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/modules/caches.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/modules/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/modules/queries.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/rb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/rb.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/redis.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/redis_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/redis_cluster.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/redis_py_cluster_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/redis_py_cluster_legacy.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/redis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/redis/utils.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/rq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/rq.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/rust_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/rust_tracing.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/sanic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/sanic.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/serverless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/serverless.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/socket.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/spark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/spark/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/spark/spark_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/spark/spark_driver.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/spark/spark_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/spark/spark_worker.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/sqlalchemy.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/starlette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/starlette.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/starlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/starlite.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/statsig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/statsig.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/stdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/stdlib.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/strawberry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/strawberry.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/sys_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/sys_exit.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/threading.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/tornado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/tornado.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/trytond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/trytond.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/typer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/typer.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/unleash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/unleash.py -------------------------------------------------------------------------------- /external/sentry_sdk/integrations/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/integrations/wsgi.py -------------------------------------------------------------------------------- /external/sentry_sdk/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/logger.py -------------------------------------------------------------------------------- /external/sentry_sdk/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/metrics.py -------------------------------------------------------------------------------- /external/sentry_sdk/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/monitor.py -------------------------------------------------------------------------------- /external/sentry_sdk/profiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/profiler/__init__.py -------------------------------------------------------------------------------- /external/sentry_sdk/profiler/continuous_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/profiler/continuous_profiler.py -------------------------------------------------------------------------------- /external/sentry_sdk/profiler/transaction_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/profiler/transaction_profiler.py -------------------------------------------------------------------------------- /external/sentry_sdk/profiler/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/profiler/utils.py -------------------------------------------------------------------------------- /external/sentry_sdk/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/sentry_sdk/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/scope.py -------------------------------------------------------------------------------- /external/sentry_sdk/scrubber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/scrubber.py -------------------------------------------------------------------------------- /external/sentry_sdk/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/serializer.py -------------------------------------------------------------------------------- /external/sentry_sdk/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/session.py -------------------------------------------------------------------------------- /external/sentry_sdk/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/sessions.py -------------------------------------------------------------------------------- /external/sentry_sdk/spotlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/spotlight.py -------------------------------------------------------------------------------- /external/sentry_sdk/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/tracing.py -------------------------------------------------------------------------------- /external/sentry_sdk/tracing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/tracing_utils.py -------------------------------------------------------------------------------- /external/sentry_sdk/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/transport.py -------------------------------------------------------------------------------- /external/sentry_sdk/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/types.py -------------------------------------------------------------------------------- /external/sentry_sdk/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/utils.py -------------------------------------------------------------------------------- /external/sentry_sdk/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/sentry_sdk/worker.py -------------------------------------------------------------------------------- /external/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/six.py -------------------------------------------------------------------------------- /external/typeapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/__init__.py -------------------------------------------------------------------------------- /external/typeapi/__init___test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/__init___test.py -------------------------------------------------------------------------------- /external/typeapi/backport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/typeapi/backport/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/backport/inspect.py -------------------------------------------------------------------------------- /external/typeapi/future/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/typeapi/future/astrewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/future/astrewrite.py -------------------------------------------------------------------------------- /external/typeapi/future/astrewrite_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/future/astrewrite_test.py -------------------------------------------------------------------------------- /external/typeapi/future/fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/future/fake.py -------------------------------------------------------------------------------- /external/typeapi/future/fake_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/future/fake_test.py -------------------------------------------------------------------------------- /external/typeapi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/typeapi/typehint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/typehint.py -------------------------------------------------------------------------------- /external/typeapi/typehint_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/typehint_test.py -------------------------------------------------------------------------------- /external/typeapi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/utils.py -------------------------------------------------------------------------------- /external/typeapi/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typeapi/utils_test.py -------------------------------------------------------------------------------- /external/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/typing_extensions.py -------------------------------------------------------------------------------- /external/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/__init__.py -------------------------------------------------------------------------------- /external/urllib3/_base_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/_base_connection.py -------------------------------------------------------------------------------- /external/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/_collections.py -------------------------------------------------------------------------------- /external/urllib3/_request_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/_request_methods.py -------------------------------------------------------------------------------- /external/urllib3/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/_version.py -------------------------------------------------------------------------------- /external/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/connection.py -------------------------------------------------------------------------------- /external/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/connectionpool.py -------------------------------------------------------------------------------- /external/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/urllib3/contrib/emscripten/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/contrib/emscripten/__init__.py -------------------------------------------------------------------------------- /external/urllib3/contrib/emscripten/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/contrib/emscripten/connection.py -------------------------------------------------------------------------------- /external/urllib3/contrib/emscripten/emscripten_fetch_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/contrib/emscripten/emscripten_fetch_worker.js -------------------------------------------------------------------------------- /external/urllib3/contrib/emscripten/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/contrib/emscripten/fetch.py -------------------------------------------------------------------------------- /external/urllib3/contrib/emscripten/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/contrib/emscripten/request.py -------------------------------------------------------------------------------- /external/urllib3/contrib/emscripten/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/contrib/emscripten/response.py -------------------------------------------------------------------------------- /external/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /external/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /external/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/exceptions.py -------------------------------------------------------------------------------- /external/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/fields.py -------------------------------------------------------------------------------- /external/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/filepost.py -------------------------------------------------------------------------------- /external/urllib3/http2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/http2/__init__.py -------------------------------------------------------------------------------- /external/urllib3/http2/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/http2/connection.py -------------------------------------------------------------------------------- /external/urllib3/http2/probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/http2/probe.py -------------------------------------------------------------------------------- /external/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/poolmanager.py -------------------------------------------------------------------------------- /external/urllib3/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/py.typed -------------------------------------------------------------------------------- /external/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/response.py -------------------------------------------------------------------------------- /external/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/__init__.py -------------------------------------------------------------------------------- /external/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/connection.py -------------------------------------------------------------------------------- /external/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/proxy.py -------------------------------------------------------------------------------- /external/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/request.py -------------------------------------------------------------------------------- /external/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/response.py -------------------------------------------------------------------------------- /external/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/retry.py -------------------------------------------------------------------------------- /external/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /external/urllib3/util/ssl_match_hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/ssl_match_hostname.py -------------------------------------------------------------------------------- /external/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /external/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/timeout.py -------------------------------------------------------------------------------- /external/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/url.py -------------------------------------------------------------------------------- /external/urllib3/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/util.py -------------------------------------------------------------------------------- /external/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/urllib3/util/wait.py -------------------------------------------------------------------------------- /external/wrapt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/wrapt/__init__.py -------------------------------------------------------------------------------- /external/wrapt/__wrapt__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/wrapt/__wrapt__.py -------------------------------------------------------------------------------- /external/wrapt/_wrappers.cpython-313-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/wrapt/_wrappers.cpython-313-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /external/wrapt/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/wrapt/arguments.py -------------------------------------------------------------------------------- /external/wrapt/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/wrapt/decorators.py -------------------------------------------------------------------------------- /external/wrapt/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/wrapt/importer.py -------------------------------------------------------------------------------- /external/wrapt/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/wrapt/patches.py -------------------------------------------------------------------------------- /external/wrapt/weakrefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/wrapt/weakrefs.py -------------------------------------------------------------------------------- /external/wrapt/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/external/wrapt/wrappers.py -------------------------------------------------------------------------------- /graphics/hypertts_lite_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/graphics/hypertts_lite_banner.png -------------------------------------------------------------------------------- /graphics/hypertts_pro_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/graphics/hypertts_pro_banner.png -------------------------------------------------------------------------------- /graphics/hypertts_service_compatible_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/graphics/hypertts_service_compatible_banner.png -------------------------------------------------------------------------------- /graphics/hypertts_service_enabled_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/graphics/hypertts_service_enabled_banner.png -------------------------------------------------------------------------------- /graphics/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/graphics/icon_play.png -------------------------------------------------------------------------------- /graphics/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/graphics/icon_settings.png -------------------------------------------------------------------------------- /graphics/icon_speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/graphics/icon_speaker.png -------------------------------------------------------------------------------- /hypertts_addon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/__init__.py -------------------------------------------------------------------------------- /hypertts_addon/anki_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/anki_utils.py -------------------------------------------------------------------------------- /hypertts_addon/batch_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/batch_status.py -------------------------------------------------------------------------------- /hypertts_addon/cloudlanguagetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/cloudlanguagetools.py -------------------------------------------------------------------------------- /hypertts_addon/component_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_batch.py -------------------------------------------------------------------------------- /hypertts_addon/component_batch_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_batch_preview.py -------------------------------------------------------------------------------- /hypertts_addon/component_choose_easy_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_choose_easy_advanced.py -------------------------------------------------------------------------------- /hypertts_addon/component_choosepreset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_choosepreset.py -------------------------------------------------------------------------------- /hypertts_addon/component_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_common.py -------------------------------------------------------------------------------- /hypertts_addon/component_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_configuration.py -------------------------------------------------------------------------------- /hypertts_addon/component_easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_easy.py -------------------------------------------------------------------------------- /hypertts_addon/component_errorhandling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_errorhandling.py -------------------------------------------------------------------------------- /hypertts_addon/component_hyperttspro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_hyperttspro.py -------------------------------------------------------------------------------- /hypertts_addon/component_label_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_label_preview.py -------------------------------------------------------------------------------- /hypertts_addon/component_mappingrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_mappingrule.py -------------------------------------------------------------------------------- /hypertts_addon/component_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_preferences.py -------------------------------------------------------------------------------- /hypertts_addon/component_presetmappingrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_presetmappingrules.py -------------------------------------------------------------------------------- /hypertts_addon/component_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_realtime.py -------------------------------------------------------------------------------- /hypertts_addon/component_realtime_side.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_realtime_side.py -------------------------------------------------------------------------------- /hypertts_addon/component_realtime_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_realtime_source.py -------------------------------------------------------------------------------- /hypertts_addon/component_services_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_services_configuration.py -------------------------------------------------------------------------------- /hypertts_addon/component_shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_shortcuts.py -------------------------------------------------------------------------------- /hypertts_addon/component_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_source.py -------------------------------------------------------------------------------- /hypertts_addon/component_source_easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_source_easy.py -------------------------------------------------------------------------------- /hypertts_addon/component_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_target.py -------------------------------------------------------------------------------- /hypertts_addon/component_target_easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_target_easy.py -------------------------------------------------------------------------------- /hypertts_addon/component_text_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_text_processing.py -------------------------------------------------------------------------------- /hypertts_addon/component_trialsignup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_trialsignup.py -------------------------------------------------------------------------------- /hypertts_addon/component_voiceselection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_voiceselection.py -------------------------------------------------------------------------------- /hypertts_addon/component_voiceselection_easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/component_voiceselection_easy.py -------------------------------------------------------------------------------- /hypertts_addon/config_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/config_models.py -------------------------------------------------------------------------------- /hypertts_addon/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/constants.py -------------------------------------------------------------------------------- /hypertts_addon/constants_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/constants_events.py -------------------------------------------------------------------------------- /hypertts_addon/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/context.py -------------------------------------------------------------------------------- /hypertts_addon/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/errors.py -------------------------------------------------------------------------------- /hypertts_addon/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/gui.py -------------------------------------------------------------------------------- /hypertts_addon/gui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/gui_utils.py -------------------------------------------------------------------------------- /hypertts_addon/hypertts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/hypertts.py -------------------------------------------------------------------------------- /hypertts_addon/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/languages.py -------------------------------------------------------------------------------- /hypertts_addon/logging_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/logging_utils.py -------------------------------------------------------------------------------- /hypertts_addon/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/options.py -------------------------------------------------------------------------------- /hypertts_addon/preset_rules_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/preset_rules_status.py -------------------------------------------------------------------------------- /hypertts_addon/sentry_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/sentry_utils.py -------------------------------------------------------------------------------- /hypertts_addon/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/service.py -------------------------------------------------------------------------------- /hypertts_addon/servicemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/servicemanager.py -------------------------------------------------------------------------------- /hypertts_addon/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/__init__.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_alibaba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_alibaba.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_amazon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_amazon.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_azure.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_cambridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_cambridge.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_cereproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_cereproc.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_duden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_duden.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_dwds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_dwds.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_elevenlabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_elevenlabs.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_elevenlabscustom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_elevenlabscustom.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_espeakng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_espeakng.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_forvo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_forvo.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_fptai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_fptai.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_fptaiclassic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_fptaiclassic.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_google.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_googletranslate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_googletranslate.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_macos.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_naver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_naver.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_naverpapago.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_naverpapago.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_openai.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_oxford.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_oxford.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_spanishdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_spanishdict.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_vocalware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_vocalware.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_watson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_watson.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_windows.py -------------------------------------------------------------------------------- /hypertts_addon/services/service_youdao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/service_youdao.py -------------------------------------------------------------------------------- /hypertts_addon/services/voicelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/services/voicelist.py -------------------------------------------------------------------------------- /hypertts_addon/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/stats.py -------------------------------------------------------------------------------- /hypertts_addon/test_services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hypertts_addon/test_services/service_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/test_services/service_a.py -------------------------------------------------------------------------------- /hypertts_addon/test_services/service_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/test_services/service_b.py -------------------------------------------------------------------------------- /hypertts_addon/test_services/service_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/test_services/service_c.py -------------------------------------------------------------------------------- /hypertts_addon/text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/text_utils.py -------------------------------------------------------------------------------- /hypertts_addon/ttsplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/ttsplayer.py -------------------------------------------------------------------------------- /hypertts_addon/version.py: -------------------------------------------------------------------------------- 1 | ANKI_HYPER_TTS_VERSION='2.11.0' 2 | -------------------------------------------------------------------------------- /hypertts_addon/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/hypertts_addon/voice.py -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/manifest.json -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/package.sh -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.anki-2.1.49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/requirements.anki-2.1.49.txt -------------------------------------------------------------------------------- /requirements.external.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/requirements.external.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements.windows.txt: -------------------------------------------------------------------------------- 1 | python-magic-bin 2 | pywin32 -------------------------------------------------------------------------------- /scripts/openbox_menu_hypertts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/scripts/openbox_menu_hypertts -------------------------------------------------------------------------------- /scripts/run_hypertts_manual_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/scripts/run_hypertts_manual_test -------------------------------------------------------------------------------- /test_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_utils/gui_testing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/test_utils/gui_testing_utils.py -------------------------------------------------------------------------------- /test_utils/testing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/test_utils/testing_utils.py -------------------------------------------------------------------------------- /tests/test_audio_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_audio_batch.py -------------------------------------------------------------------------------- /tests/test_audio_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_audio_realtime.py -------------------------------------------------------------------------------- /tests/test_audio_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_audio_rules.py -------------------------------------------------------------------------------- /tests/test_component_batch_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_component_batch_editor.py -------------------------------------------------------------------------------- /tests/test_component_choosepreset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_component_choosepreset.py -------------------------------------------------------------------------------- /tests/test_component_presetmappingrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_component_presetmappingrules.py -------------------------------------------------------------------------------- /tests/test_components_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_components_1.py -------------------------------------------------------------------------------- /tests/test_components_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_components_2.py -------------------------------------------------------------------------------- /tests/test_components_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_components_3.py -------------------------------------------------------------------------------- /tests/test_components_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_components_4.py -------------------------------------------------------------------------------- /tests/test_config_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_config_models.py -------------------------------------------------------------------------------- /tests/test_data_sentry/reject_events/hypertts_error_reject_ankihub_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_data_sentry/reject_events/hypertts_error_reject_ankihub_1.json -------------------------------------------------------------------------------- /tests/test_data_sentry/reject_events/hypertts_error_reject_smartnotes_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_data_sentry/reject_events/hypertts_error_reject_smartnotes_1.json -------------------------------------------------------------------------------- /tests/test_data_sentry/reject_events/hypertts_error_reject_smartnotes_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_data_sentry/reject_events/hypertts_error_reject_smartnotes_2.json -------------------------------------------------------------------------------- /tests/test_data_sentry/reject_events/hypertts_error_reject_smartnotes_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_data_sentry/reject_events/hypertts_error_reject_smartnotes_3.json -------------------------------------------------------------------------------- /tests/test_data_sentry/valid_events/error_logger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_data_sentry/valid_events/error_logger.json -------------------------------------------------------------------------------- /tests/test_data_sentry/valid_events/hypertts_error_accept_azure_429.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_data_sentry/valid_events/hypertts_error_accept_azure_429.json -------------------------------------------------------------------------------- /tests/test_data_sentry/valid_events/hypertts_error_accept_cambridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_data_sentry/valid_events/hypertts_error_accept_cambridge.json -------------------------------------------------------------------------------- /tests/test_data_sentry/valid_events/runtime_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_data_sentry/valid_events/runtime_error.json -------------------------------------------------------------------------------- /tests/test_data_sentry/valid_events/unknown_exception.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_data_sentry/valid_events/unknown_exception.json -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_hypertts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_hypertts.py -------------------------------------------------------------------------------- /tests/test_sentry_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_sentry_utils.py -------------------------------------------------------------------------------- /tests/test_servicemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_servicemanager.py -------------------------------------------------------------------------------- /tests/test_services_error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_services_error_handling.py -------------------------------------------------------------------------------- /tests/test_text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_text_utils.py -------------------------------------------------------------------------------- /tests/test_tts_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/tests/test_tts_services.py -------------------------------------------------------------------------------- /user_files/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/user_files/README.txt -------------------------------------------------------------------------------- /workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vocab-Apps/anki-hyper-tts/HEAD/workspace.code-workspace --------------------------------------------------------------------------------