├── .cargo └── config.toml ├── .claude └── CLAUDE.md ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── issue_template.yml ├── pull_request_template.md └── workflows │ ├── build_and_test_website.yml │ ├── build_binaries.yml │ ├── build_extension.yml │ ├── deploy_extension.yml │ ├── deploy_website.yml │ ├── mypy_primer.yml │ ├── mypy_primer_comment.yml │ ├── needs_triage.yml │ ├── publish_to_pypi.yml │ ├── pyrefly.yml │ ├── rollback_website.yml │ ├── stale.yml │ └── test_extension.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── AGENTS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── conformance ├── README.md ├── conformance_output.py ├── third_party │ ├── _directives_deprecated_library.py │ ├── _enums_member_values.py │ ├── _enums_member_values.pyi │ ├── _enums_members.py │ ├── _enums_members.pyi │ ├── _protocols_modules1.py │ ├── _protocols_modules2.py │ ├── _qualifiers_final_annotation_1.py │ ├── _qualifiers_final_annotation_2.py │ ├── _qualifiers_final_decorator.pyi │ ├── aliases_explicit.py │ ├── aliases_implicit.py │ ├── aliases_newtype.py │ ├── aliases_recursive.py │ ├── aliases_type_statement.py │ ├── aliases_typealiastype.py │ ├── aliases_variance.py │ ├── annotations_coroutines.py │ ├── annotations_forward_refs.py │ ├── annotations_generators.py │ ├── annotations_methods.py │ ├── annotations_typeexpr.py │ ├── callables_annotation.py │ ├── callables_kwargs.py │ ├── callables_protocol.py │ ├── callables_subtyping.py │ ├── classes_classvar.py │ ├── classes_override.py │ ├── conformance.exp │ ├── conformance.result │ ├── constructors_call_init.py │ ├── constructors_call_metaclass.py │ ├── constructors_call_new.py │ ├── constructors_call_type.py │ ├── constructors_callable.py │ ├── constructors_consistency.py │ ├── dataclasses_descriptors.py │ ├── dataclasses_final.py │ ├── dataclasses_frozen.py │ ├── dataclasses_hash.py │ ├── dataclasses_inheritance.py │ ├── dataclasses_kwonly.py │ ├── dataclasses_match_args.py │ ├── dataclasses_order.py │ ├── dataclasses_postinit.py │ ├── dataclasses_slots.py │ ├── dataclasses_transform_class.py │ ├── dataclasses_transform_converter.py │ ├── dataclasses_transform_field.py │ ├── dataclasses_transform_func.py │ ├── dataclasses_transform_meta.py │ ├── dataclasses_usage.py │ ├── directives_assert_type.py │ ├── directives_cast.py │ ├── directives_deprecated.py │ ├── directives_no_type_check.py │ ├── directives_reveal_type.py │ ├── directives_type_checking.py │ ├── directives_type_ignore.py │ ├── directives_type_ignore_file1.py │ ├── directives_type_ignore_file2.py │ ├── directives_version_platform.py │ ├── enums_behaviors.py │ ├── enums_definition.py │ ├── enums_expansion.py │ ├── enums_member_names.py │ ├── enums_member_values.py │ ├── enums_members.py │ ├── exceptions_context_managers.py │ ├── generics_base_class.py │ ├── generics_basic.py │ ├── generics_defaults.py │ ├── generics_defaults_referential.py │ ├── generics_defaults_specialization.py │ ├── generics_paramspec_basic.py │ ├── generics_paramspec_components.py │ ├── generics_paramspec_semantics.py │ ├── generics_paramspec_specialization.py │ ├── generics_scoping.py │ ├── generics_self_advanced.py │ ├── generics_self_attributes.py │ ├── generics_self_basic.py │ ├── generics_self_protocols.py │ ├── generics_self_usage.py │ ├── generics_syntax_compatibility.py │ ├── generics_syntax_declarations.py │ ├── generics_syntax_infer_variance.py │ ├── generics_syntax_scoping.py │ ├── generics_type_erasure.py │ ├── generics_typevartuple_args.py │ ├── generics_typevartuple_basic.py │ ├── generics_typevartuple_callable.py │ ├── generics_typevartuple_concat.py │ ├── generics_typevartuple_overloads.py │ ├── generics_typevartuple_specialization.py │ ├── generics_typevartuple_unpack.py │ ├── generics_upper_bound.py │ ├── generics_variance.py │ ├── generics_variance_inference.py │ ├── historical_positional.py │ ├── literals_interactions.py │ ├── literals_literalstring.py │ ├── literals_parameterizations.py │ ├── literals_semantics.py │ ├── namedtuples_define_class.py │ ├── namedtuples_define_functional.py │ ├── namedtuples_type_compat.py │ ├── namedtuples_usage.py │ ├── narrowing_typeguard.py │ ├── narrowing_typeis.py │ ├── overloads_basic.py │ ├── overloads_consistency.py │ ├── overloads_definitions.py │ ├── overloads_definitions_stub.pyi │ ├── overloads_evaluation.py │ ├── protocols_class_objects.py │ ├── protocols_definition.py │ ├── protocols_explicit.py │ ├── protocols_generic.py │ ├── protocols_merging.py │ ├── protocols_modules.py │ ├── protocols_recursive.py │ ├── protocols_runtime_checkable.py │ ├── protocols_self.py │ ├── protocols_subtyping.py │ ├── protocols_variance.py │ ├── pyrefly.toml │ ├── qualifiers_annotated.py │ ├── qualifiers_final_annotation.py │ ├── qualifiers_final_decorator.py │ ├── results.json │ ├── specialtypes_any.py │ ├── specialtypes_never.py │ ├── specialtypes_none.py │ ├── specialtypes_promotions.py │ ├── specialtypes_type.py │ ├── tuples_type_compat.py │ ├── tuples_type_form.py │ ├── tuples_unpacked.py │ ├── typeddicts_alt_syntax.py │ ├── typeddicts_class_syntax.py │ ├── typeddicts_extra_items.py │ ├── typeddicts_final.py │ ├── typeddicts_inheritance.py │ ├── typeddicts_operations.py │ ├── typeddicts_readonly.py │ ├── typeddicts_readonly_consistency.py │ ├── typeddicts_readonly_inheritance.py │ ├── typeddicts_readonly_kwargs.py │ ├── typeddicts_readonly_update.py │ ├── typeddicts_required.py │ ├── typeddicts_type_consistency.py │ └── typeddicts_usage.py └── update_conformance_sources.sh ├── crates ├── pyrefly_build │ ├── Cargo.toml │ └── src │ │ ├── handle.rs │ │ ├── lib.rs │ │ ├── query │ │ ├── buck.rs │ │ ├── custom.rs │ │ └── mod.rs │ │ └── source_db │ │ ├── buck_check.rs │ │ ├── map_db.rs │ │ ├── mod.rs │ │ └── query_source_db.rs ├── pyrefly_bundled │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── src │ │ └── lib.rs │ ├── third_party │ │ ├── stubs │ │ │ ├── boto3-stubs │ │ │ │ ├── __init__.pyi │ │ │ │ ├── compat.pyi │ │ │ │ ├── crt.pyi │ │ │ │ ├── docs │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── action.pyi │ │ │ │ │ ├── attr.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── collection.pyi │ │ │ │ │ ├── docstring.pyi │ │ │ │ │ ├── method.pyi │ │ │ │ │ ├── resource.pyi │ │ │ │ │ ├── service.pyi │ │ │ │ │ ├── subresource.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── waiter.pyi │ │ │ │ ├── dynamodb │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── conditions.pyi │ │ │ │ │ ├── table.pyi │ │ │ │ │ ├── transform.pyi │ │ │ │ │ └── types.pyi │ │ │ │ ├── ec2 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── createtags.pyi │ │ │ │ │ └── deletetags.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── py.typed │ │ │ │ ├── resources │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── action.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── collection.pyi │ │ │ │ │ ├── factory.pyi │ │ │ │ │ ├── model.pyi │ │ │ │ │ ├── params.pyi │ │ │ │ │ └── response.pyi │ │ │ │ ├── s3 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── inject.pyi │ │ │ │ │ └── transfer.pyi │ │ │ │ ├── session.pyi │ │ │ │ └── utils.pyi │ │ │ ├── botocore-stubs │ │ │ │ ├── __init__.pyi │ │ │ │ ├── args.pyi │ │ │ │ ├── auth.pyi │ │ │ │ ├── awsrequest.pyi │ │ │ │ ├── client.pyi │ │ │ │ ├── compat.pyi │ │ │ │ ├── compress.pyi │ │ │ │ ├── config.pyi │ │ │ │ ├── configloader.pyi │ │ │ │ ├── configprovider.pyi │ │ │ │ ├── context.pyi │ │ │ │ ├── credentials.pyi │ │ │ │ ├── crt │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── auth.pyi │ │ │ │ ├── discovery.pyi │ │ │ │ ├── docs │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── bcdoc │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── docstringparser.pyi │ │ │ │ │ │ ├── restdoc.pyi │ │ │ │ │ │ └── style.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── docstring.pyi │ │ │ │ │ ├── example.pyi │ │ │ │ │ ├── method.pyi │ │ │ │ │ ├── paginator.pyi │ │ │ │ │ ├── params.pyi │ │ │ │ │ ├── service.pyi │ │ │ │ │ ├── shape.pyi │ │ │ │ │ ├── sharedexample.pyi │ │ │ │ │ ├── translator.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── waiter.pyi │ │ │ │ ├── endpoint.pyi │ │ │ │ ├── endpoint_provider.pyi │ │ │ │ ├── errorfactory.pyi │ │ │ │ ├── eventstream.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── handlers.pyi │ │ │ │ ├── history.pyi │ │ │ │ ├── hooks.pyi │ │ │ │ ├── httpchecksum.pyi │ │ │ │ ├── httpsession.pyi │ │ │ │ ├── loaders.pyi │ │ │ │ ├── model.pyi │ │ │ │ ├── monitoring.pyi │ │ │ │ ├── paginate.pyi │ │ │ │ ├── parsers.pyi │ │ │ │ ├── plugin.pyi │ │ │ │ ├── py.typed │ │ │ │ ├── regions.pyi │ │ │ │ ├── response.pyi │ │ │ │ ├── retries │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adaptive.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── bucket.pyi │ │ │ │ │ ├── quota.pyi │ │ │ │ │ ├── special.pyi │ │ │ │ │ ├── standard.pyi │ │ │ │ │ └── throttling.pyi │ │ │ │ ├── retryhandler.pyi │ │ │ │ ├── serialize.pyi │ │ │ │ ├── session.pyi │ │ │ │ ├── signers.pyi │ │ │ │ ├── stub.pyi │ │ │ │ ├── tokens.pyi │ │ │ │ ├── translate.pyi │ │ │ │ ├── useragent.pyi │ │ │ │ ├── utils.pyi │ │ │ │ ├── validate.pyi │ │ │ │ └── waiter.pyi │ │ │ ├── conans-stubs │ │ │ │ ├── __init__.pyi │ │ │ │ ├── assets │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── templates │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── info_graph_dot.pyi │ │ │ │ │ │ ├── info_graph_html.pyi │ │ │ │ │ │ ├── new_v2_autotools.pyi │ │ │ │ │ │ ├── new_v2_bazel.pyi │ │ │ │ │ │ ├── new_v2_cmake.pyi │ │ │ │ │ │ ├── new_v2_meson.pyi │ │ │ │ │ │ ├── new_v2_msbuild.pyi │ │ │ │ │ │ └── search_table_html.pyi │ │ │ │ ├── build_info │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── build_info.pyi │ │ │ │ │ ├── command.pyi │ │ │ │ │ ├── conan_build_info.pyi │ │ │ │ │ └── model.pyi │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cli.pyi │ │ │ │ │ ├── command.pyi │ │ │ │ │ ├── exit_codes.pyi │ │ │ │ │ └── output.pyi │ │ │ │ ├── client │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── api │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── conan_api.pyi │ │ │ │ │ ├── build │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── autotools_environment.pyi │ │ │ │ │ │ ├── cmake.pyi │ │ │ │ │ │ ├── cmake_flags.pyi │ │ │ │ │ │ ├── compiler_flags.pyi │ │ │ │ │ │ ├── cppstd_flags.pyi │ │ │ │ │ │ ├── meson.pyi │ │ │ │ │ │ ├── msbuild.pyi │ │ │ │ │ │ └── visual_environment.pyi │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── cache.pyi │ │ │ │ │ │ ├── editable.pyi │ │ │ │ │ │ └── remote_registry.pyi │ │ │ │ │ ├── cmd │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── build.pyi │ │ │ │ │ │ ├── copy.pyi │ │ │ │ │ │ ├── create.pyi │ │ │ │ │ │ ├── download.pyi │ │ │ │ │ │ ├── export.pyi │ │ │ │ │ │ ├── export_pkg.pyi │ │ │ │ │ │ ├── frogarian.pyi │ │ │ │ │ │ ├── new.pyi │ │ │ │ │ │ ├── new_ci.pyi │ │ │ │ │ │ ├── profile.pyi │ │ │ │ │ │ ├── search.pyi │ │ │ │ │ │ ├── uploader.pyi │ │ │ │ │ │ └── user.pyi │ │ │ │ │ ├── command.pyi │ │ │ │ │ ├── conan_api.pyi │ │ │ │ │ ├── conan_command_output.pyi │ │ │ │ │ ├── conanfile │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── build.pyi │ │ │ │ │ │ ├── configure.pyi │ │ │ │ │ │ └── package.pyi │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── compiler_id.pyi │ │ │ │ │ │ ├── config_installer.pyi │ │ │ │ │ │ ├── detect.pyi │ │ │ │ │ │ └── required_version.pyi │ │ │ │ │ ├── downloaders │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── cached_file_downloader.pyi │ │ │ │ │ │ ├── download.pyi │ │ │ │ │ │ └── file_downloader.pyi │ │ │ │ │ ├── envvars │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── environment.pyi │ │ │ │ │ ├── file_copier.pyi │ │ │ │ │ ├── generators │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── b2.pyi │ │ │ │ │ │ ├── boostbuild.pyi │ │ │ │ │ │ ├── cmake.pyi │ │ │ │ │ │ ├── cmake_common.pyi │ │ │ │ │ │ ├── cmake_find_package.pyi │ │ │ │ │ │ ├── cmake_find_package_common.pyi │ │ │ │ │ │ ├── cmake_find_package_multi.pyi │ │ │ │ │ │ ├── cmake_multi.pyi │ │ │ │ │ │ ├── cmake_paths.pyi │ │ │ │ │ │ ├── compiler_args.pyi │ │ │ │ │ │ ├── deploy.pyi │ │ │ │ │ │ ├── gcc.pyi │ │ │ │ │ │ ├── json_generator.pyi │ │ │ │ │ │ ├── make.pyi │ │ │ │ │ │ ├── markdown.pyi │ │ │ │ │ │ ├── pkg_config.pyi │ │ │ │ │ │ ├── premake.pyi │ │ │ │ │ │ ├── qbs.pyi │ │ │ │ │ │ ├── qmake.pyi │ │ │ │ │ │ ├── scons.pyi │ │ │ │ │ │ ├── text.pyi │ │ │ │ │ │ ├── virtualbuildenv.pyi │ │ │ │ │ │ ├── virtualenv.pyi │ │ │ │ │ │ ├── virtualenv_python.pyi │ │ │ │ │ │ ├── virtualrunenv.pyi │ │ │ │ │ │ ├── visualstudio.pyi │ │ │ │ │ │ ├── visualstudio_multi.pyi │ │ │ │ │ │ ├── visualstudiolegacy.pyi │ │ │ │ │ │ ├── xcode.pyi │ │ │ │ │ │ └── ycm.pyi │ │ │ │ │ ├── graph │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── build_mode.pyi │ │ │ │ │ │ ├── compatibility.pyi │ │ │ │ │ │ ├── graph.pyi │ │ │ │ │ │ ├── graph_binaries.pyi │ │ │ │ │ │ ├── graph_builder.pyi │ │ │ │ │ │ ├── graph_manager.pyi │ │ │ │ │ │ ├── grapher.pyi │ │ │ │ │ │ ├── printer.pyi │ │ │ │ │ │ ├── proxy.pyi │ │ │ │ │ │ ├── python_requires.pyi │ │ │ │ │ │ └── range_resolver.pyi │ │ │ │ │ ├── hook_manager.pyi │ │ │ │ │ ├── importer.pyi │ │ │ │ │ ├── installer.pyi │ │ │ │ │ ├── loader.pyi │ │ │ │ │ ├── loader_txt.pyi │ │ │ │ │ ├── manager.pyi │ │ │ │ │ ├── manifest_manager.pyi │ │ │ │ │ ├── migrations.pyi │ │ │ │ │ ├── migrations_settings.pyi │ │ │ │ │ ├── output.pyi │ │ │ │ │ ├── packager.pyi │ │ │ │ │ ├── printer.pyi │ │ │ │ │ ├── profile_loader.pyi │ │ │ │ │ ├── recorder │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── action_recorder.pyi │ │ │ │ │ │ ├── search_recorder.pyi │ │ │ │ │ │ └── upload_recoder.pyi │ │ │ │ │ ├── remote_manager.pyi │ │ │ │ │ ├── remover.pyi │ │ │ │ │ ├── rest │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── auth_manager.pyi │ │ │ │ │ │ ├── cacert.pyi │ │ │ │ │ │ ├── client_routes.pyi │ │ │ │ │ │ ├── conan_requester.pyi │ │ │ │ │ │ ├── file_uploader.pyi │ │ │ │ │ │ ├── rest_client.pyi │ │ │ │ │ │ ├── rest_client_common.pyi │ │ │ │ │ │ ├── rest_client_v1.pyi │ │ │ │ │ │ └── rest_client_v2.pyi │ │ │ │ │ ├── run_environment.pyi │ │ │ │ │ ├── runner.pyi │ │ │ │ │ ├── settings_preprocessor.pyi │ │ │ │ │ ├── source.pyi │ │ │ │ │ ├── store │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── localdb.pyi │ │ │ │ │ ├── subsystems.pyi │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── android.pyi │ │ │ │ │ │ ├── apple.pyi │ │ │ │ │ │ ├── env.pyi │ │ │ │ │ │ ├── files.pyi │ │ │ │ │ │ ├── intel.pyi │ │ │ │ │ │ ├── net.pyi │ │ │ │ │ │ ├── oss.pyi │ │ │ │ │ │ ├── pkg_config.pyi │ │ │ │ │ │ ├── scm.pyi │ │ │ │ │ │ ├── settings.pyi │ │ │ │ │ │ ├── system_pm.pyi │ │ │ │ │ │ ├── version.pyi │ │ │ │ │ │ └── win.pyi │ │ │ │ │ └── userio.pyi │ │ │ │ ├── conan.pyi │ │ │ │ ├── conan_server.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── migrations.pyi │ │ │ │ ├── model │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── build_info.pyi │ │ │ │ │ ├── conan_file.pyi │ │ │ │ │ ├── conan_generator.pyi │ │ │ │ │ ├── conanfile_interface.pyi │ │ │ │ │ ├── conf.pyi │ │ │ │ │ ├── dependencies.pyi │ │ │ │ │ ├── editable_layout.pyi │ │ │ │ │ ├── env_info.pyi │ │ │ │ │ ├── graph_info.pyi │ │ │ │ │ ├── graph_lock.pyi │ │ │ │ │ ├── info.pyi │ │ │ │ │ ├── layout.pyi │ │ │ │ │ ├── lock_bundle.pyi │ │ │ │ │ ├── manifest.pyi │ │ │ │ │ ├── new_build_info.pyi │ │ │ │ │ ├── options.pyi │ │ │ │ │ ├── package_metadata.pyi │ │ │ │ │ ├── profile.pyi │ │ │ │ │ ├── ref.pyi │ │ │ │ │ ├── requires.pyi │ │ │ │ │ ├── rest_routes.pyi │ │ │ │ │ ├── scm.pyi │ │ │ │ │ ├── settings.pyi │ │ │ │ │ ├── user_info.pyi │ │ │ │ │ ├── values.pyi │ │ │ │ │ ├── version.pyi │ │ │ │ │ └── workspace.pyi │ │ │ │ ├── paths │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── package_layouts │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── package_cache_layout.pyi │ │ │ │ │ │ └── package_editable_layout.pyi │ │ │ │ ├── pylint_plugin.pyi │ │ │ │ ├── search │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── binary_html_table.pyi │ │ │ │ │ ├── query_parse.pyi │ │ │ │ │ └── search.pyi │ │ │ │ ├── server │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── default_server_conf.pyi │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── jwt │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── jwt_credentials_manager.pyi │ │ │ │ │ │ │ ├── jwt_manager.pyi │ │ │ │ │ │ │ └── jwt_updown_manager.pyi │ │ │ │ │ ├── launcher.pyi │ │ │ │ │ ├── migrate.pyi │ │ │ │ │ ├── migrations.pyi │ │ │ │ │ ├── plugin_loader.pyi │ │ │ │ │ ├── rest │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── api_v1.pyi │ │ │ │ │ │ ├── api_v2.pyi │ │ │ │ │ │ ├── bottle_plugins │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── authorization_header.pyi │ │ │ │ │ │ │ ├── http_basic_authentication.pyi │ │ │ │ │ │ │ ├── jwt_authentication.pyi │ │ │ │ │ │ │ └── return_handler.pyi │ │ │ │ │ │ ├── bottle_routes.pyi │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── ping.pyi │ │ │ │ │ │ │ │ └── users.pyi │ │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── conan.pyi │ │ │ │ │ │ │ │ ├── delete.pyi │ │ │ │ │ │ │ │ ├── file_upload_download.pyi │ │ │ │ │ │ │ │ └── search.pyi │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── conan.pyi │ │ │ │ │ │ │ │ ├── delete.pyi │ │ │ │ │ │ │ │ ├── revisions.pyi │ │ │ │ │ │ │ │ └── search.pyi │ │ │ │ │ │ └── server.pyi │ │ │ │ │ ├── revision_list.pyi │ │ │ │ │ ├── server_launcher.pyi │ │ │ │ │ ├── service │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── authorize.pyi │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── common.pyi │ │ │ │ │ │ │ └── search.pyi │ │ │ │ │ │ ├── mime.pyi │ │ │ │ │ │ ├── user_service.pyi │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── service.pyi │ │ │ │ │ │ │ └── upload_download_service.pyi │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── service_v2.pyi │ │ │ │ │ └── store │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── disk_adapter.pyi │ │ │ │ │ │ ├── server_store.pyi │ │ │ │ │ │ └── url_manager.pyi │ │ │ │ ├── tools.pyi │ │ │ │ └── util │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── conan_v2_mode.pyi │ │ │ │ │ ├── config_parser.pyi │ │ │ │ │ ├── dates.pyi │ │ │ │ │ ├── encrypt.pyi │ │ │ │ │ ├── env_reader.pyi │ │ │ │ │ ├── fallbacks.pyi │ │ │ │ │ ├── files.pyi │ │ │ │ │ ├── locks.pyi │ │ │ │ │ ├── log.pyi │ │ │ │ │ ├── misc.pyi │ │ │ │ │ ├── progress_bar.pyi │ │ │ │ │ ├── runners.pyi │ │ │ │ │ ├── sha.pyi │ │ │ │ │ ├── templates.pyi │ │ │ │ │ ├── tracer.pyi │ │ │ │ │ └── windows.pyi │ │ │ ├── matplotlib-stubs │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _afm.pyi │ │ │ │ ├── _api.pyi │ │ │ │ ├── _api │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── deprecation.pyi │ │ │ │ ├── _c_internal_utils.pyi │ │ │ │ ├── _cm.pyi │ │ │ │ ├── _color_data.pyi │ │ │ │ ├── _constrained_layout.pyi │ │ │ │ ├── _docstring.pyi │ │ │ │ ├── _enums.pyi │ │ │ │ ├── _fontconfig_pattern.pyi │ │ │ │ ├── _layoutgrid.pyi │ │ │ │ ├── _mathtext.pyi │ │ │ │ ├── _mathtext_data.pyi │ │ │ │ ├── _preprocess_data.pyi │ │ │ │ ├── _pylab_helpers.pyi │ │ │ │ ├── _stubs_utils │ │ │ │ │ ├── _kwargs.pyi │ │ │ │ │ ├── _properties.pyi │ │ │ │ │ └── _typing.pyi │ │ │ │ ├── _text_helpers.pyi │ │ │ │ ├── _tight_bbox.pyi │ │ │ │ ├── _tight_layout.pyi │ │ │ │ ├── _version.pyi │ │ │ │ ├── afm.pyi │ │ │ │ ├── animation.pyi │ │ │ │ ├── artist.pyi │ │ │ │ ├── axes │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _axes.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _secondary_axes.pyi │ │ │ │ │ └── _subplots.pyi │ │ │ │ ├── axis.pyi │ │ │ │ ├── backend_bases.pyi │ │ │ │ ├── backend_managers.pyi │ │ │ │ ├── backend_tools.pyi │ │ │ │ ├── backends │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _backend_gtk.pyi │ │ │ │ │ ├── _backend_pdf_ps.pyi │ │ │ │ │ ├── _backend_tk.pyi │ │ │ │ │ ├── backend_agg.pyi │ │ │ │ │ ├── backend_cairo.pyi │ │ │ │ │ ├── backend_gtk3.pyi │ │ │ │ │ ├── backend_gtk3agg.pyi │ │ │ │ │ ├── backend_mixed.pyi │ │ │ │ │ ├── backend_pdf.pyi │ │ │ │ │ ├── backend_pgf.pyi │ │ │ │ │ ├── backend_ps.pyi │ │ │ │ │ ├── backend_qt.pyi │ │ │ │ │ ├── backend_qtagg.pyi │ │ │ │ │ ├── backend_svg.pyi │ │ │ │ │ ├── backend_tkagg.pyi │ │ │ │ │ └── qt_compat.pyi │ │ │ │ ├── bezier.pyi │ │ │ │ ├── blocking_input.pyi │ │ │ │ ├── category.pyi │ │ │ │ ├── cbook │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── cm.pyi │ │ │ │ ├── collections.pyi │ │ │ │ ├── colorbar.pyi │ │ │ │ ├── colorizer.pyi │ │ │ │ ├── colors.pyi │ │ │ │ ├── container.pyi │ │ │ │ ├── contour.pyi │ │ │ │ ├── dates.pyi │ │ │ │ ├── docstring.pyi │ │ │ │ ├── dviread.pyi │ │ │ │ ├── figure.pyi │ │ │ │ ├── font_manager.pyi │ │ │ │ ├── fontconfig_pattern.pyi │ │ │ │ ├── ft2font.pyi │ │ │ │ ├── gridspec.pyi │ │ │ │ ├── hatch.pyi │ │ │ │ ├── image.pyi │ │ │ │ ├── layout_engine.pyi │ │ │ │ ├── legend.pyi │ │ │ │ ├── legend_handler.pyi │ │ │ │ ├── lines.pyi │ │ │ │ ├── markers.pyi │ │ │ │ ├── mathtext.pyi │ │ │ │ ├── mlab.pyi │ │ │ │ ├── offsetbox.pyi │ │ │ │ ├── patches.pyi │ │ │ │ ├── path.pyi │ │ │ │ ├── patheffects.pyi │ │ │ │ ├── projections │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── geo.pyi │ │ │ │ │ ├── plot_directive.pyi │ │ │ │ │ └── polar.pyi │ │ │ │ ├── py.typed │ │ │ │ ├── pyplot.pyi │ │ │ │ ├── quiver.pyi │ │ │ │ ├── rcsetup.pyi │ │ │ │ ├── sankey.pyi │ │ │ │ ├── scale.pyi │ │ │ │ ├── spines.pyi │ │ │ │ ├── stackplot.pyi │ │ │ │ ├── streamplot.pyi │ │ │ │ ├── streamploy.pyi │ │ │ │ ├── style │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── core.pyi │ │ │ │ ├── table.pyi │ │ │ │ ├── testing │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── texmanager.pyi │ │ │ │ ├── text.pyi │ │ │ │ ├── textmanager.pyi │ │ │ │ ├── textpath.pyi │ │ │ │ ├── ticker.pyi │ │ │ │ ├── tight_layout.pyi │ │ │ │ ├── transforms.pyi │ │ │ │ ├── tri │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── triangulation.pyi │ │ │ │ │ ├── tricontour.pyi │ │ │ │ │ ├── trifinder.pyi │ │ │ │ │ ├── triinterpolate.pyi │ │ │ │ │ ├── tripcolor.pyi │ │ │ │ │ ├── triplot.pyi │ │ │ │ │ ├── trirefine.pyi │ │ │ │ │ └── tritools.pyi │ │ │ │ ├── type1font.pyi │ │ │ │ ├── typing.pyi │ │ │ │ ├── units.pyi │ │ │ │ └── widgets.pyi │ │ │ ├── pandas-stubs │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _config │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── config.pyi │ │ │ │ ├── _libs │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── indexing.pyi │ │ │ │ │ ├── interval.pyi │ │ │ │ │ ├── json.pyi │ │ │ │ │ ├── lib.pyi │ │ │ │ │ ├── missing.pyi │ │ │ │ │ ├── properties.pyi │ │ │ │ │ ├── sparse.pyi │ │ │ │ │ ├── tslibs │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── conversion.pyi │ │ │ │ │ │ ├── nattype.pyi │ │ │ │ │ │ ├── np_datetime.pyi │ │ │ │ │ │ ├── offsets.pyi │ │ │ │ │ │ ├── parsing.pyi │ │ │ │ │ │ ├── period.pyi │ │ │ │ │ │ ├── timedeltas.pyi │ │ │ │ │ │ └── timestamps.pyi │ │ │ │ │ └── window │ │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── _testing │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── _typing.pyi │ │ │ │ ├── _version.pyi │ │ │ │ ├── api │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── extensions │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── indexers │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── interchange │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── types │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── typing │ │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── arrays │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── core │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── accessor.pyi │ │ │ │ │ ├── algorithms.pyi │ │ │ │ │ ├── api.pyi │ │ │ │ │ ├── arraylike.pyi │ │ │ │ │ ├── arrays │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── arrow │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── dtype.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── boolean.pyi │ │ │ │ │ │ ├── categorical.pyi │ │ │ │ │ │ ├── datetimelike.pyi │ │ │ │ │ │ ├── datetimes.pyi │ │ │ │ │ │ ├── floating.pyi │ │ │ │ │ │ ├── integer.pyi │ │ │ │ │ │ ├── interval.pyi │ │ │ │ │ │ ├── masked.pyi │ │ │ │ │ │ ├── numeric.pyi │ │ │ │ │ │ ├── numpy_.pyi │ │ │ │ │ │ ├── period.pyi │ │ │ │ │ │ ├── sparse │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── accessor.pyi │ │ │ │ │ │ │ ├── array.pyi │ │ │ │ │ │ │ └── dtype.pyi │ │ │ │ │ │ ├── string_.pyi │ │ │ │ │ │ └── timedeltas.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── computation │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── api.pyi │ │ │ │ │ │ ├── engines.pyi │ │ │ │ │ │ ├── eval.pyi │ │ │ │ │ │ ├── expr.pyi │ │ │ │ │ │ ├── ops.pyi │ │ │ │ │ │ ├── pytables.pyi │ │ │ │ │ │ └── scope.pyi │ │ │ │ │ ├── config_init.pyi │ │ │ │ │ ├── construction.pyi │ │ │ │ │ ├── dtypes │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── api.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── cast.pyi │ │ │ │ │ │ ├── common.pyi │ │ │ │ │ │ ├── concat.pyi │ │ │ │ │ │ ├── dtypes.pyi │ │ │ │ │ │ ├── generic.pyi │ │ │ │ │ │ ├── inference.pyi │ │ │ │ │ │ └── missing.pyi │ │ │ │ │ ├── frame.pyi │ │ │ │ │ ├── generic.pyi │ │ │ │ │ ├── groupby │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── categorical.pyi │ │ │ │ │ │ ├── generic.pyi │ │ │ │ │ │ ├── groupby.pyi │ │ │ │ │ │ ├── grouper.pyi │ │ │ │ │ │ ├── indexing.pyi │ │ │ │ │ │ └── ops.pyi │ │ │ │ │ ├── indexers │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── objects.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── indexes │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── accessors.pyi │ │ │ │ │ │ ├── api.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── category.pyi │ │ │ │ │ │ ├── datetimelike.pyi │ │ │ │ │ │ ├── datetimes.pyi │ │ │ │ │ │ ├── extension.pyi │ │ │ │ │ │ ├── interval.pyi │ │ │ │ │ │ ├── multi.pyi │ │ │ │ │ │ ├── period.pyi │ │ │ │ │ │ ├── range.pyi │ │ │ │ │ │ └── timedeltas.pyi │ │ │ │ │ ├── indexing.pyi │ │ │ │ │ ├── interchange │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── from_dataframe.pyi │ │ │ │ │ ├── ops │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── docstrings.pyi │ │ │ │ │ ├── resample.pyi │ │ │ │ │ ├── reshape │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── api.pyi │ │ │ │ │ │ ├── concat.pyi │ │ │ │ │ │ ├── encoding.pyi │ │ │ │ │ │ ├── melt.pyi │ │ │ │ │ │ ├── merge.pyi │ │ │ │ │ │ ├── pivot.pyi │ │ │ │ │ │ └── tile.pyi │ │ │ │ │ ├── series.pyi │ │ │ │ │ ├── sparse │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── strings │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── accessor.pyi │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── datetimes.pyi │ │ │ │ │ │ ├── numeric.pyi │ │ │ │ │ │ └── timedeltas.pyi │ │ │ │ │ ├── util │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── hashing.pyi │ │ │ │ │ └── window │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── ewm.pyi │ │ │ │ │ │ ├── expanding.pyi │ │ │ │ │ │ └── rolling.pyi │ │ │ │ ├── errors │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── io │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── api.pyi │ │ │ │ │ ├── clipboard │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── clipboards.pyi │ │ │ │ │ ├── excel │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── _base.pyi │ │ │ │ │ ├── feather_format.pyi │ │ │ │ │ ├── formats │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── css.pyi │ │ │ │ │ │ ├── format.pyi │ │ │ │ │ │ ├── style.pyi │ │ │ │ │ │ └── style_render.pyi │ │ │ │ │ ├── html.pyi │ │ │ │ │ ├── json │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _json.pyi │ │ │ │ │ │ ├── _normalize.pyi │ │ │ │ │ │ └── _table_schema.pyi │ │ │ │ │ ├── orc.pyi │ │ │ │ │ ├── parquet.pyi │ │ │ │ │ ├── parsers.pyi │ │ │ │ │ ├── parsers │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── readers.pyi │ │ │ │ │ ├── pickle.pyi │ │ │ │ │ ├── pytables.pyi │ │ │ │ │ ├── sas │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── sas7bdat.pyi │ │ │ │ │ │ ├── sas_xport.pyi │ │ │ │ │ │ └── sasreader.pyi │ │ │ │ │ ├── spss.pyi │ │ │ │ │ ├── sql.pyi │ │ │ │ │ ├── stata.pyi │ │ │ │ │ └── xml.pyi │ │ │ │ ├── plotting │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _core.pyi │ │ │ │ │ └── _misc.pyi │ │ │ │ ├── py.typed │ │ │ │ ├── testing.pyi │ │ │ │ ├── tseries │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── api.pyi │ │ │ │ │ ├── frequencies.pyi │ │ │ │ │ ├── holiday.pyi │ │ │ │ │ └── offsets.pyi │ │ │ │ └── util │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _decorators.pyi │ │ │ │ │ ├── _print_versions.pyi │ │ │ │ │ └── version │ │ │ │ │ └── __init__.pyi │ │ │ ├── scipy-stubs │ │ │ │ ├── __config__.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _cyutility.pyi │ │ │ │ ├── _distributor_init.pyi │ │ │ │ ├── _lib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _array_api.pyi │ │ │ │ │ ├── _array_api_compat_vendor.pyi │ │ │ │ │ ├── _bunch.pyi │ │ │ │ │ ├── _ccallback.pyi │ │ │ │ │ ├── _ccallback_c.pyi │ │ │ │ │ ├── _disjoint_set.pyi │ │ │ │ │ ├── _docscrape.pyi │ │ │ │ │ ├── _elementwise_iterative_method.pyi │ │ │ │ │ ├── _gcutils.pyi │ │ │ │ │ ├── _pep440.pyi │ │ │ │ │ ├── _sparse.pyi │ │ │ │ │ ├── _testutils.pyi │ │ │ │ │ ├── _threadsafety.pyi │ │ │ │ │ ├── _tmpdirs.pyi │ │ │ │ │ ├── _uarray │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── _backend.pyi │ │ │ │ │ ├── _util.pyi │ │ │ │ │ ├── decorator.pyi │ │ │ │ │ ├── deprecation.pyi │ │ │ │ │ ├── doccer.pyi │ │ │ │ │ ├── messagestream.pyi │ │ │ │ │ └── uarray.pyi │ │ │ │ ├── _typing.pyi │ │ │ │ ├── cluster │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _hierarchy.pyi │ │ │ │ │ ├── _optimal_leaf_ordering.pyi │ │ │ │ │ ├── _vq.pyi │ │ │ │ │ ├── hierarchy.pyi │ │ │ │ │ └── vq.pyi │ │ │ │ ├── constants │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _codata.pyi │ │ │ │ │ ├── _constants.pyi │ │ │ │ │ ├── codata.pyi │ │ │ │ │ └── constants.pyi │ │ │ │ ├── datasets │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _download_all.pyi │ │ │ │ │ ├── _fetchers.pyi │ │ │ │ │ ├── _registry.pyi │ │ │ │ │ ├── _typing.pyi │ │ │ │ │ └── _utils.pyi │ │ │ │ ├── differentiate │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── _differentiate.pyi │ │ │ │ ├── fft │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _backend.pyi │ │ │ │ │ ├── _basic.pyi │ │ │ │ │ ├── _basic_backend.pyi │ │ │ │ │ ├── _debug_backends.pyi │ │ │ │ │ ├── _fftlog.pyi │ │ │ │ │ ├── _fftlog_backend.pyi │ │ │ │ │ ├── _helper.pyi │ │ │ │ │ ├── _realtransforms.pyi │ │ │ │ │ ├── _realtransforms_backend.pyi │ │ │ │ │ └── _typing.pyi │ │ │ │ ├── fftpack │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _basic.pyi │ │ │ │ │ ├── _helper.pyi │ │ │ │ │ ├── _pseudo_diffs.pyi │ │ │ │ │ ├── _realtransforms.pyi │ │ │ │ │ ├── basic.pyi │ │ │ │ │ ├── convolve.pyi │ │ │ │ │ ├── helper.pyi │ │ │ │ │ ├── pseudo_diffs.pyi │ │ │ │ │ └── realtransforms.pyi │ │ │ │ ├── integrate │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _bvp.pyi │ │ │ │ │ ├── _cubature.pyi │ │ │ │ │ ├── _dop.pyi │ │ │ │ │ ├── _ivp │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── bdf.pyi │ │ │ │ │ │ ├── common.pyi │ │ │ │ │ │ ├── dop853_coefficients.pyi │ │ │ │ │ │ ├── ivp.pyi │ │ │ │ │ │ ├── lsoda.pyi │ │ │ │ │ │ ├── radau.pyi │ │ │ │ │ │ └── rk.pyi │ │ │ │ │ ├── _lebedev.pyi │ │ │ │ │ ├── _lsoda.pyi │ │ │ │ │ ├── _ode.pyi │ │ │ │ │ ├── _odepack.pyi │ │ │ │ │ ├── _odepack_py.pyi │ │ │ │ │ ├── _quad_vec.pyi │ │ │ │ │ ├── _quadpack.pyi │ │ │ │ │ ├── _quadpack_py.pyi │ │ │ │ │ ├── _quadrature.pyi │ │ │ │ │ ├── _rules │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _base.pyi │ │ │ │ │ │ ├── _gauss_kronrod.pyi │ │ │ │ │ │ ├── _gauss_legendre.pyi │ │ │ │ │ │ └── _genz_malik.pyi │ │ │ │ │ ├── _tanhsinh.pyi │ │ │ │ │ ├── _typing.pyi │ │ │ │ │ ├── _vode.pyi │ │ │ │ │ ├── dop.pyi │ │ │ │ │ ├── lsoda.pyi │ │ │ │ │ ├── odepack.pyi │ │ │ │ │ ├── quadpack.pyi │ │ │ │ │ └── vode.pyi │ │ │ │ ├── interpolate │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _bary_rational.pyi │ │ │ │ │ ├── _bsplines.pyi │ │ │ │ │ ├── _cubic.pyi │ │ │ │ │ ├── _dfitpack.pyi │ │ │ │ │ ├── _dierckx.pyi │ │ │ │ │ ├── _fitpack.pyi │ │ │ │ │ ├── _fitpack2.pyi │ │ │ │ │ ├── _fitpack_impl.pyi │ │ │ │ │ ├── _fitpack_py.pyi │ │ │ │ │ ├── _fitpack_repro.pyi │ │ │ │ │ ├── _interpnd.pyi │ │ │ │ │ ├── _interpolate.pyi │ │ │ │ │ ├── _ndbspline.pyi │ │ │ │ │ ├── _ndgriddata.pyi │ │ │ │ │ ├── _pade.pyi │ │ │ │ │ ├── _polyint.pyi │ │ │ │ │ ├── _ppoly.pyi │ │ │ │ │ ├── _rbf.pyi │ │ │ │ │ ├── _rbfinterp.pyi │ │ │ │ │ ├── _rbfinterp_pythran.pyi │ │ │ │ │ ├── _rgi.pyi │ │ │ │ │ ├── _rgi_cython.pyi │ │ │ │ │ ├── dfitpack.pyi │ │ │ │ │ ├── fitpack.pyi │ │ │ │ │ ├── fitpack2.pyi │ │ │ │ │ ├── interpnd.pyi │ │ │ │ │ ├── interpolate.pyi │ │ │ │ │ ├── ndgriddata.pyi │ │ │ │ │ ├── polyint.pyi │ │ │ │ │ └── rbf.pyi │ │ │ │ ├── io │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _fast_matrix_market │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── _fortran.pyi │ │ │ │ │ ├── _harwell_boeing │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _fortran_format_parser.pyi │ │ │ │ │ │ └── hb.pyi │ │ │ │ │ ├── _idl.pyi │ │ │ │ │ ├── _mmio.pyi │ │ │ │ │ ├── _netcdf.pyi │ │ │ │ │ ├── _typing.pyi │ │ │ │ │ ├── arff │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _arffread.pyi │ │ │ │ │ │ └── arffread.pyi │ │ │ │ │ ├── harwell_boeing.pyi │ │ │ │ │ ├── idl.pyi │ │ │ │ │ ├── matlab │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _byteordercodes.pyi │ │ │ │ │ │ ├── _mio.pyi │ │ │ │ │ │ ├── _mio4.pyi │ │ │ │ │ │ ├── _mio5.pyi │ │ │ │ │ │ ├── _mio5_params.pyi │ │ │ │ │ │ ├── _mio5_utils.pyi │ │ │ │ │ │ ├── _mio_utils.pyi │ │ │ │ │ │ ├── _miobase.pyi │ │ │ │ │ │ ├── _streams.pyi │ │ │ │ │ │ ├── byteordercodes.pyi │ │ │ │ │ │ ├── mio.pyi │ │ │ │ │ │ ├── mio4.pyi │ │ │ │ │ │ ├── mio5.pyi │ │ │ │ │ │ ├── mio5_params.pyi │ │ │ │ │ │ ├── mio5_utils.pyi │ │ │ │ │ │ ├── mio_utils.pyi │ │ │ │ │ │ ├── miobase.pyi │ │ │ │ │ │ └── streams.pyi │ │ │ │ │ ├── mmio.pyi │ │ │ │ │ ├── netcdf.pyi │ │ │ │ │ └── wavfile.pyi │ │ │ │ ├── linalg │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _basic.pyi │ │ │ │ │ ├── _cythonized_array_utils.pyi │ │ │ │ │ ├── _decomp.pyi │ │ │ │ │ ├── _decomp_cholesky.pyi │ │ │ │ │ ├── _decomp_cossin.pyi │ │ │ │ │ ├── _decomp_interpolative.pyi │ │ │ │ │ ├── _decomp_ldl.pyi │ │ │ │ │ ├── _decomp_lu.pyi │ │ │ │ │ ├── _decomp_lu_cython.pyi │ │ │ │ │ ├── _decomp_polar.pyi │ │ │ │ │ ├── _decomp_qr.pyi │ │ │ │ │ ├── _decomp_qz.pyi │ │ │ │ │ ├── _decomp_schur.pyi │ │ │ │ │ ├── _decomp_svd.pyi │ │ │ │ │ ├── _decomp_update.pyi │ │ │ │ │ ├── _expm_frechet.pyi │ │ │ │ │ ├── _fblas.pyi │ │ │ │ │ ├── _flapack.pyi │ │ │ │ │ ├── _linalg_pythran.pyi │ │ │ │ │ ├── _matfuncs.pyi │ │ │ │ │ ├── _matfuncs_expm.pyi │ │ │ │ │ ├── _matfuncs_inv_ssq.pyi │ │ │ │ │ ├── _matfuncs_schur_sqrtm.pyi │ │ │ │ │ ├── _matfuncs_sqrtm.pyi │ │ │ │ │ ├── _matfuncs_sqrtm_triu.pyi │ │ │ │ │ ├── _misc.pyi │ │ │ │ │ ├── _procrustes.pyi │ │ │ │ │ ├── _sketches.pyi │ │ │ │ │ ├── _solve_toeplitz.pyi │ │ │ │ │ ├── _solvers.pyi │ │ │ │ │ ├── _special_matrices.pyi │ │ │ │ │ ├── _testutils.pyi │ │ │ │ │ ├── basic.pyi │ │ │ │ │ ├── blas.pyi │ │ │ │ │ ├── cython_blas.pyi │ │ │ │ │ ├── cython_lapack.pyi │ │ │ │ │ ├── decomp.pyi │ │ │ │ │ ├── decomp_cholesky.pyi │ │ │ │ │ ├── decomp_lu.pyi │ │ │ │ │ ├── decomp_qr.pyi │ │ │ │ │ ├── decomp_schur.pyi │ │ │ │ │ ├── decomp_svd.pyi │ │ │ │ │ ├── interpolative.pyi │ │ │ │ │ ├── lapack.pyi │ │ │ │ │ ├── matfuncs.pyi │ │ │ │ │ ├── misc.pyi │ │ │ │ │ └── special_matrices.pyi │ │ │ │ ├── misc │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ └── doccer.pyi │ │ │ │ ├── ndimage │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _filters.pyi │ │ │ │ │ ├── _fourier.pyi │ │ │ │ │ ├── _interpolation.pyi │ │ │ │ │ ├── _measurements.pyi │ │ │ │ │ ├── _morphology.pyi │ │ │ │ │ ├── _nd_image.pyi │ │ │ │ │ ├── _ni_docstrings.pyi │ │ │ │ │ ├── _ni_label.pyi │ │ │ │ │ ├── _ni_support.pyi │ │ │ │ │ ├── _rank_filter_1d.pyi │ │ │ │ │ ├── filters.pyi │ │ │ │ │ ├── fourier.pyi │ │ │ │ │ ├── interpolation.pyi │ │ │ │ │ ├── measurements.pyi │ │ │ │ │ └── morphology.pyi │ │ │ │ ├── odr │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _add_newdocs.pyi │ │ │ │ │ ├── _models.pyi │ │ │ │ │ ├── _odrpack.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ └── odrpack.pyi │ │ │ │ ├── optimize │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _basinhopping.pyi │ │ │ │ │ ├── _bglu_dense.pyi │ │ │ │ │ ├── _bracket.pyi │ │ │ │ │ ├── _chandrupatla.pyi │ │ │ │ │ ├── _cobyla_py.pyi │ │ │ │ │ ├── _cobyqa_py.pyi │ │ │ │ │ ├── _constraints.pyi │ │ │ │ │ ├── _dcsrch.pyi │ │ │ │ │ ├── _differentiable_functions.pyi │ │ │ │ │ ├── _differentialevolution.pyi │ │ │ │ │ ├── _direct.pyi │ │ │ │ │ ├── _direct_py.pyi │ │ │ │ │ ├── _dual_annealing.pyi │ │ │ │ │ ├── _elementwise.pyi │ │ │ │ │ ├── _group_columns.pyi │ │ │ │ │ ├── _hessian_update_strategy.pyi │ │ │ │ │ ├── _isotonic.pyi │ │ │ │ │ ├── _lbfgsb.pyi │ │ │ │ │ ├── _lbfgsb_py.pyi │ │ │ │ │ ├── _linesearch.pyi │ │ │ │ │ ├── _linprog.pyi │ │ │ │ │ ├── _linprog_doc.pyi │ │ │ │ │ ├── _linprog_highs.pyi │ │ │ │ │ ├── _linprog_ip.pyi │ │ │ │ │ ├── _linprog_rs.pyi │ │ │ │ │ ├── _linprog_simplex.pyi │ │ │ │ │ ├── _linprog_util.pyi │ │ │ │ │ ├── _lsap.pyi │ │ │ │ │ ├── _lsq │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── bvls.pyi │ │ │ │ │ │ ├── common.pyi │ │ │ │ │ │ ├── dogbox.pyi │ │ │ │ │ │ ├── givens_elimination.pyi │ │ │ │ │ │ ├── least_squares.pyi │ │ │ │ │ │ ├── lsq_linear.pyi │ │ │ │ │ │ ├── trf.pyi │ │ │ │ │ │ └── trf_linear.pyi │ │ │ │ │ ├── _milp.pyi │ │ │ │ │ ├── _minimize.pyi │ │ │ │ │ ├── _minpack.pyi │ │ │ │ │ ├── _minpack_py.pyi │ │ │ │ │ ├── _moduleTNC.pyi │ │ │ │ │ ├── _nnls.pyi │ │ │ │ │ ├── _nonlin.pyi │ │ │ │ │ ├── _numdiff.pyi │ │ │ │ │ ├── _optimize.pyi │ │ │ │ │ ├── _pava_pybind.pyi │ │ │ │ │ ├── _qap.pyi │ │ │ │ │ ├── _remove_redundancy.pyi │ │ │ │ │ ├── _root.pyi │ │ │ │ │ ├── _root_scalar.pyi │ │ │ │ │ ├── _shgo.pyi │ │ │ │ │ ├── _shgo_lib │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _complex.pyi │ │ │ │ │ │ └── _vertex.pyi │ │ │ │ │ ├── _slsqp_py.pyi │ │ │ │ │ ├── _slsqplib.pyi │ │ │ │ │ ├── _spectral.pyi │ │ │ │ │ ├── _tnc.pyi │ │ │ │ │ ├── _trlib │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── _trlib.pyi │ │ │ │ │ ├── _trustregion.pyi │ │ │ │ │ ├── _trustregion_constr │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── canonical_constraint.pyi │ │ │ │ │ │ ├── equality_constrained_sqp.pyi │ │ │ │ │ │ ├── minimize_trustregion_constr.pyi │ │ │ │ │ │ ├── projections.pyi │ │ │ │ │ │ ├── qp_subproblem.pyi │ │ │ │ │ │ ├── report.pyi │ │ │ │ │ │ └── tr_interior_point.pyi │ │ │ │ │ ├── _trustregion_dogleg.pyi │ │ │ │ │ ├── _trustregion_exact.pyi │ │ │ │ │ ├── _trustregion_krylov.pyi │ │ │ │ │ ├── _trustregion_ncg.pyi │ │ │ │ │ ├── _typing.pyi │ │ │ │ │ ├── _zeros.pyi │ │ │ │ │ ├── _zeros_py.pyi │ │ │ │ │ ├── cobyla.pyi │ │ │ │ │ ├── cython_optimize │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── elementwise.pyi │ │ │ │ │ ├── lbfgsb.pyi │ │ │ │ │ ├── linesearch.pyi │ │ │ │ │ ├── minpack.pyi │ │ │ │ │ ├── minpack2.pyi │ │ │ │ │ ├── moduleTNC.pyi │ │ │ │ │ ├── nonlin.pyi │ │ │ │ │ ├── optimize.pyi │ │ │ │ │ ├── slsqp.pyi │ │ │ │ │ ├── tnc.pyi │ │ │ │ │ └── zeros.pyi │ │ │ │ ├── signal │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _arraytools.pyi │ │ │ │ │ ├── _czt.pyi │ │ │ │ │ ├── _filter_design.pyi │ │ │ │ │ ├── _fir_filter_design.pyi │ │ │ │ │ ├── _lti_conversion.pyi │ │ │ │ │ ├── _ltisys.pyi │ │ │ │ │ ├── _max_len_seq.pyi │ │ │ │ │ ├── _max_len_seq_inner.pyi │ │ │ │ │ ├── _peak_finding.pyi │ │ │ │ │ ├── _peak_finding_utils.pyi │ │ │ │ │ ├── _polyutils.pyi │ │ │ │ │ ├── _savitzky_golay.pyi │ │ │ │ │ ├── _short_time_fft.pyi │ │ │ │ │ ├── _signaltools.pyi │ │ │ │ │ ├── _sigtools.pyi │ │ │ │ │ ├── _sosfilt.pyi │ │ │ │ │ ├── _spectral_py.pyi │ │ │ │ │ ├── _spline.pyi │ │ │ │ │ ├── _spline_filters.pyi │ │ │ │ │ ├── _upfirdn.pyi │ │ │ │ │ ├── _upfirdn_apply.pyi │ │ │ │ │ ├── _waveforms.pyi │ │ │ │ │ ├── _wavelets.pyi │ │ │ │ │ ├── bsplines.pyi │ │ │ │ │ ├── filter_design.pyi │ │ │ │ │ ├── fir_filter_design.pyi │ │ │ │ │ ├── lti_conversion.pyi │ │ │ │ │ ├── ltisys.pyi │ │ │ │ │ ├── signaltools.pyi │ │ │ │ │ ├── spectral.pyi │ │ │ │ │ ├── spline.pyi │ │ │ │ │ ├── waveforms.pyi │ │ │ │ │ ├── wavelets.pyi │ │ │ │ │ └── windows │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _windows.pyi │ │ │ │ │ │ └── windows.pyi │ │ │ │ ├── sparse │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _bsr.pyi │ │ │ │ │ ├── _compressed.pyi │ │ │ │ │ ├── _construct.pyi │ │ │ │ │ ├── _coo.pyi │ │ │ │ │ ├── _csc.pyi │ │ │ │ │ ├── _csparsetools.pyi │ │ │ │ │ ├── _csr.pyi │ │ │ │ │ ├── _data.pyi │ │ │ │ │ ├── _dia.pyi │ │ │ │ │ ├── _dok.pyi │ │ │ │ │ ├── _extract.pyi │ │ │ │ │ ├── _index.pyi │ │ │ │ │ ├── _lil.pyi │ │ │ │ │ ├── _matrix.pyi │ │ │ │ │ ├── _matrix_io.pyi │ │ │ │ │ ├── _sparsetools.pyi │ │ │ │ │ ├── _spfuncs.pyi │ │ │ │ │ ├── _sputils.pyi │ │ │ │ │ ├── _typing.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── bsr.pyi │ │ │ │ │ ├── compressed.pyi │ │ │ │ │ ├── construct.pyi │ │ │ │ │ ├── coo.pyi │ │ │ │ │ ├── csc.pyi │ │ │ │ │ ├── csgraph │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _flow.pyi │ │ │ │ │ │ ├── _laplacian.pyi │ │ │ │ │ │ ├── _matching.pyi │ │ │ │ │ │ ├── _min_spanning_tree.pyi │ │ │ │ │ │ ├── _reordering.pyi │ │ │ │ │ │ ├── _shortest_path.pyi │ │ │ │ │ │ ├── _tools.pyi │ │ │ │ │ │ ├── _traversal.pyi │ │ │ │ │ │ └── _validation.pyi │ │ │ │ │ ├── csr.pyi │ │ │ │ │ ├── data.pyi │ │ │ │ │ ├── dia.pyi │ │ │ │ │ ├── dok.pyi │ │ │ │ │ ├── extract.pyi │ │ │ │ │ ├── lil.pyi │ │ │ │ │ ├── linalg │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _dsolve │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── _add_newdocs.pyi │ │ │ │ │ │ │ ├── _superlu.pyi │ │ │ │ │ │ │ └── linsolve.pyi │ │ │ │ │ │ ├── _eigen │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── _svds.pyi │ │ │ │ │ │ │ ├── arpack │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ └── arpack.pyi │ │ │ │ │ │ │ └── lobpcg │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ └── lobpcg.pyi │ │ │ │ │ │ ├── _expm_multiply.pyi │ │ │ │ │ │ ├── _interface.pyi │ │ │ │ │ │ ├── _isolve │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── _gcrotmk.pyi │ │ │ │ │ │ │ ├── iterative.pyi │ │ │ │ │ │ │ ├── lgmres.pyi │ │ │ │ │ │ │ ├── lsmr.pyi │ │ │ │ │ │ │ ├── lsqr.pyi │ │ │ │ │ │ │ ├── minres.pyi │ │ │ │ │ │ │ ├── tfqmr.pyi │ │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ │ ├── _matfuncs.pyi │ │ │ │ │ │ ├── _norm.pyi │ │ │ │ │ │ ├── _onenormest.pyi │ │ │ │ │ │ ├── _special_sparse_arrays.pyi │ │ │ │ │ │ ├── _svdp.pyi │ │ │ │ │ │ ├── dsolve.pyi │ │ │ │ │ │ ├── eigen.pyi │ │ │ │ │ │ ├── interface.pyi │ │ │ │ │ │ ├── isolve.pyi │ │ │ │ │ │ └── matfuncs.pyi │ │ │ │ │ ├── sparsetools.pyi │ │ │ │ │ ├── spfuncs.pyi │ │ │ │ │ └── sputils.pyi │ │ │ │ ├── spatial │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _ckdtree.pyi │ │ │ │ │ ├── _distance_pybind.pyi │ │ │ │ │ ├── _distance_wrap.pyi │ │ │ │ │ ├── _geometric_slerp.pyi │ │ │ │ │ ├── _hausdorff.pyi │ │ │ │ │ ├── _kdtree.pyi │ │ │ │ │ ├── _plotutils.pyi │ │ │ │ │ ├── _procrustes.pyi │ │ │ │ │ ├── _qhull.pyi │ │ │ │ │ ├── _spherical_voronoi.pyi │ │ │ │ │ ├── _voronoi.pyi │ │ │ │ │ ├── ckdtree.pyi │ │ │ │ │ ├── distance.pyi │ │ │ │ │ ├── kdtree.pyi │ │ │ │ │ ├── qhull.pyi │ │ │ │ │ └── transform │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _rigid_transform.pyi │ │ │ │ │ │ ├── _rotation.pyi │ │ │ │ │ │ ├── _rotation_groups.pyi │ │ │ │ │ │ ├── _rotation_spline.pyi │ │ │ │ │ │ └── rotation.pyi │ │ │ │ ├── special │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _add_newdocs.pyi │ │ │ │ │ ├── _basic.pyi │ │ │ │ │ ├── _comb.pyi │ │ │ │ │ ├── _ellip_harm.pyi │ │ │ │ │ ├── _ellip_harm_2.pyi │ │ │ │ │ ├── _gufuncs.pyi │ │ │ │ │ ├── _input_validation.pyi │ │ │ │ │ ├── _lambertw.pyi │ │ │ │ │ ├── _logsumexp.pyi │ │ │ │ │ ├── _multiufuncs.pyi │ │ │ │ │ ├── _orthogonal.pyi │ │ │ │ │ ├── _sf_error.pyi │ │ │ │ │ ├── _specfun.pyi │ │ │ │ │ ├── _special_ufuncs.pyi │ │ │ │ │ ├── _spfun_stats.pyi │ │ │ │ │ ├── _spherical_bessel.pyi │ │ │ │ │ ├── _support_alternative_backends.pyi │ │ │ │ │ ├── _ufuncs.pyi │ │ │ │ │ ├── _ufuncs_cxx.pyi │ │ │ │ │ ├── add_newdocs.pyi │ │ │ │ │ ├── basic.pyi │ │ │ │ │ ├── cython_special.pyi │ │ │ │ │ ├── orthogonal.pyi │ │ │ │ │ ├── sf_error.pyi │ │ │ │ │ ├── specfun.pyi │ │ │ │ │ └── spfun_stats.pyi │ │ │ │ ├── stats │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _ansari_swilk_statistics.pyi │ │ │ │ │ ├── _axis_nan_policy.pyi │ │ │ │ │ ├── _biasedurn.pyi │ │ │ │ │ ├── _binned_statistic.pyi │ │ │ │ │ ├── _binomtest.pyi │ │ │ │ │ ├── _bws_test.pyi │ │ │ │ │ ├── _censored_data.pyi │ │ │ │ │ ├── _common.pyi │ │ │ │ │ ├── _constants.pyi │ │ │ │ │ ├── _continuous_distns.pyi │ │ │ │ │ ├── _correlation.pyi │ │ │ │ │ ├── _covariance.pyi │ │ │ │ │ ├── _crosstab.pyi │ │ │ │ │ ├── _discrete_distns.pyi │ │ │ │ │ ├── _distn_infrastructure.pyi │ │ │ │ │ ├── _distr_params.pyi │ │ │ │ │ ├── _distribution_infrastructure.pyi │ │ │ │ │ ├── _entropy.pyi │ │ │ │ │ ├── _finite_differences.pyi │ │ │ │ │ ├── _fit.pyi │ │ │ │ │ ├── _hypotests.pyi │ │ │ │ │ ├── _kde.pyi │ │ │ │ │ ├── _ksstats.pyi │ │ │ │ │ ├── _levy_stable │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── levyst.pyi │ │ │ │ │ ├── _mannwhitneyu.pyi │ │ │ │ │ ├── _mgc.pyi │ │ │ │ │ ├── _morestats.pyi │ │ │ │ │ ├── _mstats_basic.pyi │ │ │ │ │ ├── _mstats_extras.pyi │ │ │ │ │ ├── _multicomp.pyi │ │ │ │ │ ├── _multivariate.pyi │ │ │ │ │ ├── _new_distributions.pyi │ │ │ │ │ ├── _odds_ratio.pyi │ │ │ │ │ ├── _page_trend_test.pyi │ │ │ │ │ ├── _probability_distribution.pyi │ │ │ │ │ ├── _qmc.pyi │ │ │ │ │ ├── _qmc_cy.pyi │ │ │ │ │ ├── _qmvnt.pyi │ │ │ │ │ ├── _qmvnt_cy.pyi │ │ │ │ │ ├── _quantile.pyi │ │ │ │ │ ├── _rcont │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── rcont.pyi │ │ │ │ │ ├── _relative_risk.pyi │ │ │ │ │ ├── _resampling.pyi │ │ │ │ │ ├── _result_classes.pyi │ │ │ │ │ ├── _sampling.pyi │ │ │ │ │ ├── _sensitivity_analysis.pyi │ │ │ │ │ ├── _sobol.pyi │ │ │ │ │ ├── _stats.pyi │ │ │ │ │ ├── _stats_mstats_common.pyi │ │ │ │ │ ├── _stats_py.pyi │ │ │ │ │ ├── _stats_pythran.pyi │ │ │ │ │ ├── _survival.pyi │ │ │ │ │ ├── _tukeylambda_stats.pyi │ │ │ │ │ ├── _typing.pyi │ │ │ │ │ ├── _unuran │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── unuran_wrapper.pyi │ │ │ │ │ ├── _variation.pyi │ │ │ │ │ ├── _warnings_errors.pyi │ │ │ │ │ ├── _wilcoxon.pyi │ │ │ │ │ ├── biasedurn.pyi │ │ │ │ │ ├── contingency.pyi │ │ │ │ │ ├── distributions.pyi │ │ │ │ │ ├── kde.pyi │ │ │ │ │ ├── morestats.pyi │ │ │ │ │ ├── mstats.pyi │ │ │ │ │ ├── mstats_basic.pyi │ │ │ │ │ ├── mstats_extras.pyi │ │ │ │ │ ├── mvn.pyi │ │ │ │ │ ├── qmc.pyi │ │ │ │ │ ├── sampling.pyi │ │ │ │ │ └── stats.pyi │ │ │ │ └── version.pyi │ │ │ ├── skimage-stubs │ │ │ │ ├── README.md │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _shared │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _dependency_checks.pyi │ │ │ │ │ ├── _geometry.pyi │ │ │ │ │ ├── _tempfile.pyi │ │ │ │ │ ├── _warnings.pyi │ │ │ │ │ ├── coord.pyi │ │ │ │ │ ├── filters.pyi │ │ │ │ │ ├── lazy.pyi │ │ │ │ │ ├── tester.pyi │ │ │ │ │ ├── testing.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── version_requirements.pyi │ │ │ │ ├── _typing.pyi │ │ │ │ ├── data │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _binary_blobs.pyi │ │ │ │ │ ├── _fetchers.pyi │ │ │ │ │ └── _registry.pyi │ │ │ │ ├── draw │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _polygon2mask.pyi │ │ │ │ │ ├── _random_shapes.pyi │ │ │ │ │ ├── draw.pyi │ │ │ │ │ ├── draw3d.pyi │ │ │ │ │ └── draw_nd.pyi │ │ │ │ ├── feature │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _basic_features.pyi │ │ │ │ │ ├── _canny.pyi │ │ │ │ │ ├── _cascade.pyi │ │ │ │ │ ├── _daisy.pyi │ │ │ │ │ ├── _hessian_det_appx_pythran.pyi │ │ │ │ │ ├── _hog.pyi │ │ │ │ │ ├── _orb_descriptor_positions.pyi │ │ │ │ │ ├── blob.pyi │ │ │ │ │ ├── brief.pyi │ │ │ │ │ ├── brief_pythran.pyi │ │ │ │ │ ├── censure.pyi │ │ │ │ │ ├── corner.pyi │ │ │ │ │ ├── haar.pyi │ │ │ │ │ ├── match.pyi │ │ │ │ │ ├── orb.pyi │ │ │ │ │ ├── peak.pyi │ │ │ │ │ ├── sift.pyi │ │ │ │ │ ├── template.pyi │ │ │ │ │ ├── texture.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── future │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── graph │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _ncut.pyi │ │ │ │ │ │ ├── graph_cut.pyi │ │ │ │ │ │ ├── graph_merge.pyi │ │ │ │ │ │ └── rag.pyi │ │ │ │ │ ├── manual_segmentation.pyi │ │ │ │ │ └── trainable_segmentation.pyi │ │ │ │ ├── measure │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _blur_effect.pyi │ │ │ │ │ ├── _find_contours.pyi │ │ │ │ │ ├── _label.pyi │ │ │ │ │ ├── _marching_cubes_classic.pyi │ │ │ │ │ ├── _marching_cubes_lewiner.pyi │ │ │ │ │ ├── _marching_cubes_lewiner_luts.pyi │ │ │ │ │ ├── _moments.pyi │ │ │ │ │ ├── _polygon.pyi │ │ │ │ │ ├── _regionprops.pyi │ │ │ │ │ ├── _regionprops_utils.pyi │ │ │ │ │ ├── block.pyi │ │ │ │ │ ├── entropy.pyi │ │ │ │ │ ├── fit.pyi │ │ │ │ │ ├── pnpoly.pyi │ │ │ │ │ └── profile.pyi │ │ │ │ ├── morphology │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _flood_fill.pyi │ │ │ │ │ ├── _skeletonize.pyi │ │ │ │ │ ├── _util.pyi │ │ │ │ │ ├── binary.pyi │ │ │ │ │ ├── convex_hull.pyi │ │ │ │ │ ├── extrema.pyi │ │ │ │ │ ├── footprints.pyi │ │ │ │ │ ├── gray.pyi │ │ │ │ │ ├── grayreconstruct.pyi │ │ │ │ │ ├── grey.pyi │ │ │ │ │ ├── greyreconstruct.pyi │ │ │ │ │ ├── max_tree.pyi │ │ │ │ │ ├── misc.pyi │ │ │ │ │ └── selem.pyi │ │ │ │ ├── scripts │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── skivi.pyi │ │ │ │ ├── stubtest_allowlist.txt │ │ │ │ └── transform │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _geometric.pyi │ │ │ │ │ ├── _warps.pyi │ │ │ │ │ ├── finite_radon_transform.pyi │ │ │ │ │ ├── hough_transform.pyi │ │ │ │ │ ├── integral.pyi │ │ │ │ │ ├── pyramids.pyi │ │ │ │ │ └── radon_transform.pyi │ │ │ ├── sklearn-stubs │ │ │ │ ├── README.md │ │ │ │ ├── __check_build │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── _check_build.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _build_utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── openmp_helpers.pyi │ │ │ │ │ └── pre_build_helpers.pyi │ │ │ │ ├── _config.pyi │ │ │ │ ├── _distributor_init.pyi │ │ │ │ ├── _loss │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _loss.pyi │ │ │ │ │ ├── glm_distribution.pyi │ │ │ │ │ ├── link.pyi │ │ │ │ │ └── loss.pyi │ │ │ │ ├── _min_dependencies.pyi │ │ │ │ ├── _typing.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── calibration.pyi │ │ │ │ ├── cluster │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _affinity_propagation.pyi │ │ │ │ │ ├── _agglomerative.pyi │ │ │ │ │ ├── _bicluster.pyi │ │ │ │ │ ├── _birch.pyi │ │ │ │ │ ├── _bisect_k_means.pyi │ │ │ │ │ ├── _dbscan.pyi │ │ │ │ │ ├── _dbscan_inner.pyi │ │ │ │ │ ├── _feature_agglomeration.pyi │ │ │ │ │ ├── _k_means_common.pyi │ │ │ │ │ ├── _k_means_elkan.pyi │ │ │ │ │ ├── _k_means_lloyd.pyi │ │ │ │ │ ├── _kmeans.pyi │ │ │ │ │ ├── _mean_shift.pyi │ │ │ │ │ ├── _optics.pyi │ │ │ │ │ └── _spectral.pyi │ │ │ │ ├── compose │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _column_transformer.pyi │ │ │ │ │ └── _target.pyi │ │ │ │ ├── conftest.pyi │ │ │ │ ├── covariance │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _elliptic_envelope.pyi │ │ │ │ │ ├── _empirical_covariance.pyi │ │ │ │ │ ├── _graph_lasso.pyi │ │ │ │ │ ├── _robust_covariance.pyi │ │ │ │ │ └── _shrunk_covariance.pyi │ │ │ │ ├── cross_decomposition │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── _pls.pyi │ │ │ │ ├── datasets │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _arff_parser.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _california_housing.pyi │ │ │ │ │ ├── _covtype.pyi │ │ │ │ │ ├── _kddcup99.pyi │ │ │ │ │ ├── _lfw.pyi │ │ │ │ │ ├── _olivetti_faces.pyi │ │ │ │ │ ├── _openml.pyi │ │ │ │ │ ├── _rcv1.pyi │ │ │ │ │ ├── _samples_generator.pyi │ │ │ │ │ ├── _species_distributions.pyi │ │ │ │ │ ├── _svmlight_format_io.pyi │ │ │ │ │ ├── _twenty_newsgroups.pyi │ │ │ │ │ ├── data │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── descr │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── images │ │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── decomposition │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _dict_learning.pyi │ │ │ │ │ ├── _factor_analysis.pyi │ │ │ │ │ ├── _fastica.pyi │ │ │ │ │ ├── _incremental_pca.pyi │ │ │ │ │ ├── _kernel_pca.pyi │ │ │ │ │ ├── _lda.pyi │ │ │ │ │ ├── _nmf.pyi │ │ │ │ │ ├── _online_lda_fast.pyi │ │ │ │ │ ├── _pca.pyi │ │ │ │ │ ├── _sparse_pca.pyi │ │ │ │ │ └── _truncated_svd.pyi │ │ │ │ ├── discriminant_analysis.pyi │ │ │ │ ├── dummy.pyi │ │ │ │ ├── ensemble │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _bagging.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _forest.pyi │ │ │ │ │ ├── _gb.pyi │ │ │ │ │ ├── _gb_losses.pyi │ │ │ │ │ ├── _gradient_boosting.pyi │ │ │ │ │ ├── _hist_gradient_boosting │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _bitset.pyi │ │ │ │ │ │ ├── binning.pyi │ │ │ │ │ │ ├── common.pyi │ │ │ │ │ │ ├── gradient_boosting.pyi │ │ │ │ │ │ ├── grower.pyi │ │ │ │ │ │ ├── histogram.pyi │ │ │ │ │ │ ├── predictor.pyi │ │ │ │ │ │ ├── splitting.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── _iforest.pyi │ │ │ │ │ ├── _stacking.pyi │ │ │ │ │ ├── _voting.pyi │ │ │ │ │ └── _weight_boosting.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── experimental │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── enable_halving_search_cv.pyi │ │ │ │ │ ├── enable_hist_gradient_boosting.pyi │ │ │ │ │ └── enable_iterative_imputer.pyi │ │ │ │ ├── externals │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _arff.pyi │ │ │ │ │ ├── _lobpcg.pyi │ │ │ │ │ ├── _numpy_compiler_patch.pyi │ │ │ │ │ ├── _packaging │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _structures.pyi │ │ │ │ │ │ └── version.pyi │ │ │ │ │ └── conftest.pyi │ │ │ │ ├── feature_extraction │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _dict_vectorizer.pyi │ │ │ │ │ ├── _hash.pyi │ │ │ │ │ ├── _hashing_fast.pyi │ │ │ │ │ ├── _stop_words.pyi │ │ │ │ │ ├── image.pyi │ │ │ │ │ └── text.pyi │ │ │ │ ├── feature_selection │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _from_model.pyi │ │ │ │ │ ├── _mutual_info.pyi │ │ │ │ │ ├── _rfe.pyi │ │ │ │ │ ├── _sequential.pyi │ │ │ │ │ ├── _univariate_selection.pyi │ │ │ │ │ └── _variance_threshold.pyi │ │ │ │ ├── gaussian_process │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _gpc.pyi │ │ │ │ │ ├── _gpr.pyi │ │ │ │ │ └── kernels.pyi │ │ │ │ ├── impute │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _iterative.pyi │ │ │ │ │ └── _knn.pyi │ │ │ │ ├── inspection │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _partial_dependence.pyi │ │ │ │ │ ├── _pd_utils.pyi │ │ │ │ │ ├── _permutation_importance.pyi │ │ │ │ │ └── _plot │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── decision_boundary.pyi │ │ │ │ │ │ └── partial_dependence.pyi │ │ │ │ ├── isotonic.pyi │ │ │ │ ├── kernel_approximation.pyi │ │ │ │ ├── kernel_ridge.pyi │ │ │ │ ├── linear_model │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _bayes.pyi │ │ │ │ │ ├── _coordinate_descent.pyi │ │ │ │ │ ├── _glm │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _newton_solver.pyi │ │ │ │ │ │ └── glm.pyi │ │ │ │ │ ├── _huber.pyi │ │ │ │ │ ├── _least_angle.pyi │ │ │ │ │ ├── _linear_loss.pyi │ │ │ │ │ ├── _logistic.pyi │ │ │ │ │ ├── _omp.pyi │ │ │ │ │ ├── _passive_aggressive.pyi │ │ │ │ │ ├── _perceptron.pyi │ │ │ │ │ ├── _quantile.pyi │ │ │ │ │ ├── _ransac.pyi │ │ │ │ │ ├── _ridge.pyi │ │ │ │ │ ├── _sag.pyi │ │ │ │ │ ├── _sag_fast.pyi │ │ │ │ │ ├── _sgd_fast.pyi │ │ │ │ │ ├── _stochastic_gradient.pyi │ │ │ │ │ └── _theil_sen.pyi │ │ │ │ ├── manifold │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _isomap.pyi │ │ │ │ │ ├── _locally_linear.pyi │ │ │ │ │ ├── _mds.pyi │ │ │ │ │ ├── _spectral_embedding.pyi │ │ │ │ │ └── _t_sne.pyi │ │ │ │ ├── metrics │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _classification.pyi │ │ │ │ │ ├── _dist_metrics.pyi │ │ │ │ │ ├── _pairwise_distances_reduction │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── _dispatcher.pyi │ │ │ │ │ ├── _plot │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── confusion_matrix.pyi │ │ │ │ │ │ ├── det_curve.pyi │ │ │ │ │ │ ├── precision_recall_curve.pyi │ │ │ │ │ │ ├── regression.pyi │ │ │ │ │ │ └── roc_curve.pyi │ │ │ │ │ ├── _ranking.pyi │ │ │ │ │ ├── _regression.pyi │ │ │ │ │ ├── _scorer.pyi │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _bicluster.pyi │ │ │ │ │ │ ├── _expected_mutual_info_fast.pyi │ │ │ │ │ │ ├── _supervised.pyi │ │ │ │ │ │ └── _unsupervised.pyi │ │ │ │ │ └── pairwise.pyi │ │ │ │ ├── mixture │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _bayesian_mixture.pyi │ │ │ │ │ └── _gaussian_mixture.pyi │ │ │ │ ├── model_selection │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _plot.pyi │ │ │ │ │ ├── _search.pyi │ │ │ │ │ ├── _search_successive_halving.pyi │ │ │ │ │ ├── _split.pyi │ │ │ │ │ └── _validation.pyi │ │ │ │ ├── multiclass.pyi │ │ │ │ ├── multioutput.pyi │ │ │ │ ├── naive_bayes.pyi │ │ │ │ ├── neighbors │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _ball_tree.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _binary_tree.pyi │ │ │ │ │ ├── _classification.pyi │ │ │ │ │ ├── _graph.pyi │ │ │ │ │ ├── _kd_tree.pyi │ │ │ │ │ ├── _kde.pyi │ │ │ │ │ ├── _lof.pyi │ │ │ │ │ ├── _nca.pyi │ │ │ │ │ ├── _nearest_centroid.pyi │ │ │ │ │ ├── _regression.pyi │ │ │ │ │ └── _unsupervised.pyi │ │ │ │ ├── neural_network │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _multilayer_perceptron.pyi │ │ │ │ │ ├── _rbm.pyi │ │ │ │ │ └── _stochastic_optimizers.pyi │ │ │ │ ├── pipeline.pyi │ │ │ │ ├── preprocessing │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _data.pyi │ │ │ │ │ ├── _discretization.pyi │ │ │ │ │ ├── _encoders.pyi │ │ │ │ │ ├── _function_transformer.pyi │ │ │ │ │ ├── _label.pyi │ │ │ │ │ ├── _polynomial.pyi │ │ │ │ │ └── _target_encoder.pyi │ │ │ │ ├── py.typed │ │ │ │ ├── random_projection.pyi │ │ │ │ ├── semi_supervised │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _label_propagation.pyi │ │ │ │ │ └── _self_training.pyi │ │ │ │ ├── stubtest_allowlist.txt │ │ │ │ ├── svm │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── _bounds.pyi │ │ │ │ │ └── _classes.pyi │ │ │ │ ├── tests │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── random_seed.pyi │ │ │ │ ├── tree │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _classes.pyi │ │ │ │ │ ├── _criterion.pyi │ │ │ │ │ ├── _export.pyi │ │ │ │ │ ├── _reingold_tilford.pyi │ │ │ │ │ ├── _splitter.pyi │ │ │ │ │ └── _tree.pyi │ │ │ │ └── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _arpack.pyi │ │ │ │ │ ├── _array_api.pyi │ │ │ │ │ ├── _available_if.pyi │ │ │ │ │ ├── _bunch.pyi │ │ │ │ │ ├── _encode.pyi │ │ │ │ │ ├── _estimator_html_repr.pyi │ │ │ │ │ ├── _fast_dict.pyi │ │ │ │ │ ├── _isfinite.pyi │ │ │ │ │ ├── _joblib.pyi │ │ │ │ │ ├── _mask.pyi │ │ │ │ │ ├── _metadata_requests.pyi │ │ │ │ │ ├── _mocking.pyi │ │ │ │ │ ├── _param_validation.pyi │ │ │ │ │ ├── _pprint.pyi │ │ │ │ │ ├── _random.pyi │ │ │ │ │ ├── _readonly_array_wrapper.pyi │ │ │ │ │ ├── _seq_dataset.pyi │ │ │ │ │ ├── _set_output.pyi │ │ │ │ │ ├── _show_versions.pyi │ │ │ │ │ ├── _tags.pyi │ │ │ │ │ ├── _testing.pyi │ │ │ │ │ ├── arrayfuncs.pyi │ │ │ │ │ ├── class_weight.pyi │ │ │ │ │ ├── deprecation.pyi │ │ │ │ │ ├── discovery.pyi │ │ │ │ │ ├── estimator_checks.pyi │ │ │ │ │ ├── extmath.pyi │ │ │ │ │ ├── fixes.pyi │ │ │ │ │ ├── graph.pyi │ │ │ │ │ ├── metadata_routing.pyi │ │ │ │ │ ├── metaestimators.pyi │ │ │ │ │ ├── multiclass.pyi │ │ │ │ │ ├── murmurhash.pyi │ │ │ │ │ ├── optimize.pyi │ │ │ │ │ ├── parallel.pyi │ │ │ │ │ ├── random.pyi │ │ │ │ │ ├── sparsefuncs.pyi │ │ │ │ │ ├── sparsefuncs_fast.pyi │ │ │ │ │ ├── stats.pyi │ │ │ │ │ └── validation.pyi │ │ │ ├── sympy-stubs │ │ │ │ ├── README.md │ │ │ │ ├── __init__.pyi │ │ │ │ ├── algebras │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── quaternion.pyi │ │ │ │ ├── assumptions │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ask.pyi │ │ │ │ │ ├── ask_generated.pyi │ │ │ │ │ ├── assume.pyi │ │ │ │ │ ├── cnf.pyi │ │ │ │ │ ├── facts.pyi │ │ │ │ │ ├── handlers │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── calculus.pyi │ │ │ │ │ │ ├── common.pyi │ │ │ │ │ │ ├── matrices.pyi │ │ │ │ │ │ ├── ntheory.pyi │ │ │ │ │ │ ├── order.pyi │ │ │ │ │ │ └── sets.pyi │ │ │ │ │ ├── predicates │ │ │ │ │ │ ├── calculus.pyi │ │ │ │ │ │ ├── common.pyi │ │ │ │ │ │ ├── matrices.pyi │ │ │ │ │ │ ├── ntheory.pyi │ │ │ │ │ │ ├── order.pyi │ │ │ │ │ │ └── sets.pyi │ │ │ │ │ ├── refine.pyi │ │ │ │ │ ├── relation │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── binrel.pyi │ │ │ │ │ │ └── equality.pyi │ │ │ │ │ ├── satask.pyi │ │ │ │ │ ├── sathandlers.pyi │ │ │ │ │ └── wrapper.pyi │ │ │ │ ├── calculus │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── accumulationbounds.pyi │ │ │ │ │ ├── euler.pyi │ │ │ │ │ ├── finite_diff.pyi │ │ │ │ │ ├── singularities.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── categories │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── baseclasses.pyi │ │ │ │ │ └── diagram_drawing.pyi │ │ │ │ ├── codegen │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ast.pyi │ │ │ │ │ ├── cfunctions.pyi │ │ │ │ │ ├── cnodes.pyi │ │ │ │ │ ├── fnodes.pyi │ │ │ │ │ └── pynodes.pyi │ │ │ │ ├── combinatorics │ │ │ │ │ ├── coset_table.pyi │ │ │ │ │ ├── fp_groups.pyi │ │ │ │ │ ├── free_groups.pyi │ │ │ │ │ ├── galois.pyi │ │ │ │ │ ├── generators.pyi │ │ │ │ │ ├── graycode.pyi │ │ │ │ │ ├── group_constructs.pyi │ │ │ │ │ ├── homomorphisms.pyi │ │ │ │ │ ├── named_groups.pyi │ │ │ │ │ ├── partitions.pyi │ │ │ │ │ ├── pc_groups.pyi │ │ │ │ │ ├── perm_groups.pyi │ │ │ │ │ ├── permutations.pyi │ │ │ │ │ ├── polyhedron.pyi │ │ │ │ │ ├── prufer.pyi │ │ │ │ │ ├── rewritingsystem.pyi │ │ │ │ │ ├── rewritingsystem_fsm.pyi │ │ │ │ │ ├── subsets.pyi │ │ │ │ │ ├── tensor_can.pyi │ │ │ │ │ └── testutil.pyi │ │ │ │ ├── concrete │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── delta.pyi │ │ │ │ │ ├── expr_with_intlimits.pyi │ │ │ │ │ ├── expr_with_limits.pyi │ │ │ │ │ ├── gosper.pyi │ │ │ │ │ ├── products.pyi │ │ │ │ │ └── summations.pyi │ │ │ │ ├── conftest.pyi │ │ │ │ ├── core │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── add.pyi │ │ │ │ │ ├── assumptions.pyi │ │ │ │ │ ├── basic.pyi │ │ │ │ │ ├── cache.pyi │ │ │ │ │ ├── containers.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── decorators.pyi │ │ │ │ │ ├── evalf.pyi │ │ │ │ │ ├── expr.pyi │ │ │ │ │ ├── exprtools.pyi │ │ │ │ │ ├── facts.pyi │ │ │ │ │ ├── function.pyi │ │ │ │ │ ├── kind.pyi │ │ │ │ │ ├── logic.pyi │ │ │ │ │ ├── mod.pyi │ │ │ │ │ ├── mul.pyi │ │ │ │ │ ├── multidimensional.pyi │ │ │ │ │ ├── numbers.pyi │ │ │ │ │ ├── operations.pyi │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ ├── power.pyi │ │ │ │ │ ├── random.pyi │ │ │ │ │ ├── relational.pyi │ │ │ │ │ ├── rules.pyi │ │ │ │ │ ├── singleton.pyi │ │ │ │ │ ├── sorting.pyi │ │ │ │ │ ├── symbol.pyi │ │ │ │ │ ├── sympify.pyi │ │ │ │ │ └── traversal.pyi │ │ │ │ ├── crypto │ │ │ │ │ └── crypto.pyi │ │ │ │ ├── diffgeom │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── diffgeom.pyi │ │ │ │ ├── discrete │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── convolutions.pyi │ │ │ │ │ ├── recurrences.pyi │ │ │ │ │ └── transforms.pyi │ │ │ │ ├── external │ │ │ │ │ ├── importtools.pyi │ │ │ │ │ └── pythonmpq.pyi │ │ │ │ ├── functions │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── combinatorial │ │ │ │ │ │ ├── factorials.pyi │ │ │ │ │ │ └── numbers.pyi │ │ │ │ │ ├── elementary │ │ │ │ │ │ ├── complexes.pyi │ │ │ │ │ │ ├── exponential.pyi │ │ │ │ │ │ ├── hyperbolic.pyi │ │ │ │ │ │ ├── miscellaneous.pyi │ │ │ │ │ │ ├── piecewise.pyi │ │ │ │ │ │ └── trigonometric.pyi │ │ │ │ │ └── special │ │ │ │ │ │ ├── bessel.pyi │ │ │ │ │ │ ├── beta_functions.pyi │ │ │ │ │ │ ├── bsplines.pyi │ │ │ │ │ │ ├── delta_functions.pyi │ │ │ │ │ │ ├── elliptic_integrals.pyi │ │ │ │ │ │ ├── error_functions.pyi │ │ │ │ │ │ ├── gamma_functions.pyi │ │ │ │ │ │ ├── hyper.pyi │ │ │ │ │ │ ├── mathieu_functions.pyi │ │ │ │ │ │ ├── polynomials.pyi │ │ │ │ │ │ ├── singularity_functions.pyi │ │ │ │ │ │ ├── spherical_harmonics.pyi │ │ │ │ │ │ ├── tensor_functions.pyi │ │ │ │ │ │ └── zeta_functions.pyi │ │ │ │ ├── geometry │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── curve.pyi │ │ │ │ │ ├── ellipse.pyi │ │ │ │ │ ├── entity.pyi │ │ │ │ │ ├── line.pyi │ │ │ │ │ ├── parabola.pyi │ │ │ │ │ ├── plane.pyi │ │ │ │ │ ├── point.pyi │ │ │ │ │ ├── polygon.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── holonomic │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── holonomic.pyi │ │ │ │ │ └── recurrence.pyi │ │ │ │ ├── integrals │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── deltafunctions.pyi │ │ │ │ │ ├── heurisch.pyi │ │ │ │ │ ├── integrals.pyi │ │ │ │ │ ├── laplace.pyi │ │ │ │ │ ├── manualintegrate.pyi │ │ │ │ │ ├── meijerint.pyi │ │ │ │ │ ├── prde.pyi │ │ │ │ │ ├── rationaltools.pyi │ │ │ │ │ ├── rde.pyi │ │ │ │ │ ├── risch.pyi │ │ │ │ │ ├── singularityfunctions.pyi │ │ │ │ │ └── transforms.pyi │ │ │ │ ├── interactive │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── printing.pyi │ │ │ │ │ ├── session.pyi │ │ │ │ │ └── traversal.pyi │ │ │ │ ├── liealgebras │ │ │ │ │ ├── cartan_type.pyi │ │ │ │ │ ├── type_a.pyi │ │ │ │ │ ├── type_b.pyi │ │ │ │ │ ├── type_c.pyi │ │ │ │ │ ├── type_d.pyi │ │ │ │ │ ├── type_e.pyi │ │ │ │ │ ├── type_f.pyi │ │ │ │ │ └── type_g.pyi │ │ │ │ ├── logic │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── algorithms │ │ │ │ │ │ ├── dpll.pyi │ │ │ │ │ │ ├── dpll2.pyi │ │ │ │ │ │ ├── minisat22_wrapper.pyi │ │ │ │ │ │ └── pycosat_wrapper.pyi │ │ │ │ │ ├── boolalg.pyi │ │ │ │ │ └── inference.pyi │ │ │ │ ├── matrices │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── dense.pyi │ │ │ │ │ ├── expressions │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── adjoint.pyi │ │ │ │ │ │ ├── applyfunc.pyi │ │ │ │ │ │ ├── blockmatrix.pyi │ │ │ │ │ │ ├── companion.pyi │ │ │ │ │ │ ├── determinant.pyi │ │ │ │ │ │ ├── diagonal.pyi │ │ │ │ │ │ ├── dotproduct.pyi │ │ │ │ │ │ ├── factorizations.pyi │ │ │ │ │ │ ├── fourier.pyi │ │ │ │ │ │ ├── funcmatrix.pyi │ │ │ │ │ │ ├── hadamard.pyi │ │ │ │ │ │ ├── inverse.pyi │ │ │ │ │ │ ├── kronecker.pyi │ │ │ │ │ │ ├── matadd.pyi │ │ │ │ │ │ ├── matexpr.pyi │ │ │ │ │ │ ├── matmul.pyi │ │ │ │ │ │ ├── matpow.pyi │ │ │ │ │ │ ├── permutation.pyi │ │ │ │ │ │ ├── sets.pyi │ │ │ │ │ │ ├── slice.pyi │ │ │ │ │ │ ├── special.pyi │ │ │ │ │ │ ├── trace.pyi │ │ │ │ │ │ └── transpose.pyi │ │ │ │ │ ├── immutable.pyi │ │ │ │ │ ├── kind.pyi │ │ │ │ │ ├── matrixbase.pyi │ │ │ │ │ ├── normalforms.pyi │ │ │ │ │ ├── repmatrix.pyi │ │ │ │ │ ├── sparse.pyi │ │ │ │ │ └── utilities.pyi │ │ │ │ ├── multipledispatch │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── conflict.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── dispatcher.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── ntheory │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── continued_fraction.pyi │ │ │ │ │ ├── digits.pyi │ │ │ │ │ ├── ecm.pyi │ │ │ │ │ ├── egyptian_fraction.pyi │ │ │ │ │ ├── factor_.pyi │ │ │ │ │ ├── generate.pyi │ │ │ │ │ ├── modular.pyi │ │ │ │ │ ├── multinomial.pyi │ │ │ │ │ ├── partitions_.pyi │ │ │ │ │ ├── primetest.pyi │ │ │ │ │ ├── qs.pyi │ │ │ │ │ └── residue_ntheory.pyi │ │ │ │ ├── parsing │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── sympy_parser.pyi │ │ │ │ ├── physics │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── control │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── control_plots.pyi │ │ │ │ │ │ └── lti.pyi │ │ │ │ │ ├── matrices.pyi │ │ │ │ │ └── units │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── definitions │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── dimensions.pyi │ │ │ │ │ │ ├── prefixes.pyi │ │ │ │ │ │ ├── quantities.pyi │ │ │ │ │ │ ├── unitsystem.pyi │ │ │ │ │ │ └── util.pyi │ │ │ │ ├── plotting │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── intervalmath │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── interval_arithmetic.pyi │ │ │ │ │ │ ├── interval_membership.pyi │ │ │ │ │ │ └── lib_interval.pyi │ │ │ │ │ ├── plot.pyi │ │ │ │ │ ├── plot_implicit.pyi │ │ │ │ │ ├── pygletplot │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── color_scheme.pyi │ │ │ │ │ │ ├── managed_window.pyi │ │ │ │ │ │ ├── plot.pyi │ │ │ │ │ │ ├── plot_axes.pyi │ │ │ │ │ │ ├── plot_camera.pyi │ │ │ │ │ │ ├── plot_controller.pyi │ │ │ │ │ │ ├── plot_curve.pyi │ │ │ │ │ │ ├── plot_interval.pyi │ │ │ │ │ │ ├── plot_mode.pyi │ │ │ │ │ │ ├── plot_mode_base.pyi │ │ │ │ │ │ ├── plot_modes.pyi │ │ │ │ │ │ ├── plot_object.pyi │ │ │ │ │ │ ├── plot_rotation.pyi │ │ │ │ │ │ ├── plot_surface.pyi │ │ │ │ │ │ ├── plot_window.pyi │ │ │ │ │ │ └── util.pyi │ │ │ │ │ └── textplot.pyi │ │ │ │ ├── polys │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── agca │ │ │ │ │ │ ├── extensions.pyi │ │ │ │ │ │ ├── homomorphisms.pyi │ │ │ │ │ │ ├── ideals.pyi │ │ │ │ │ │ └── modules.pyi │ │ │ │ │ ├── appellseqs.pyi │ │ │ │ │ ├── compatibility.pyi │ │ │ │ │ ├── constructor.pyi │ │ │ │ │ ├── densearith.pyi │ │ │ │ │ ├── densebasic.pyi │ │ │ │ │ ├── densetools.pyi │ │ │ │ │ ├── dispersion.pyi │ │ │ │ │ ├── distributedmodules.pyi │ │ │ │ │ ├── domains │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── algebraicfield.pyi │ │ │ │ │ │ ├── characteristiczero.pyi │ │ │ │ │ │ ├── complexfield.pyi │ │ │ │ │ │ ├── compositedomain.pyi │ │ │ │ │ │ ├── domain.pyi │ │ │ │ │ │ ├── expressiondomain.pyi │ │ │ │ │ │ ├── expressionrawdomain.pyi │ │ │ │ │ │ ├── field.pyi │ │ │ │ │ │ ├── finitefield.pyi │ │ │ │ │ │ ├── fractionfield.pyi │ │ │ │ │ │ ├── gaussiandomains.pyi │ │ │ │ │ │ ├── gmpyintegerring.pyi │ │ │ │ │ │ ├── gmpyrationalfield.pyi │ │ │ │ │ │ ├── integerring.pyi │ │ │ │ │ │ ├── modularinteger.pyi │ │ │ │ │ │ ├── mpelements.pyi │ │ │ │ │ │ ├── old_fractionfield.pyi │ │ │ │ │ │ ├── old_polynomialring.pyi │ │ │ │ │ │ ├── polynomialring.pyi │ │ │ │ │ │ ├── pythonintegerring.pyi │ │ │ │ │ │ ├── pythonrational.pyi │ │ │ │ │ │ ├── pythonrationalfield.pyi │ │ │ │ │ │ ├── quotientring.pyi │ │ │ │ │ │ ├── rationalfield.pyi │ │ │ │ │ │ ├── realfield.pyi │ │ │ │ │ │ ├── ring.pyi │ │ │ │ │ │ └── simpledomain.pyi │ │ │ │ │ ├── euclidtools.pyi │ │ │ │ │ ├── factortools.pyi │ │ │ │ │ ├── fglmtools.pyi │ │ │ │ │ ├── fields.pyi │ │ │ │ │ ├── galoistools.pyi │ │ │ │ │ ├── groebnertools.pyi │ │ │ │ │ ├── heuristicgcd.pyi │ │ │ │ │ ├── matrices │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── ddm.pyi │ │ │ │ │ │ ├── dense.pyi │ │ │ │ │ │ ├── domainmatrix.pyi │ │ │ │ │ │ ├── domainscalar.pyi │ │ │ │ │ │ ├── eigen.pyi │ │ │ │ │ │ ├── linsolve.pyi │ │ │ │ │ │ ├── lll.pyi │ │ │ │ │ │ ├── normalforms.pyi │ │ │ │ │ │ └── sdm.pyi │ │ │ │ │ ├── monomials.pyi │ │ │ │ │ ├── numberfields │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── basis.pyi │ │ │ │ │ │ ├── galois_resolvents.pyi │ │ │ │ │ │ ├── galoisgroups.pyi │ │ │ │ │ │ ├── minpoly.pyi │ │ │ │ │ │ ├── modules.pyi │ │ │ │ │ │ ├── primes.pyi │ │ │ │ │ │ ├── subfield.pyi │ │ │ │ │ │ └── utilities.pyi │ │ │ │ │ ├── orderings.pyi │ │ │ │ │ ├── orthopolys.pyi │ │ │ │ │ ├── partfrac.pyi │ │ │ │ │ ├── polyclasses.pyi │ │ │ │ │ ├── polyconfig.pyi │ │ │ │ │ ├── polyerrors.pyi │ │ │ │ │ ├── polyfuncs.pyi │ │ │ │ │ ├── polymatrix.pyi │ │ │ │ │ ├── polyoptions.pyi │ │ │ │ │ ├── polyquinticconst.pyi │ │ │ │ │ ├── polyroots.pyi │ │ │ │ │ ├── polytools.pyi │ │ │ │ │ ├── polyutils.pyi │ │ │ │ │ ├── rationaltools.pyi │ │ │ │ │ ├── ring_series.pyi │ │ │ │ │ ├── rings.pyi │ │ │ │ │ ├── rootisolation.pyi │ │ │ │ │ ├── rootoftools.pyi │ │ │ │ │ ├── solvers.pyi │ │ │ │ │ ├── specialpolys.pyi │ │ │ │ │ └── sqfreetools.pyi │ │ │ │ ├── printing │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── c.pyi │ │ │ │ │ ├── codeprinter.pyi │ │ │ │ │ ├── conventions.pyi │ │ │ │ │ ├── cxx.pyi │ │ │ │ │ ├── defaults.pyi │ │ │ │ │ ├── dot.pyi │ │ │ │ │ ├── fortran.pyi │ │ │ │ │ ├── glsl.pyi │ │ │ │ │ ├── gtk.pyi │ │ │ │ │ ├── jscode.pyi │ │ │ │ │ ├── julia.pyi │ │ │ │ │ ├── lambdarepr.pyi │ │ │ │ │ ├── latex.pyi │ │ │ │ │ ├── maple.pyi │ │ │ │ │ ├── mathematica.pyi │ │ │ │ │ ├── mathml.pyi │ │ │ │ │ ├── numpy.pyi │ │ │ │ │ ├── octave.pyi │ │ │ │ │ ├── precedence.pyi │ │ │ │ │ ├── pretty │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── pretty.pyi │ │ │ │ │ │ ├── pretty_symbology.pyi │ │ │ │ │ │ └── stringpict.pyi │ │ │ │ │ ├── preview.pyi │ │ │ │ │ ├── printer.pyi │ │ │ │ │ ├── pycode.pyi │ │ │ │ │ ├── python.pyi │ │ │ │ │ ├── rcode.pyi │ │ │ │ │ ├── repr.pyi │ │ │ │ │ ├── rust.pyi │ │ │ │ │ ├── str.pyi │ │ │ │ │ ├── tableform.pyi │ │ │ │ │ ├── tensorflow.pyi │ │ │ │ │ └── tree.pyi │ │ │ │ ├── py.typed │ │ │ │ ├── series │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── approximants.pyi │ │ │ │ │ ├── formal.pyi │ │ │ │ │ ├── fourier.pyi │ │ │ │ │ ├── gruntz.pyi │ │ │ │ │ ├── limits.pyi │ │ │ │ │ ├── limitseq.pyi │ │ │ │ │ ├── order.pyi │ │ │ │ │ ├── sequences.pyi │ │ │ │ │ └── series_class.pyi │ │ │ │ ├── sets │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── conditionset.pyi │ │ │ │ │ ├── contains.pyi │ │ │ │ │ ├── fancysets.pyi │ │ │ │ │ ├── handlers │ │ │ │ │ │ ├── add.pyi │ │ │ │ │ │ ├── functions.pyi │ │ │ │ │ │ ├── intersection.pyi │ │ │ │ │ │ ├── issubset.pyi │ │ │ │ │ │ ├── mul.pyi │ │ │ │ │ │ ├── power.pyi │ │ │ │ │ │ └── union.pyi │ │ │ │ │ ├── ordinals.pyi │ │ │ │ │ ├── powerset.pyi │ │ │ │ │ ├── setexpr.pyi │ │ │ │ │ └── sets.pyi │ │ │ │ ├── simplify │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── combsimp.pyi │ │ │ │ │ ├── cse_main.pyi │ │ │ │ │ ├── cse_opts.pyi │ │ │ │ │ ├── epathtools.pyi │ │ │ │ │ ├── fu.pyi │ │ │ │ │ ├── gammasimp.pyi │ │ │ │ │ ├── hyperexpand.pyi │ │ │ │ │ ├── powsimp.pyi │ │ │ │ │ ├── radsimp.pyi │ │ │ │ │ ├── ratsimp.pyi │ │ │ │ │ ├── simplify.pyi │ │ │ │ │ ├── sqrtdenest.pyi │ │ │ │ │ └── trigsimp.pyi │ │ │ │ ├── solvers │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── bivariate.pyi │ │ │ │ │ ├── decompogen.pyi │ │ │ │ │ ├── deutils.pyi │ │ │ │ │ ├── diophantine │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── diophantine.pyi │ │ │ │ │ ├── inequalities.pyi │ │ │ │ │ ├── ode │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── hypergeometric.pyi │ │ │ │ │ │ ├── lie_group.pyi │ │ │ │ │ │ ├── ode.pyi │ │ │ │ │ │ ├── riccati.pyi │ │ │ │ │ │ ├── single.pyi │ │ │ │ │ │ ├── subscheck.pyi │ │ │ │ │ │ └── systems.pyi │ │ │ │ │ ├── pde.pyi │ │ │ │ │ ├── polysys.pyi │ │ │ │ │ ├── recurr.pyi │ │ │ │ │ ├── solvers.pyi │ │ │ │ │ └── solveset.pyi │ │ │ │ ├── stats │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── compound_rv.pyi │ │ │ │ │ ├── crv.pyi │ │ │ │ │ ├── crv_types.pyi │ │ │ │ │ ├── drv.pyi │ │ │ │ │ ├── drv_types.pyi │ │ │ │ │ ├── frv.pyi │ │ │ │ │ ├── frv_types.pyi │ │ │ │ │ ├── joint_rv.pyi │ │ │ │ │ ├── joint_rv_types.pyi │ │ │ │ │ ├── matrix_distributions.pyi │ │ │ │ │ ├── random_matrix.pyi │ │ │ │ │ ├── random_matrix_models.pyi │ │ │ │ │ ├── rv.pyi │ │ │ │ │ ├── rv_interface.pyi │ │ │ │ │ ├── sampling │ │ │ │ │ │ ├── sample_numpy.pyi │ │ │ │ │ │ ├── sample_pymc.pyi │ │ │ │ │ │ └── sample_scipy.pyi │ │ │ │ │ ├── stochastic_process.pyi │ │ │ │ │ ├── stochastic_process_types.pyi │ │ │ │ │ ├── symbolic_multivariate_probability.pyi │ │ │ │ │ └── symbolic_probability.pyi │ │ │ │ ├── strategies │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── branch │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── core.pyi │ │ │ │ │ │ ├── tools.pyi │ │ │ │ │ │ └── traverse.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── rl.pyi │ │ │ │ │ ├── tools.pyi │ │ │ │ │ ├── traverse.pyi │ │ │ │ │ └── tree.pyi │ │ │ │ ├── stubtest_allowlist.txt │ │ │ │ ├── tensor │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── array │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── array_comprehension.pyi │ │ │ │ │ │ ├── array_derivatives.pyi │ │ │ │ │ │ ├── arrayop.pyi │ │ │ │ │ │ ├── dense_ndim_array.pyi │ │ │ │ │ │ ├── expressions │ │ │ │ │ │ │ ├── array_expressions.pyi │ │ │ │ │ │ │ ├── arrayexpr_derivatives.pyi │ │ │ │ │ │ │ ├── from_array_to_indexed.pyi │ │ │ │ │ │ │ ├── from_array_to_matrix.pyi │ │ │ │ │ │ │ └── from_indexed_to_array.pyi │ │ │ │ │ │ ├── mutable_ndim_array.pyi │ │ │ │ │ │ ├── ndim_array.pyi │ │ │ │ │ │ └── sparse_ndim_array.pyi │ │ │ │ │ ├── functions.pyi │ │ │ │ │ ├── index_methods.pyi │ │ │ │ │ ├── indexed.pyi │ │ │ │ │ └── tensor.pyi │ │ │ │ ├── testing │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── runtests.pyi │ │ │ │ ├── unify │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── rewrite.pyi │ │ │ │ │ └── usympy.pyi │ │ │ │ ├── utilities │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── decorator.pyi │ │ │ │ │ ├── enumerative.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── iterables.pyi │ │ │ │ │ ├── lambdify.pyi │ │ │ │ │ ├── magic.pyi │ │ │ │ │ ├── mathml │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── memoization.pyi │ │ │ │ │ ├── misc.pyi │ │ │ │ │ ├── source.pyi │ │ │ │ │ └── timeutils.pyi │ │ │ │ └── vector │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── basisdependent.pyi │ │ │ │ │ ├── coordsysrect.pyi │ │ │ │ │ ├── deloperator.pyi │ │ │ │ │ ├── dyadic.pyi │ │ │ │ │ ├── functions.pyi │ │ │ │ │ ├── implicitregion.pyi │ │ │ │ │ ├── integrals.pyi │ │ │ │ │ ├── operators.pyi │ │ │ │ │ ├── orienters.pyi │ │ │ │ │ ├── parametricregion.pyi │ │ │ │ │ ├── point.pyi │ │ │ │ │ ├── scalar.pyi │ │ │ │ │ └── vector.pyi │ │ │ └── vispy-stubs │ │ │ │ ├── README.md │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _typing.pyi │ │ │ │ ├── app │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _default_app.pyi │ │ │ │ ├── application.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── canvas.pyi │ │ │ │ └── timer.pyi │ │ │ │ ├── color │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _color_dict.pyi │ │ │ │ ├── color_array.pyi │ │ │ │ ├── color_space.pyi │ │ │ │ └── colormap.pyi │ │ │ │ ├── ext │ │ │ │ ├── __init__.pyi │ │ │ │ ├── cocoapy.pyi │ │ │ │ └── cubehelix.pyi │ │ │ │ ├── geometry │ │ │ │ ├── __init__.pyi │ │ │ │ ├── calculations.pyi │ │ │ │ ├── curves.pyi │ │ │ │ ├── generation.pyi │ │ │ │ ├── isocurve.pyi │ │ │ │ ├── isosurface.pyi │ │ │ │ ├── meshdata.pyi │ │ │ │ ├── normals.pyi │ │ │ │ ├── parametric.pyi │ │ │ │ ├── polygon.pyi │ │ │ │ ├── rect.pyi │ │ │ │ ├── torusknot.pyi │ │ │ │ └── triangulation.pyi │ │ │ │ ├── gloo │ │ │ │ ├── __init__.pyi │ │ │ │ ├── buffer.pyi │ │ │ │ ├── context.pyi │ │ │ │ ├── framebuffer.pyi │ │ │ │ ├── gl │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _constants.pyi │ │ │ │ │ ├── _gl2.pyi │ │ │ │ │ ├── _proxy.pyi │ │ │ │ │ ├── _pyopengl2.pyi │ │ │ │ │ ├── dummy.pyi │ │ │ │ │ ├── gl2.pyi │ │ │ │ │ ├── glplus.pyi │ │ │ │ │ └── pyopengl2.pyi │ │ │ │ ├── glir.pyi │ │ │ │ ├── globject.pyi │ │ │ │ ├── preprocessor.pyi │ │ │ │ ├── program.pyi │ │ │ │ ├── texture.pyi │ │ │ │ ├── util.pyi │ │ │ │ └── wrappers.pyi │ │ │ │ ├── glsl │ │ │ │ ├── __init__.pyi │ │ │ │ └── build_spatial_filters.pyi │ │ │ │ ├── io │ │ │ │ ├── __init__.pyi │ │ │ │ ├── datasets.pyi │ │ │ │ ├── image.pyi │ │ │ │ ├── mesh.pyi │ │ │ │ ├── stl.pyi │ │ │ │ └── wavefront.pyi │ │ │ │ ├── plot │ │ │ │ ├── __init__.pyi │ │ │ │ ├── fig.pyi │ │ │ │ └── plotwidget.pyi │ │ │ │ ├── scene │ │ │ │ ├── __init__.pyi │ │ │ │ ├── cameras │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── arcball.pyi │ │ │ │ │ ├── base_camera.pyi │ │ │ │ │ ├── fly.pyi │ │ │ │ │ ├── magnify.pyi │ │ │ │ │ ├── panzoom.pyi │ │ │ │ │ ├── perspective.pyi │ │ │ │ │ └── turntable.pyi │ │ │ │ ├── canvas.pyi │ │ │ │ ├── events.pyi │ │ │ │ ├── node.pyi │ │ │ │ ├── subscene.pyi │ │ │ │ ├── visuals.pyi │ │ │ │ └── widgets │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── anchor.pyi │ │ │ │ │ ├── axis.pyi │ │ │ │ │ ├── colorbar.pyi │ │ │ │ │ ├── console.pyi │ │ │ │ │ ├── grid.pyi │ │ │ │ │ ├── label.pyi │ │ │ │ │ ├── viewbox.pyi │ │ │ │ │ └── widget.pyi │ │ │ │ ├── stubtest_allowlist.txt │ │ │ │ ├── testing │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _runners.pyi │ │ │ │ ├── _testing.pyi │ │ │ │ ├── image_tester.pyi │ │ │ │ └── rendered_array_tester.pyi │ │ │ │ ├── util │ │ │ │ ├── __init__.pyi │ │ │ │ ├── bunch.pyi │ │ │ │ ├── check_environment.pyi │ │ │ │ ├── config.pyi │ │ │ │ ├── dpi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── eq.pyi │ │ │ │ ├── event.pyi │ │ │ │ ├── fetching.pyi │ │ │ │ ├── filter.pyi │ │ │ │ ├── fonts │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _quartz.pyi │ │ │ │ │ ├── _triage.pyi │ │ │ │ │ └── _vispy_fonts.pyi │ │ │ │ ├── fourier.pyi │ │ │ │ ├── frozen.pyi │ │ │ │ ├── keys.pyi │ │ │ │ ├── logs.pyi │ │ │ │ ├── osmesa_gl.pyi │ │ │ │ ├── profiler.pyi │ │ │ │ ├── ptime.pyi │ │ │ │ ├── quaternion.pyi │ │ │ │ ├── svg │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── color.pyi │ │ │ │ │ ├── element.pyi │ │ │ │ │ ├── geometry.pyi │ │ │ │ │ ├── group.pyi │ │ │ │ │ ├── length.pyi │ │ │ │ │ ├── number.pyi │ │ │ │ │ ├── path.pyi │ │ │ │ │ ├── shapes.pyi │ │ │ │ │ ├── style.pyi │ │ │ │ │ ├── svg.pyi │ │ │ │ │ ├── transform.pyi │ │ │ │ │ ├── transformable.pyi │ │ │ │ │ └── viewport.pyi │ │ │ │ ├── transforms.pyi │ │ │ │ └── wrappers.pyi │ │ │ │ └── visuals │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _scalable_textures.pyi │ │ │ │ ├── axis.pyi │ │ │ │ ├── border.pyi │ │ │ │ ├── box.pyi │ │ │ │ ├── collections │ │ │ │ ├── __init__.pyi │ │ │ │ ├── agg_fast_path_collection.pyi │ │ │ │ ├── agg_path_collection.pyi │ │ │ │ ├── agg_point_collection.pyi │ │ │ │ ├── agg_segment_collection.pyi │ │ │ │ ├── array_list.pyi │ │ │ │ ├── base_collection.pyi │ │ │ │ ├── collection.pyi │ │ │ │ ├── path_collection.pyi │ │ │ │ ├── point_collection.pyi │ │ │ │ ├── polygon_collection.pyi │ │ │ │ ├── raw_path_collection.pyi │ │ │ │ ├── raw_point_collection.pyi │ │ │ │ ├── raw_polygon_collection.pyi │ │ │ │ ├── raw_segment_collection.pyi │ │ │ │ ├── raw_triangle_collection.pyi │ │ │ │ ├── segment_collection.pyi │ │ │ │ ├── triangle_collection.pyi │ │ │ │ └── util.pyi │ │ │ │ ├── colorbar.pyi │ │ │ │ ├── cube.pyi │ │ │ │ ├── ellipse.pyi │ │ │ │ ├── filters │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base_filter.pyi │ │ │ │ ├── clipper.pyi │ │ │ │ ├── clipping_planes.pyi │ │ │ │ ├── color.pyi │ │ │ │ ├── mesh.pyi │ │ │ │ └── picking.pyi │ │ │ │ ├── glsl │ │ │ │ ├── __init__.pyi │ │ │ │ ├── antialiasing.pyi │ │ │ │ └── color.pyi │ │ │ │ ├── graphs │ │ │ │ ├── __init__.pyi │ │ │ │ ├── graph.pyi │ │ │ │ ├── layouts │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── circular.pyi │ │ │ │ │ ├── force_directed.pyi │ │ │ │ │ ├── networkx_layout.pyi │ │ │ │ │ └── random.pyi │ │ │ │ └── util.pyi │ │ │ │ ├── gridlines.pyi │ │ │ │ ├── gridmesh.pyi │ │ │ │ ├── histogram.pyi │ │ │ │ ├── image.pyi │ │ │ │ ├── image_complex.pyi │ │ │ │ ├── infinite_line.pyi │ │ │ │ ├── isocurve.pyi │ │ │ │ ├── isoline.pyi │ │ │ │ ├── isosurface.pyi │ │ │ │ ├── line │ │ │ │ ├── __init__.pyi │ │ │ │ ├── arrow.pyi │ │ │ │ ├── dash_atlas.pyi │ │ │ │ └── line.pyi │ │ │ │ ├── line_plot.pyi │ │ │ │ ├── linear_region.pyi │ │ │ │ ├── markers.pyi │ │ │ │ ├── mesh.pyi │ │ │ │ ├── mesh_normals.pyi │ │ │ │ ├── plane.pyi │ │ │ │ ├── polygon.pyi │ │ │ │ ├── rectangle.pyi │ │ │ │ ├── regular_polygon.pyi │ │ │ │ ├── scrolling_lines.pyi │ │ │ │ ├── shaders │ │ │ │ ├── __init__.pyi │ │ │ │ ├── compiler.pyi │ │ │ │ ├── expression.pyi │ │ │ │ ├── function.pyi │ │ │ │ ├── multiprogram.pyi │ │ │ │ ├── parsing.pyi │ │ │ │ ├── program.pyi │ │ │ │ ├── shader_object.pyi │ │ │ │ └── variable.pyi │ │ │ │ ├── spectrogram.pyi │ │ │ │ ├── sphere.pyi │ │ │ │ ├── surface_plot.pyi │ │ │ │ ├── text │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _sdf_gpu.pyi │ │ │ │ └── text.pyi │ │ │ │ ├── transforms │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _util.pyi │ │ │ │ ├── base_transform.pyi │ │ │ │ ├── chain.pyi │ │ │ │ ├── interactive.pyi │ │ │ │ ├── linear.pyi │ │ │ │ ├── nonlinear.pyi │ │ │ │ └── transform_system.pyi │ │ │ │ ├── tube.pyi │ │ │ │ ├── visual.pyi │ │ │ │ ├── volume.pyi │ │ │ │ ├── windbarb.pyi │ │ │ │ └── xyz_axis.pyi │ │ ├── typeshed │ │ │ ├── stdlib │ │ │ │ ├── __future__.pyi │ │ │ │ ├── __main__.pyi │ │ │ │ ├── _ast.pyi │ │ │ │ ├── _asyncio.pyi │ │ │ │ ├── _bisect.pyi │ │ │ │ ├── _blake2.pyi │ │ │ │ ├── _bootlocale.pyi │ │ │ │ ├── _bz2.pyi │ │ │ │ ├── _codecs.pyi │ │ │ │ ├── _collections_abc.pyi │ │ │ │ ├── _compat_pickle.pyi │ │ │ │ ├── _compression.pyi │ │ │ │ ├── _contextvars.pyi │ │ │ │ ├── _csv.pyi │ │ │ │ ├── _ctypes.pyi │ │ │ │ ├── _curses.pyi │ │ │ │ ├── _curses_panel.pyi │ │ │ │ ├── _dbm.pyi │ │ │ │ ├── _decimal.pyi │ │ │ │ ├── _frozen_importlib.pyi │ │ │ │ ├── _frozen_importlib_external.pyi │ │ │ │ ├── _gdbm.pyi │ │ │ │ ├── _hashlib.pyi │ │ │ │ ├── _heapq.pyi │ │ │ │ ├── _imp.pyi │ │ │ │ ├── _interpchannels.pyi │ │ │ │ ├── _interpqueues.pyi │ │ │ │ ├── _interpreters.pyi │ │ │ │ ├── _io.pyi │ │ │ │ ├── _json.pyi │ │ │ │ ├── _locale.pyi │ │ │ │ ├── _lsprof.pyi │ │ │ │ ├── _lzma.pyi │ │ │ │ ├── _markupbase.pyi │ │ │ │ ├── _msi.pyi │ │ │ │ ├── _multibytecodec.pyi │ │ │ │ ├── _operator.pyi │ │ │ │ ├── _osx_support.pyi │ │ │ │ ├── _pickle.pyi │ │ │ │ ├── _posixsubprocess.pyi │ │ │ │ ├── _py_abc.pyi │ │ │ │ ├── _pydecimal.pyi │ │ │ │ ├── _queue.pyi │ │ │ │ ├── _random.pyi │ │ │ │ ├── _sitebuiltins.pyi │ │ │ │ ├── _socket.pyi │ │ │ │ ├── _sqlite3.pyi │ │ │ │ ├── _ssl.pyi │ │ │ │ ├── _stat.pyi │ │ │ │ ├── _struct.pyi │ │ │ │ ├── _thread.pyi │ │ │ │ ├── _threading_local.pyi │ │ │ │ ├── _tkinter.pyi │ │ │ │ ├── _tracemalloc.pyi │ │ │ │ ├── _typeshed │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _type_checker_internals.pyi │ │ │ │ │ ├── dbapi.pyi │ │ │ │ │ ├── importlib.pyi │ │ │ │ │ ├── wsgi.pyi │ │ │ │ │ └── xml.pyi │ │ │ │ ├── _warnings.pyi │ │ │ │ ├── _weakref.pyi │ │ │ │ ├── _weakrefset.pyi │ │ │ │ ├── _winapi.pyi │ │ │ │ ├── _zstd.pyi │ │ │ │ ├── abc.pyi │ │ │ │ ├── aifc.pyi │ │ │ │ ├── annotationlib.pyi │ │ │ │ ├── antigravity.pyi │ │ │ │ ├── argparse.pyi │ │ │ │ ├── array.pyi │ │ │ │ ├── ast.pyi │ │ │ │ ├── asynchat.pyi │ │ │ │ ├── asyncio │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base_events.pyi │ │ │ │ │ ├── base_futures.pyi │ │ │ │ │ ├── base_subprocess.pyi │ │ │ │ │ ├── base_tasks.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── coroutines.pyi │ │ │ │ │ ├── events.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── format_helpers.pyi │ │ │ │ │ ├── futures.pyi │ │ │ │ │ ├── graph.pyi │ │ │ │ │ ├── locks.pyi │ │ │ │ │ ├── log.pyi │ │ │ │ │ ├── mixins.pyi │ │ │ │ │ ├── proactor_events.pyi │ │ │ │ │ ├── protocols.pyi │ │ │ │ │ ├── queues.pyi │ │ │ │ │ ├── runners.pyi │ │ │ │ │ ├── selector_events.pyi │ │ │ │ │ ├── sslproto.pyi │ │ │ │ │ ├── staggered.pyi │ │ │ │ │ ├── streams.pyi │ │ │ │ │ ├── subprocess.pyi │ │ │ │ │ ├── taskgroups.pyi │ │ │ │ │ ├── tasks.pyi │ │ │ │ │ ├── threads.pyi │ │ │ │ │ ├── timeouts.pyi │ │ │ │ │ ├── tools.pyi │ │ │ │ │ ├── transports.pyi │ │ │ │ │ ├── trsock.pyi │ │ │ │ │ ├── unix_events.pyi │ │ │ │ │ ├── windows_events.pyi │ │ │ │ │ └── windows_utils.pyi │ │ │ │ ├── asyncore.pyi │ │ │ │ ├── atexit.pyi │ │ │ │ ├── audioop.pyi │ │ │ │ ├── base64.pyi │ │ │ │ ├── bdb.pyi │ │ │ │ ├── binascii.pyi │ │ │ │ ├── binhex.pyi │ │ │ │ ├── bisect.pyi │ │ │ │ ├── builtins.pyi │ │ │ │ ├── bz2.pyi │ │ │ │ ├── cProfile.pyi │ │ │ │ ├── calendar.pyi │ │ │ │ ├── cgi.pyi │ │ │ │ ├── cgitb.pyi │ │ │ │ ├── chunk.pyi │ │ │ │ ├── cmath.pyi │ │ │ │ ├── cmd.pyi │ │ │ │ ├── code.pyi │ │ │ │ ├── codecs.pyi │ │ │ │ ├── codeop.pyi │ │ │ │ ├── collections │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── abc.pyi │ │ │ │ ├── colorsys.pyi │ │ │ │ ├── compileall.pyi │ │ │ │ ├── compression │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _common │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── _streams.pyi │ │ │ │ │ ├── bz2.pyi │ │ │ │ │ ├── gzip.pyi │ │ │ │ │ ├── lzma.pyi │ │ │ │ │ ├── zlib.pyi │ │ │ │ │ └── zstd │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── _zstdfile.pyi │ │ │ │ ├── concurrent │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── futures │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _base.pyi │ │ │ │ │ │ ├── interpreter.pyi │ │ │ │ │ │ ├── process.pyi │ │ │ │ │ │ └── thread.pyi │ │ │ │ │ └── interpreters │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _crossinterp.pyi │ │ │ │ │ │ └── _queues.pyi │ │ │ │ ├── configparser.pyi │ │ │ │ ├── contextlib.pyi │ │ │ │ ├── contextvars.pyi │ │ │ │ ├── copy.pyi │ │ │ │ ├── copyreg.pyi │ │ │ │ ├── crypt.pyi │ │ │ │ ├── csv.pyi │ │ │ │ ├── ctypes │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _endian.pyi │ │ │ │ │ ├── macholib │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── dyld.pyi │ │ │ │ │ │ ├── dylib.pyi │ │ │ │ │ │ └── framework.pyi │ │ │ │ │ ├── util.pyi │ │ │ │ │ └── wintypes.pyi │ │ │ │ ├── curses │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ascii.pyi │ │ │ │ │ ├── has_key.pyi │ │ │ │ │ ├── panel.pyi │ │ │ │ │ └── textpad.pyi │ │ │ │ ├── dataclasses.pyi │ │ │ │ ├── datetime.pyi │ │ │ │ ├── dbm │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── dumb.pyi │ │ │ │ │ ├── gnu.pyi │ │ │ │ │ ├── ndbm.pyi │ │ │ │ │ └── sqlite3.pyi │ │ │ │ ├── decimal.pyi │ │ │ │ ├── difflib.pyi │ │ │ │ ├── dis.pyi │ │ │ │ ├── distutils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _msvccompiler.pyi │ │ │ │ │ ├── archive_util.pyi │ │ │ │ │ ├── bcppcompiler.pyi │ │ │ │ │ ├── ccompiler.pyi │ │ │ │ │ ├── cmd.pyi │ │ │ │ │ ├── command │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── bdist.pyi │ │ │ │ │ │ ├── bdist_dumb.pyi │ │ │ │ │ │ ├── bdist_msi.pyi │ │ │ │ │ │ ├── bdist_packager.pyi │ │ │ │ │ │ ├── bdist_rpm.pyi │ │ │ │ │ │ ├── bdist_wininst.pyi │ │ │ │ │ │ ├── build.pyi │ │ │ │ │ │ ├── build_clib.pyi │ │ │ │ │ │ ├── build_ext.pyi │ │ │ │ │ │ ├── build_py.pyi │ │ │ │ │ │ ├── build_scripts.pyi │ │ │ │ │ │ ├── check.pyi │ │ │ │ │ │ ├── clean.pyi │ │ │ │ │ │ ├── config.pyi │ │ │ │ │ │ ├── install.pyi │ │ │ │ │ │ ├── install_data.pyi │ │ │ │ │ │ ├── install_egg_info.pyi │ │ │ │ │ │ ├── install_headers.pyi │ │ │ │ │ │ ├── install_lib.pyi │ │ │ │ │ │ ├── install_scripts.pyi │ │ │ │ │ │ ├── register.pyi │ │ │ │ │ │ ├── sdist.pyi │ │ │ │ │ │ └── upload.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── cygwinccompiler.pyi │ │ │ │ │ ├── debug.pyi │ │ │ │ │ ├── dep_util.pyi │ │ │ │ │ ├── dir_util.pyi │ │ │ │ │ ├── dist.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── extension.pyi │ │ │ │ │ ├── fancy_getopt.pyi │ │ │ │ │ ├── file_util.pyi │ │ │ │ │ ├── filelist.pyi │ │ │ │ │ ├── log.pyi │ │ │ │ │ ├── msvccompiler.pyi │ │ │ │ │ ├── spawn.pyi │ │ │ │ │ ├── sysconfig.pyi │ │ │ │ │ ├── text_file.pyi │ │ │ │ │ ├── unixccompiler.pyi │ │ │ │ │ ├── util.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── doctest.pyi │ │ │ │ ├── email │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _header_value_parser.pyi │ │ │ │ │ ├── _policybase.pyi │ │ │ │ │ ├── base64mime.pyi │ │ │ │ │ ├── charset.pyi │ │ │ │ │ ├── contentmanager.pyi │ │ │ │ │ ├── encoders.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── feedparser.pyi │ │ │ │ │ ├── generator.pyi │ │ │ │ │ ├── header.pyi │ │ │ │ │ ├── headerregistry.pyi │ │ │ │ │ ├── iterators.pyi │ │ │ │ │ ├── message.pyi │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── application.pyi │ │ │ │ │ │ ├── audio.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── image.pyi │ │ │ │ │ │ ├── message.pyi │ │ │ │ │ │ ├── multipart.pyi │ │ │ │ │ │ ├── nonmultipart.pyi │ │ │ │ │ │ └── text.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ ├── policy.pyi │ │ │ │ │ ├── quoprimime.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── encodings │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── aliases.pyi │ │ │ │ │ ├── ascii.pyi │ │ │ │ │ ├── base64_codec.pyi │ │ │ │ │ ├── big5.pyi │ │ │ │ │ ├── big5hkscs.pyi │ │ │ │ │ ├── bz2_codec.pyi │ │ │ │ │ ├── charmap.pyi │ │ │ │ │ ├── cp037.pyi │ │ │ │ │ ├── cp1006.pyi │ │ │ │ │ ├── cp1026.pyi │ │ │ │ │ ├── cp1125.pyi │ │ │ │ │ ├── cp1140.pyi │ │ │ │ │ ├── cp1250.pyi │ │ │ │ │ ├── cp1251.pyi │ │ │ │ │ ├── cp1252.pyi │ │ │ │ │ ├── cp1253.pyi │ │ │ │ │ ├── cp1254.pyi │ │ │ │ │ ├── cp1255.pyi │ │ │ │ │ ├── cp1256.pyi │ │ │ │ │ ├── cp1257.pyi │ │ │ │ │ ├── cp1258.pyi │ │ │ │ │ ├── cp273.pyi │ │ │ │ │ ├── cp424.pyi │ │ │ │ │ ├── cp437.pyi │ │ │ │ │ ├── cp500.pyi │ │ │ │ │ ├── cp720.pyi │ │ │ │ │ ├── cp737.pyi │ │ │ │ │ ├── cp775.pyi │ │ │ │ │ ├── cp850.pyi │ │ │ │ │ ├── cp852.pyi │ │ │ │ │ ├── cp855.pyi │ │ │ │ │ ├── cp856.pyi │ │ │ │ │ ├── cp857.pyi │ │ │ │ │ ├── cp858.pyi │ │ │ │ │ ├── cp860.pyi │ │ │ │ │ ├── cp861.pyi │ │ │ │ │ ├── cp862.pyi │ │ │ │ │ ├── cp863.pyi │ │ │ │ │ ├── cp864.pyi │ │ │ │ │ ├── cp865.pyi │ │ │ │ │ ├── cp866.pyi │ │ │ │ │ ├── cp869.pyi │ │ │ │ │ ├── cp874.pyi │ │ │ │ │ ├── cp875.pyi │ │ │ │ │ ├── cp932.pyi │ │ │ │ │ ├── cp949.pyi │ │ │ │ │ ├── cp950.pyi │ │ │ │ │ ├── euc_jis_2004.pyi │ │ │ │ │ ├── euc_jisx0213.pyi │ │ │ │ │ ├── euc_jp.pyi │ │ │ │ │ ├── euc_kr.pyi │ │ │ │ │ ├── gb18030.pyi │ │ │ │ │ ├── gb2312.pyi │ │ │ │ │ ├── gbk.pyi │ │ │ │ │ ├── hex_codec.pyi │ │ │ │ │ ├── hp_roman8.pyi │ │ │ │ │ ├── hz.pyi │ │ │ │ │ ├── idna.pyi │ │ │ │ │ ├── iso2022_jp.pyi │ │ │ │ │ ├── iso2022_jp_1.pyi │ │ │ │ │ ├── iso2022_jp_2.pyi │ │ │ │ │ ├── iso2022_jp_2004.pyi │ │ │ │ │ ├── iso2022_jp_3.pyi │ │ │ │ │ ├── iso2022_jp_ext.pyi │ │ │ │ │ ├── iso2022_kr.pyi │ │ │ │ │ ├── iso8859_1.pyi │ │ │ │ │ ├── iso8859_10.pyi │ │ │ │ │ ├── iso8859_11.pyi │ │ │ │ │ ├── iso8859_13.pyi │ │ │ │ │ ├── iso8859_14.pyi │ │ │ │ │ ├── iso8859_15.pyi │ │ │ │ │ ├── iso8859_16.pyi │ │ │ │ │ ├── iso8859_2.pyi │ │ │ │ │ ├── iso8859_3.pyi │ │ │ │ │ ├── iso8859_4.pyi │ │ │ │ │ ├── iso8859_5.pyi │ │ │ │ │ ├── iso8859_6.pyi │ │ │ │ │ ├── iso8859_7.pyi │ │ │ │ │ ├── iso8859_8.pyi │ │ │ │ │ ├── iso8859_9.pyi │ │ │ │ │ ├── johab.pyi │ │ │ │ │ ├── koi8_r.pyi │ │ │ │ │ ├── koi8_t.pyi │ │ │ │ │ ├── koi8_u.pyi │ │ │ │ │ ├── kz1048.pyi │ │ │ │ │ ├── latin_1.pyi │ │ │ │ │ ├── mac_arabic.pyi │ │ │ │ │ ├── mac_croatian.pyi │ │ │ │ │ ├── mac_cyrillic.pyi │ │ │ │ │ ├── mac_farsi.pyi │ │ │ │ │ ├── mac_greek.pyi │ │ │ │ │ ├── mac_iceland.pyi │ │ │ │ │ ├── mac_latin2.pyi │ │ │ │ │ ├── mac_roman.pyi │ │ │ │ │ ├── mac_romanian.pyi │ │ │ │ │ ├── mac_turkish.pyi │ │ │ │ │ ├── mbcs.pyi │ │ │ │ │ ├── oem.pyi │ │ │ │ │ ├── palmos.pyi │ │ │ │ │ ├── ptcp154.pyi │ │ │ │ │ ├── punycode.pyi │ │ │ │ │ ├── quopri_codec.pyi │ │ │ │ │ ├── raw_unicode_escape.pyi │ │ │ │ │ ├── rot_13.pyi │ │ │ │ │ ├── shift_jis.pyi │ │ │ │ │ ├── shift_jis_2004.pyi │ │ │ │ │ ├── shift_jisx0213.pyi │ │ │ │ │ ├── tis_620.pyi │ │ │ │ │ ├── undefined.pyi │ │ │ │ │ ├── unicode_escape.pyi │ │ │ │ │ ├── utf_16.pyi │ │ │ │ │ ├── utf_16_be.pyi │ │ │ │ │ ├── utf_16_le.pyi │ │ │ │ │ ├── utf_32.pyi │ │ │ │ │ ├── utf_32_be.pyi │ │ │ │ │ ├── utf_32_le.pyi │ │ │ │ │ ├── utf_7.pyi │ │ │ │ │ ├── utf_8.pyi │ │ │ │ │ ├── utf_8_sig.pyi │ │ │ │ │ ├── uu_codec.pyi │ │ │ │ │ └── zlib_codec.pyi │ │ │ │ ├── ensurepip │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── enum.pyi │ │ │ │ ├── errno.pyi │ │ │ │ ├── faulthandler.pyi │ │ │ │ ├── fcntl.pyi │ │ │ │ ├── filecmp.pyi │ │ │ │ ├── fileinput.pyi │ │ │ │ ├── fnmatch.pyi │ │ │ │ ├── formatter.pyi │ │ │ │ ├── fractions.pyi │ │ │ │ ├── ftplib.pyi │ │ │ │ ├── functools.pyi │ │ │ │ ├── gc.pyi │ │ │ │ ├── genericpath.pyi │ │ │ │ ├── getopt.pyi │ │ │ │ ├── getpass.pyi │ │ │ │ ├── gettext.pyi │ │ │ │ ├── glob.pyi │ │ │ │ ├── graphlib.pyi │ │ │ │ ├── grp.pyi │ │ │ │ ├── gzip.pyi │ │ │ │ ├── hashlib.pyi │ │ │ │ ├── heapq.pyi │ │ │ │ ├── hmac.pyi │ │ │ │ ├── html │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── entities.pyi │ │ │ │ │ └── parser.pyi │ │ │ │ ├── http │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── cookiejar.pyi │ │ │ │ │ ├── cookies.pyi │ │ │ │ │ └── server.pyi │ │ │ │ ├── imaplib.pyi │ │ │ │ ├── imghdr.pyi │ │ │ │ ├── imp.pyi │ │ │ │ ├── importlib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _abc.pyi │ │ │ │ │ ├── _bootstrap.pyi │ │ │ │ │ ├── _bootstrap_external.pyi │ │ │ │ │ ├── abc.pyi │ │ │ │ │ ├── machinery.pyi │ │ │ │ │ ├── metadata │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _meta.pyi │ │ │ │ │ │ └── diagnose.pyi │ │ │ │ │ ├── readers.pyi │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _common.pyi │ │ │ │ │ │ ├── _functional.pyi │ │ │ │ │ │ ├── abc.pyi │ │ │ │ │ │ ├── readers.pyi │ │ │ │ │ │ └── simple.pyi │ │ │ │ │ ├── simple.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── inspect.pyi │ │ │ │ ├── io.pyi │ │ │ │ ├── ipaddress.pyi │ │ │ │ ├── itertools.pyi │ │ │ │ ├── json │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ ├── encoder.pyi │ │ │ │ │ ├── scanner.pyi │ │ │ │ │ └── tool.pyi │ │ │ │ ├── keyword.pyi │ │ │ │ ├── lib2to3 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── btm_matcher.pyi │ │ │ │ │ ├── fixer_base.pyi │ │ │ │ │ ├── fixes │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── fix_apply.pyi │ │ │ │ │ │ ├── fix_asserts.pyi │ │ │ │ │ │ ├── fix_basestring.pyi │ │ │ │ │ │ ├── fix_buffer.pyi │ │ │ │ │ │ ├── fix_dict.pyi │ │ │ │ │ │ ├── fix_except.pyi │ │ │ │ │ │ ├── fix_exec.pyi │ │ │ │ │ │ ├── fix_execfile.pyi │ │ │ │ │ │ ├── fix_exitfunc.pyi │ │ │ │ │ │ ├── fix_filter.pyi │ │ │ │ │ │ ├── fix_funcattrs.pyi │ │ │ │ │ │ ├── fix_future.pyi │ │ │ │ │ │ ├── fix_getcwdu.pyi │ │ │ │ │ │ ├── fix_has_key.pyi │ │ │ │ │ │ ├── fix_idioms.pyi │ │ │ │ │ │ ├── fix_import.pyi │ │ │ │ │ │ ├── fix_imports.pyi │ │ │ │ │ │ ├── fix_imports2.pyi │ │ │ │ │ │ ├── fix_input.pyi │ │ │ │ │ │ ├── fix_intern.pyi │ │ │ │ │ │ ├── fix_isinstance.pyi │ │ │ │ │ │ ├── fix_itertools.pyi │ │ │ │ │ │ ├── fix_itertools_imports.pyi │ │ │ │ │ │ ├── fix_long.pyi │ │ │ │ │ │ ├── fix_map.pyi │ │ │ │ │ │ ├── fix_metaclass.pyi │ │ │ │ │ │ ├── fix_methodattrs.pyi │ │ │ │ │ │ ├── fix_ne.pyi │ │ │ │ │ │ ├── fix_next.pyi │ │ │ │ │ │ ├── fix_nonzero.pyi │ │ │ │ │ │ ├── fix_numliterals.pyi │ │ │ │ │ │ ├── fix_operator.pyi │ │ │ │ │ │ ├── fix_paren.pyi │ │ │ │ │ │ ├── fix_print.pyi │ │ │ │ │ │ ├── fix_raise.pyi │ │ │ │ │ │ ├── fix_raw_input.pyi │ │ │ │ │ │ ├── fix_reduce.pyi │ │ │ │ │ │ ├── fix_reload.pyi │ │ │ │ │ │ ├── fix_renames.pyi │ │ │ │ │ │ ├── fix_repr.pyi │ │ │ │ │ │ ├── fix_set_literal.pyi │ │ │ │ │ │ ├── fix_standarderror.pyi │ │ │ │ │ │ ├── fix_sys_exc.pyi │ │ │ │ │ │ ├── fix_throw.pyi │ │ │ │ │ │ ├── fix_tuple_params.pyi │ │ │ │ │ │ ├── fix_types.pyi │ │ │ │ │ │ ├── fix_unicode.pyi │ │ │ │ │ │ ├── fix_urllib.pyi │ │ │ │ │ │ ├── fix_ws_comma.pyi │ │ │ │ │ │ ├── fix_xrange.pyi │ │ │ │ │ │ ├── fix_xreadlines.pyi │ │ │ │ │ │ └── fix_zip.pyi │ │ │ │ │ ├── main.pyi │ │ │ │ │ ├── pgen2 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── driver.pyi │ │ │ │ │ │ ├── grammar.pyi │ │ │ │ │ │ ├── literals.pyi │ │ │ │ │ │ ├── parse.pyi │ │ │ │ │ │ ├── pgen.pyi │ │ │ │ │ │ ├── token.pyi │ │ │ │ │ │ └── tokenize.pyi │ │ │ │ │ ├── pygram.pyi │ │ │ │ │ ├── pytree.pyi │ │ │ │ │ └── refactor.pyi │ │ │ │ ├── linecache.pyi │ │ │ │ ├── locale.pyi │ │ │ │ ├── logging │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ └── handlers.pyi │ │ │ │ ├── lzma.pyi │ │ │ │ ├── mailbox.pyi │ │ │ │ ├── mailcap.pyi │ │ │ │ ├── marshal.pyi │ │ │ │ ├── math.pyi │ │ │ │ ├── mimetypes.pyi │ │ │ │ ├── mmap.pyi │ │ │ │ ├── modulefinder.pyi │ │ │ │ ├── msilib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── schema.pyi │ │ │ │ │ ├── sequence.pyi │ │ │ │ │ └── text.pyi │ │ │ │ ├── msvcrt.pyi │ │ │ │ ├── multiprocessing │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── connection.pyi │ │ │ │ │ ├── context.pyi │ │ │ │ │ ├── dummy │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── connection.pyi │ │ │ │ │ ├── forkserver.pyi │ │ │ │ │ ├── heap.pyi │ │ │ │ │ ├── managers.pyi │ │ │ │ │ ├── pool.pyi │ │ │ │ │ ├── popen_fork.pyi │ │ │ │ │ ├── popen_forkserver.pyi │ │ │ │ │ ├── popen_spawn_posix.pyi │ │ │ │ │ ├── popen_spawn_win32.pyi │ │ │ │ │ ├── process.pyi │ │ │ │ │ ├── queues.pyi │ │ │ │ │ ├── reduction.pyi │ │ │ │ │ ├── resource_sharer.pyi │ │ │ │ │ ├── resource_tracker.pyi │ │ │ │ │ ├── shared_memory.pyi │ │ │ │ │ ├── sharedctypes.pyi │ │ │ │ │ ├── spawn.pyi │ │ │ │ │ ├── synchronize.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── netrc.pyi │ │ │ │ ├── nis.pyi │ │ │ │ ├── nntplib.pyi │ │ │ │ ├── nt.pyi │ │ │ │ ├── ntpath.pyi │ │ │ │ ├── nturl2path.pyi │ │ │ │ ├── numbers.pyi │ │ │ │ ├── opcode.pyi │ │ │ │ ├── operator.pyi │ │ │ │ ├── optparse.pyi │ │ │ │ ├── os │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── path.pyi │ │ │ │ ├── ossaudiodev.pyi │ │ │ │ ├── parser.pyi │ │ │ │ ├── pathlib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── types.pyi │ │ │ │ ├── pdb.pyi │ │ │ │ ├── pickle.pyi │ │ │ │ ├── pickletools.pyi │ │ │ │ ├── pipes.pyi │ │ │ │ ├── pkgutil.pyi │ │ │ │ ├── platform.pyi │ │ │ │ ├── plistlib.pyi │ │ │ │ ├── poplib.pyi │ │ │ │ ├── posix.pyi │ │ │ │ ├── posixpath.pyi │ │ │ │ ├── pprint.pyi │ │ │ │ ├── profile.pyi │ │ │ │ ├── pstats.pyi │ │ │ │ ├── pty.pyi │ │ │ │ ├── pwd.pyi │ │ │ │ ├── py_compile.pyi │ │ │ │ ├── pyclbr.pyi │ │ │ │ ├── pydoc.pyi │ │ │ │ ├── pydoc_data │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── topics.pyi │ │ │ │ ├── pyexpat │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ └── model.pyi │ │ │ │ ├── queue.pyi │ │ │ │ ├── quopri.pyi │ │ │ │ ├── random.pyi │ │ │ │ ├── re.pyi │ │ │ │ ├── readline.pyi │ │ │ │ ├── reprlib.pyi │ │ │ │ ├── resource.pyi │ │ │ │ ├── rlcompleter.pyi │ │ │ │ ├── runpy.pyi │ │ │ │ ├── sched.pyi │ │ │ │ ├── secrets.pyi │ │ │ │ ├── select.pyi │ │ │ │ ├── selectors.pyi │ │ │ │ ├── shelve.pyi │ │ │ │ ├── shlex.pyi │ │ │ │ ├── shutil.pyi │ │ │ │ ├── signal.pyi │ │ │ │ ├── site.pyi │ │ │ │ ├── smtpd.pyi │ │ │ │ ├── smtplib.pyi │ │ │ │ ├── sndhdr.pyi │ │ │ │ ├── socket.pyi │ │ │ │ ├── socketserver.pyi │ │ │ │ ├── spwd.pyi │ │ │ │ ├── sqlite3 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── dbapi2.pyi │ │ │ │ │ └── dump.pyi │ │ │ │ ├── sre_compile.pyi │ │ │ │ ├── sre_constants.pyi │ │ │ │ ├── sre_parse.pyi │ │ │ │ ├── ssl.pyi │ │ │ │ ├── stat.pyi │ │ │ │ ├── statistics.pyi │ │ │ │ ├── string │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── templatelib.pyi │ │ │ │ ├── stringprep.pyi │ │ │ │ ├── struct.pyi │ │ │ │ ├── subprocess.pyi │ │ │ │ ├── sunau.pyi │ │ │ │ ├── symbol.pyi │ │ │ │ ├── symtable.pyi │ │ │ │ ├── sys │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── _monitoring.pyi │ │ │ │ ├── sysconfig.pyi │ │ │ │ ├── syslog.pyi │ │ │ │ ├── tabnanny.pyi │ │ │ │ ├── tarfile.pyi │ │ │ │ ├── telnetlib.pyi │ │ │ │ ├── tempfile.pyi │ │ │ │ ├── termios.pyi │ │ │ │ ├── textwrap.pyi │ │ │ │ ├── this.pyi │ │ │ │ ├── threading.pyi │ │ │ │ ├── time.pyi │ │ │ │ ├── timeit.pyi │ │ │ │ ├── tkinter │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── colorchooser.pyi │ │ │ │ │ ├── commondialog.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── dialog.pyi │ │ │ │ │ ├── dnd.pyi │ │ │ │ │ ├── filedialog.pyi │ │ │ │ │ ├── font.pyi │ │ │ │ │ ├── messagebox.pyi │ │ │ │ │ ├── scrolledtext.pyi │ │ │ │ │ ├── simpledialog.pyi │ │ │ │ │ ├── tix.pyi │ │ │ │ │ └── ttk.pyi │ │ │ │ ├── token.pyi │ │ │ │ ├── tokenize.pyi │ │ │ │ ├── tomllib.pyi │ │ │ │ ├── trace.pyi │ │ │ │ ├── traceback.pyi │ │ │ │ ├── tracemalloc.pyi │ │ │ │ ├── tty.pyi │ │ │ │ ├── turtle.pyi │ │ │ │ ├── types.pyi │ │ │ │ ├── typing.pyi │ │ │ │ ├── typing_extensions.pyi │ │ │ │ ├── unicodedata.pyi │ │ │ │ ├── unittest │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _log.pyi │ │ │ │ │ ├── async_case.pyi │ │ │ │ │ ├── case.pyi │ │ │ │ │ ├── loader.pyi │ │ │ │ │ ├── main.pyi │ │ │ │ │ ├── mock.pyi │ │ │ │ │ ├── result.pyi │ │ │ │ │ ├── runner.pyi │ │ │ │ │ ├── signals.pyi │ │ │ │ │ ├── suite.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── urllib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── error.pyi │ │ │ │ │ ├── parse.pyi │ │ │ │ │ ├── request.pyi │ │ │ │ │ ├── response.pyi │ │ │ │ │ └── robotparser.pyi │ │ │ │ ├── uu.pyi │ │ │ │ ├── uuid.pyi │ │ │ │ ├── venv │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── warnings.pyi │ │ │ │ ├── wave.pyi │ │ │ │ ├── weakref.pyi │ │ │ │ ├── webbrowser.pyi │ │ │ │ ├── winreg.pyi │ │ │ │ ├── winsound.pyi │ │ │ │ ├── wsgiref │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── handlers.pyi │ │ │ │ │ ├── headers.pyi │ │ │ │ │ ├── simple_server.pyi │ │ │ │ │ ├── types.pyi │ │ │ │ │ ├── util.pyi │ │ │ │ │ └── validate.pyi │ │ │ │ ├── xdrlib.pyi │ │ │ │ ├── xml │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── dom │ │ │ │ │ │ ├── NodeFilter.pyi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── domreg.pyi │ │ │ │ │ │ ├── expatbuilder.pyi │ │ │ │ │ │ ├── minicompat.pyi │ │ │ │ │ │ ├── minidom.pyi │ │ │ │ │ │ ├── pulldom.pyi │ │ │ │ │ │ └── xmlbuilder.pyi │ │ │ │ │ ├── etree │ │ │ │ │ │ ├── ElementInclude.pyi │ │ │ │ │ │ ├── ElementPath.pyi │ │ │ │ │ │ ├── ElementTree.pyi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── cElementTree.pyi │ │ │ │ │ ├── parsers │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── expat │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ │ └── model.pyi │ │ │ │ │ └── sax │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _exceptions.pyi │ │ │ │ │ │ ├── expatreader.pyi │ │ │ │ │ │ ├── handler.pyi │ │ │ │ │ │ ├── saxutils.pyi │ │ │ │ │ │ └── xmlreader.pyi │ │ │ │ ├── xmlrpc │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ └── server.pyi │ │ │ │ ├── xxlimited.pyi │ │ │ │ ├── zipapp.pyi │ │ │ │ ├── zipfile │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── _path │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── glob.pyi │ │ │ │ ├── zipimport.pyi │ │ │ │ ├── zlib.pyi │ │ │ │ └── zoneinfo │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _common.pyi │ │ │ │ │ └── _tzpath.pyi │ │ │ └── stubs │ │ │ │ ├── Authlib │ │ │ │ └── authlib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── common │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── encoding.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── security.pyi │ │ │ │ │ └── urls.pyi │ │ │ │ │ ├── consts.pyi │ │ │ │ │ ├── deprecate.pyi │ │ │ │ │ ├── integrations │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── base_client │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── async_app.pyi │ │ │ │ │ │ ├── async_openid.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ ├── framework_integration.pyi │ │ │ │ │ │ ├── registry.pyi │ │ │ │ │ │ ├── sync_app.pyi │ │ │ │ │ │ └── sync_openid.pyi │ │ │ │ │ ├── jose │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── drafts │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _jwe_algorithms.pyi │ │ │ │ │ │ ├── _jwe_enc_cryptodome.pyi │ │ │ │ │ │ └── _jwe_enc_cryptography.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── jwk.pyi │ │ │ │ │ ├── rfc7515 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── jws.pyi │ │ │ │ │ │ └── models.pyi │ │ │ │ │ ├── rfc7516 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── jwe.pyi │ │ │ │ │ │ └── models.pyi │ │ │ │ │ ├── rfc7517 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _cryptography_key.pyi │ │ │ │ │ │ ├── asymmetric_key.pyi │ │ │ │ │ │ ├── base_key.pyi │ │ │ │ │ │ ├── jwk.pyi │ │ │ │ │ │ └── key_set.pyi │ │ │ │ │ ├── rfc7518 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── ec_key.pyi │ │ │ │ │ │ ├── jwe_algs.pyi │ │ │ │ │ │ ├── jwe_encs.pyi │ │ │ │ │ │ ├── jwe_zips.pyi │ │ │ │ │ │ ├── jws_algs.pyi │ │ │ │ │ │ ├── oct_key.pyi │ │ │ │ │ │ ├── rsa_key.pyi │ │ │ │ │ │ └── util.pyi │ │ │ │ │ ├── rfc7519 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── claims.pyi │ │ │ │ │ │ └── jwt.pyi │ │ │ │ │ ├── rfc8037 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── jws_eddsa.pyi │ │ │ │ │ │ └── okp_key.pyi │ │ │ │ │ └── util.pyi │ │ │ │ │ ├── oauth1 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ └── rfc5849 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── authorization_server.pyi │ │ │ │ │ │ ├── base_server.pyi │ │ │ │ │ │ ├── client_auth.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ │ ├── resource_protector.pyi │ │ │ │ │ │ ├── rsa.pyi │ │ │ │ │ │ ├── signature.pyi │ │ │ │ │ │ ├── util.pyi │ │ │ │ │ │ └── wrapper.pyi │ │ │ │ │ ├── oauth2 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── auth.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── rfc6749 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── authenticate_client.pyi │ │ │ │ │ │ ├── authorization_server.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ ├── grants │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── authorization_code.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── client_credentials.pyi │ │ │ │ │ │ │ ├── implicit.pyi │ │ │ │ │ │ │ ├── refresh_token.pyi │ │ │ │ │ │ │ └── resource_owner_password_credentials.pyi │ │ │ │ │ │ ├── hooks.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ │ ├── requests.pyi │ │ │ │ │ │ ├── resource_protector.pyi │ │ │ │ │ │ ├── token_endpoint.pyi │ │ │ │ │ │ ├── util.pyi │ │ │ │ │ │ └── wrappers.pyi │ │ │ │ │ ├── rfc6750 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ │ ├── token.pyi │ │ │ │ │ │ └── validator.pyi │ │ │ │ │ ├── rfc7009 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ │ └── revocation.pyi │ │ │ │ │ ├── rfc7521 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── client.pyi │ │ │ │ │ ├── rfc7523 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── assertion.pyi │ │ │ │ │ │ ├── auth.pyi │ │ │ │ │ │ ├── client.pyi │ │ │ │ │ │ ├── jwt_bearer.pyi │ │ │ │ │ │ ├── token.pyi │ │ │ │ │ │ └── validator.pyi │ │ │ │ │ ├── rfc7591 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── claims.pyi │ │ │ │ │ │ ├── endpoint.pyi │ │ │ │ │ │ └── errors.pyi │ │ │ │ │ ├── rfc7592 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── endpoint.pyi │ │ │ │ │ ├── rfc7636 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── challenge.pyi │ │ │ │ │ ├── rfc7662 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ └── token_validator.pyi │ │ │ │ │ ├── rfc8414 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ └── well_known.pyi │ │ │ │ │ ├── rfc8628 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── device_code.pyi │ │ │ │ │ │ ├── endpoint.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ └── models.pyi │ │ │ │ │ ├── rfc8693 │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── rfc9068 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── claims.pyi │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ ├── revocation.pyi │ │ │ │ │ │ ├── token.pyi │ │ │ │ │ │ └── token_validator.pyi │ │ │ │ │ ├── rfc9101 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── authorization_server.pyi │ │ │ │ │ │ ├── discovery.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ └── registration.pyi │ │ │ │ │ └── rfc9207 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── parameter.pyi │ │ │ │ │ └── oidc │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── core │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── claims.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── grants │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── code.pyi │ │ │ │ │ │ ├── hybrid.pyi │ │ │ │ │ │ ├── implicit.pyi │ │ │ │ │ │ └── util.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ ├── userinfo.pyi │ │ │ │ │ └── util.pyi │ │ │ │ │ ├── discovery │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ └── well_known.pyi │ │ │ │ │ └── registration │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── claims.pyi │ │ │ │ ├── Deprecated │ │ │ │ └── deprecated │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── classic.pyi │ │ │ │ │ ├── params.pyi │ │ │ │ │ └── sphinx.pyi │ │ │ │ ├── Flask-Cors │ │ │ │ └── flask_cors │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── decorator.pyi │ │ │ │ │ ├── extension.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── Flask-Migrate │ │ │ │ └── flask_migrate │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── Flask-SocketIO │ │ │ │ └── flask_socketio │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── namespace.pyi │ │ │ │ │ └── test_client.pyi │ │ │ │ ├── JACK-Client │ │ │ │ └── jack │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── Jetson.GPIO │ │ │ │ └── Jetson │ │ │ │ │ ├── GPIO │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── gpio.pyi │ │ │ │ │ ├── gpio_cdev.pyi │ │ │ │ │ ├── gpio_event.pyi │ │ │ │ │ ├── gpio_pin_data.pyi │ │ │ │ │ └── gpio_pinmux_lookup.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── Markdown │ │ │ │ └── markdown │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── __main__.pyi │ │ │ │ │ ├── __meta__.pyi │ │ │ │ │ ├── blockparser.pyi │ │ │ │ │ ├── blockprocessors.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── extensions │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── abbr.pyi │ │ │ │ │ ├── admonition.pyi │ │ │ │ │ ├── attr_list.pyi │ │ │ │ │ ├── codehilite.pyi │ │ │ │ │ ├── def_list.pyi │ │ │ │ │ ├── extra.pyi │ │ │ │ │ ├── fenced_code.pyi │ │ │ │ │ ├── footnotes.pyi │ │ │ │ │ ├── legacy_attrs.pyi │ │ │ │ │ ├── legacy_em.pyi │ │ │ │ │ ├── md_in_html.pyi │ │ │ │ │ ├── meta.pyi │ │ │ │ │ ├── nl2br.pyi │ │ │ │ │ ├── sane_lists.pyi │ │ │ │ │ ├── smarty.pyi │ │ │ │ │ ├── tables.pyi │ │ │ │ │ ├── toc.pyi │ │ │ │ │ └── wikilinks.pyi │ │ │ │ │ ├── htmlparser.pyi │ │ │ │ │ ├── inlinepatterns.pyi │ │ │ │ │ ├── postprocessors.pyi │ │ │ │ │ ├── preprocessors.pyi │ │ │ │ │ ├── serializers.pyi │ │ │ │ │ ├── test_tools.pyi │ │ │ │ │ ├── treeprocessors.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── PyAutoGUI │ │ │ │ └── pyautogui │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── PyMeeus │ │ │ │ └── pymeeus │ │ │ │ │ ├── Angle.pyi │ │ │ │ │ ├── Coordinates.pyi │ │ │ │ │ ├── CurveFitting.pyi │ │ │ │ │ ├── Earth.pyi │ │ │ │ │ ├── Epoch.pyi │ │ │ │ │ ├── Interpolation.pyi │ │ │ │ │ ├── Jupiter.pyi │ │ │ │ │ ├── JupiterMoons.pyi │ │ │ │ │ ├── Mars.pyi │ │ │ │ │ ├── Mercury.pyi │ │ │ │ │ ├── Minor.pyi │ │ │ │ │ ├── Moon.pyi │ │ │ │ │ ├── Neptune.pyi │ │ │ │ │ ├── Pluto.pyi │ │ │ │ │ ├── Saturn.pyi │ │ │ │ │ ├── Sun.pyi │ │ │ │ │ ├── Uranus.pyi │ │ │ │ │ ├── Venus.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── base.pyi │ │ │ │ ├── PyMySQL │ │ │ │ └── pymysql │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _auth.pyi │ │ │ │ │ ├── charset.pyi │ │ │ │ │ ├── connections.pyi │ │ │ │ │ ├── constants │ │ │ │ │ ├── CLIENT.pyi │ │ │ │ │ ├── COMMAND.pyi │ │ │ │ │ ├── CR.pyi │ │ │ │ │ ├── ER.pyi │ │ │ │ │ ├── FIELD_TYPE.pyi │ │ │ │ │ ├── FLAG.pyi │ │ │ │ │ ├── SERVER_STATUS.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── converters.pyi │ │ │ │ │ ├── cursors.pyi │ │ │ │ │ ├── err.pyi │ │ │ │ │ ├── optionfile.pyi │ │ │ │ │ ├── protocol.pyi │ │ │ │ │ └── times.pyi │ │ │ │ ├── PyScreeze │ │ │ │ └── pyscreeze │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── PySocks │ │ │ │ ├── socks.pyi │ │ │ │ └── sockshandler.pyi │ │ │ │ ├── PyYAML │ │ │ │ └── yaml │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _yaml.pyi │ │ │ │ │ ├── composer.pyi │ │ │ │ │ ├── constructor.pyi │ │ │ │ │ ├── cyaml.pyi │ │ │ │ │ ├── dumper.pyi │ │ │ │ │ ├── emitter.pyi │ │ │ │ │ ├── error.pyi │ │ │ │ │ ├── events.pyi │ │ │ │ │ ├── loader.pyi │ │ │ │ │ ├── nodes.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ ├── reader.pyi │ │ │ │ │ ├── representer.pyi │ │ │ │ │ ├── resolver.pyi │ │ │ │ │ ├── scanner.pyi │ │ │ │ │ ├── serializer.pyi │ │ │ │ │ └── tokens.pyi │ │ │ │ ├── Pygments │ │ │ │ └── pygments │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cmdline.pyi │ │ │ │ │ ├── console.pyi │ │ │ │ │ ├── filter.pyi │ │ │ │ │ ├── filters │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── formatter.pyi │ │ │ │ │ ├── formatters │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _mapping.pyi │ │ │ │ │ ├── bbcode.pyi │ │ │ │ │ ├── html.pyi │ │ │ │ │ ├── img.pyi │ │ │ │ │ ├── irc.pyi │ │ │ │ │ ├── latex.pyi │ │ │ │ │ ├── other.pyi │ │ │ │ │ ├── pangomarkup.pyi │ │ │ │ │ ├── rtf.pyi │ │ │ │ │ ├── svg.pyi │ │ │ │ │ ├── terminal.pyi │ │ │ │ │ └── terminal256.pyi │ │ │ │ │ ├── lexer.pyi │ │ │ │ │ ├── lexers │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── javascript.pyi │ │ │ │ │ ├── jsx.pyi │ │ │ │ │ ├── kusto.pyi │ │ │ │ │ ├── ldap.pyi │ │ │ │ │ ├── lean.pyi │ │ │ │ │ ├── lisp.pyi │ │ │ │ │ ├── prql.pyi │ │ │ │ │ ├── vip.pyi │ │ │ │ │ └── vyper.pyi │ │ │ │ │ ├── modeline.pyi │ │ │ │ │ ├── plugin.pyi │ │ │ │ │ ├── regexopt.pyi │ │ │ │ │ ├── scanner.pyi │ │ │ │ │ ├── sphinxext.pyi │ │ │ │ │ ├── style.pyi │ │ │ │ │ ├── styles │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── token.pyi │ │ │ │ │ ├── unistring.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── RPi.GPIO │ │ │ │ └── RPi │ │ │ │ │ ├── GPIO │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── Send2Trash │ │ │ │ └── send2trash │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── __main__.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── TgCrypto │ │ │ │ └── tgcrypto │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── WTForms │ │ │ │ └── wtforms │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── csrf │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ └── session.pyi │ │ │ │ │ ├── fields │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── choices.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── datetime.pyi │ │ │ │ │ ├── form.pyi │ │ │ │ │ ├── list.pyi │ │ │ │ │ ├── numeric.pyi │ │ │ │ │ └── simple.pyi │ │ │ │ │ ├── form.pyi │ │ │ │ │ ├── i18n.pyi │ │ │ │ │ ├── meta.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ ├── validators.pyi │ │ │ │ │ └── widgets │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── core.pyi │ │ │ │ ├── WebOb │ │ │ │ └── webob │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _types.pyi │ │ │ │ │ ├── acceptparse.pyi │ │ │ │ │ ├── byterange.pyi │ │ │ │ │ ├── cachecontrol.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── compat.pyi │ │ │ │ │ ├── cookies.pyi │ │ │ │ │ ├── datetime_utils.pyi │ │ │ │ │ ├── dec.pyi │ │ │ │ │ ├── descriptors.pyi │ │ │ │ │ ├── etag.pyi │ │ │ │ │ ├── exc.pyi │ │ │ │ │ ├── headers.pyi │ │ │ │ │ ├── multidict.pyi │ │ │ │ │ ├── request.pyi │ │ │ │ │ ├── response.pyi │ │ │ │ │ ├── static.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── aiofiles │ │ │ │ └── aiofiles │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── os.pyi │ │ │ │ │ ├── ospath.pyi │ │ │ │ │ ├── tempfile │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── temptypes.pyi │ │ │ │ │ └── threadpool │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── binary.pyi │ │ │ │ │ ├── text.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── antlr4-python3-runtime │ │ │ │ └── antlr4 │ │ │ │ │ ├── BufferedTokenStream.pyi │ │ │ │ │ ├── CommonTokenFactory.pyi │ │ │ │ │ ├── CommonTokenStream.pyi │ │ │ │ │ ├── FileStream.pyi │ │ │ │ │ ├── InputStream.pyi │ │ │ │ │ ├── IntervalSet.pyi │ │ │ │ │ ├── LL1Analyzer.pyi │ │ │ │ │ ├── Lexer.pyi │ │ │ │ │ ├── ListTokenSource.pyi │ │ │ │ │ ├── Parser.pyi │ │ │ │ │ ├── ParserInterpreter.pyi │ │ │ │ │ ├── ParserRuleContext.pyi │ │ │ │ │ ├── PredictionContext.pyi │ │ │ │ │ ├── Recognizer.pyi │ │ │ │ │ ├── RuleContext.pyi │ │ │ │ │ ├── StdinStream.pyi │ │ │ │ │ ├── Token.pyi │ │ │ │ │ ├── TokenStreamRewriter.pyi │ │ │ │ │ ├── Utils.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _pygrun.pyi │ │ │ │ │ ├── atn │ │ │ │ │ ├── ATN.pyi │ │ │ │ │ ├── ATNConfig.pyi │ │ │ │ │ ├── ATNConfigSet.pyi │ │ │ │ │ ├── ATNDeserializationOptions.pyi │ │ │ │ │ ├── ATNDeserializer.pyi │ │ │ │ │ ├── ATNSimulator.pyi │ │ │ │ │ ├── ATNState.pyi │ │ │ │ │ ├── ATNType.pyi │ │ │ │ │ ├── LexerATNSimulator.pyi │ │ │ │ │ ├── LexerAction.pyi │ │ │ │ │ ├── LexerActionExecutor.pyi │ │ │ │ │ ├── ParserATNSimulator.pyi │ │ │ │ │ ├── PredictionMode.pyi │ │ │ │ │ ├── SemanticContext.pyi │ │ │ │ │ ├── Transition.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── dfa │ │ │ │ │ ├── DFA.pyi │ │ │ │ │ ├── DFASerializer.pyi │ │ │ │ │ ├── DFAState.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── error │ │ │ │ │ ├── DiagnosticErrorListener.pyi │ │ │ │ │ ├── ErrorListener.pyi │ │ │ │ │ ├── ErrorStrategy.pyi │ │ │ │ │ ├── Errors.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── tree │ │ │ │ │ ├── Chunk.pyi │ │ │ │ │ ├── ParseTreeMatch.pyi │ │ │ │ │ ├── ParseTreePattern.pyi │ │ │ │ │ ├── ParseTreePatternMatcher.pyi │ │ │ │ │ ├── RuleTagToken.pyi │ │ │ │ │ ├── TokenTagToken.pyi │ │ │ │ │ ├── Tree.pyi │ │ │ │ │ ├── Trees.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── xpath │ │ │ │ │ ├── XPath.pyi │ │ │ │ │ ├── XPathLexer.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── assertpy │ │ │ │ └── assertpy │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── assertpy.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── collection.pyi │ │ │ │ │ ├── contains.pyi │ │ │ │ │ ├── date.pyi │ │ │ │ │ ├── dict.pyi │ │ │ │ │ ├── dynamic.pyi │ │ │ │ │ ├── exception.pyi │ │ │ │ │ ├── extracting.pyi │ │ │ │ │ ├── file.pyi │ │ │ │ │ ├── helpers.pyi │ │ │ │ │ ├── numeric.pyi │ │ │ │ │ ├── snapshot.pyi │ │ │ │ │ └── string.pyi │ │ │ │ ├── auth0-python │ │ │ │ └── auth0 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── asyncify.pyi │ │ │ │ │ ├── authentication │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── async_token_verifier.pyi │ │ │ │ │ ├── back_channel_login.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── client_authentication.pyi │ │ │ │ │ ├── database.pyi │ │ │ │ │ ├── delegated.pyi │ │ │ │ │ ├── enterprise.pyi │ │ │ │ │ ├── get_token.pyi │ │ │ │ │ ├── passwordless.pyi │ │ │ │ │ ├── pushed_authorization_requests.pyi │ │ │ │ │ ├── revoke_token.pyi │ │ │ │ │ ├── social.pyi │ │ │ │ │ ├── token_verifier.pyi │ │ │ │ │ └── users.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── management │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── actions.pyi │ │ │ │ │ ├── async_auth0.pyi │ │ │ │ │ ├── attack_protection.pyi │ │ │ │ │ ├── auth0.pyi │ │ │ │ │ ├── blacklists.pyi │ │ │ │ │ ├── branding.pyi │ │ │ │ │ ├── client_credentials.pyi │ │ │ │ │ ├── client_grants.pyi │ │ │ │ │ ├── clients.pyi │ │ │ │ │ ├── connections.pyi │ │ │ │ │ ├── custom_domains.pyi │ │ │ │ │ ├── device_credentials.pyi │ │ │ │ │ ├── email_templates.pyi │ │ │ │ │ ├── emails.pyi │ │ │ │ │ ├── grants.pyi │ │ │ │ │ ├── guardian.pyi │ │ │ │ │ ├── hooks.pyi │ │ │ │ │ ├── jobs.pyi │ │ │ │ │ ├── log_streams.pyi │ │ │ │ │ ├── logs.pyi │ │ │ │ │ ├── organizations.pyi │ │ │ │ │ ├── prompts.pyi │ │ │ │ │ ├── resource_servers.pyi │ │ │ │ │ ├── roles.pyi │ │ │ │ │ ├── rules.pyi │ │ │ │ │ ├── rules_configs.pyi │ │ │ │ │ ├── self_service_profiles.pyi │ │ │ │ │ ├── stats.pyi │ │ │ │ │ ├── tenants.pyi │ │ │ │ │ ├── tickets.pyi │ │ │ │ │ ├── user_blocks.pyi │ │ │ │ │ ├── users.pyi │ │ │ │ │ └── users_by_email.pyi │ │ │ │ │ ├── rest.pyi │ │ │ │ │ ├── rest_async.pyi │ │ │ │ │ ├── types.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── aws-xray-sdk │ │ │ │ └── aws_xray_sdk │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── core │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── async_context.pyi │ │ │ │ │ ├── async_recorder.pyi │ │ │ │ │ ├── context.pyi │ │ │ │ │ ├── daemon_config.pyi │ │ │ │ │ ├── emitters │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── udp_emitter.pyi │ │ │ │ │ ├── exceptions │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── exceptions.pyi │ │ │ │ │ ├── lambda_launcher.pyi │ │ │ │ │ ├── models │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── default_dynamic_naming.pyi │ │ │ │ │ │ ├── dummy_entities.pyi │ │ │ │ │ │ ├── entity.pyi │ │ │ │ │ │ ├── facade_segment.pyi │ │ │ │ │ │ ├── http.pyi │ │ │ │ │ │ ├── noop_traceid.pyi │ │ │ │ │ │ ├── segment.pyi │ │ │ │ │ │ ├── subsegment.pyi │ │ │ │ │ │ ├── throwable.pyi │ │ │ │ │ │ ├── trace_header.pyi │ │ │ │ │ │ └── traceid.pyi │ │ │ │ │ ├── patcher.pyi │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── ec2_plugin.pyi │ │ │ │ │ │ ├── ecs_plugin.pyi │ │ │ │ │ │ ├── elasticbeanstalk_plugin.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── recorder.pyi │ │ │ │ │ ├── sampling │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── connector.pyi │ │ │ │ │ │ ├── local │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── reservoir.pyi │ │ │ │ │ │ │ ├── sampler.pyi │ │ │ │ │ │ │ └── sampling_rule.pyi │ │ │ │ │ │ ├── reservoir.pyi │ │ │ │ │ │ ├── rule_cache.pyi │ │ │ │ │ │ ├── rule_poller.pyi │ │ │ │ │ │ ├── sampler.pyi │ │ │ │ │ │ ├── sampling_rule.pyi │ │ │ │ │ │ └── target_poller.pyi │ │ │ │ │ ├── streaming │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── default_streaming.pyi │ │ │ │ │ └── utils │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── atomic_counter.pyi │ │ │ │ │ │ ├── compat.pyi │ │ │ │ │ │ ├── conversion.pyi │ │ │ │ │ │ ├── search_pattern.pyi │ │ │ │ │ │ ├── sqs_message_helper.pyi │ │ │ │ │ │ └── stacktrace.pyi │ │ │ │ │ ├── ext │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── aiobotocore │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── aiohttp │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── client.pyi │ │ │ │ │ │ └── middleware.pyi │ │ │ │ │ ├── boto_utils.pyi │ │ │ │ │ ├── botocore │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── bottle │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── middleware.pyi │ │ │ │ │ ├── dbapi2.pyi │ │ │ │ │ ├── django │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── conf.pyi │ │ │ │ │ │ ├── db.pyi │ │ │ │ │ │ ├── middleware.pyi │ │ │ │ │ │ └── templates.pyi │ │ │ │ │ ├── flask │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── middleware.pyi │ │ │ │ │ ├── flask_sqlalchemy │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── query.pyi │ │ │ │ │ ├── httplib │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── httpx │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── pg8000 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── psycopg │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── psycopg2 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── pymongo │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── pymysql │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── pynamodb │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── requests │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── sqlalchemy │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── query.pyi │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── decorators.pyi │ │ │ │ │ ├── sqlalchemy_core │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ ├── sqlite3 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── patch.pyi │ │ │ │ │ └── util.pyi │ │ │ │ │ ├── sdk_config.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── binaryornot │ │ │ │ └── binaryornot │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── check.pyi │ │ │ │ │ └── helpers.pyi │ │ │ │ ├── bleach │ │ │ │ └── bleach │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── callbacks.pyi │ │ │ │ │ ├── css_sanitizer.pyi │ │ │ │ │ ├── html5lib_shim.pyi │ │ │ │ │ ├── linkifier.pyi │ │ │ │ │ ├── parse_shim.pyi │ │ │ │ │ └── sanitizer.pyi │ │ │ │ ├── boltons │ │ │ │ └── boltons │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cacheutils.pyi │ │ │ │ │ ├── debugutils.pyi │ │ │ │ │ ├── deprutils.pyi │ │ │ │ │ ├── dictutils.pyi │ │ │ │ │ ├── easterutils.pyi │ │ │ │ │ ├── ecoutils.pyi │ │ │ │ │ ├── excutils.pyi │ │ │ │ │ ├── fileutils.pyi │ │ │ │ │ ├── formatutils.pyi │ │ │ │ │ ├── funcutils.pyi │ │ │ │ │ ├── gcutils.pyi │ │ │ │ │ ├── ioutils.pyi │ │ │ │ │ ├── iterutils.pyi │ │ │ │ │ ├── jsonutils.pyi │ │ │ │ │ ├── listutils.pyi │ │ │ │ │ ├── mathutils.pyi │ │ │ │ │ ├── mboxutils.pyi │ │ │ │ │ ├── namedutils.pyi │ │ │ │ │ ├── pathutils.pyi │ │ │ │ │ ├── queueutils.pyi │ │ │ │ │ ├── setutils.pyi │ │ │ │ │ ├── socketutils.pyi │ │ │ │ │ ├── statsutils.pyi │ │ │ │ │ ├── strutils.pyi │ │ │ │ │ ├── tableutils.pyi │ │ │ │ │ ├── tbutils.pyi │ │ │ │ │ ├── timeutils.pyi │ │ │ │ │ ├── typeutils.pyi │ │ │ │ │ └── urlutils.pyi │ │ │ │ ├── braintree │ │ │ │ └── braintree │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── account_updater_daily_report.pyi │ │ │ │ │ ├── ach_mandate.pyi │ │ │ │ │ ├── add_on.pyi │ │ │ │ │ ├── add_on_gateway.pyi │ │ │ │ │ ├── address.pyi │ │ │ │ │ ├── address_gateway.pyi │ │ │ │ │ ├── amex_express_checkout_card.pyi │ │ │ │ │ ├── android_pay_card.pyi │ │ │ │ │ ├── apple_pay_card.pyi │ │ │ │ │ ├── apple_pay_gateway.pyi │ │ │ │ │ ├── apple_pay_options.pyi │ │ │ │ │ ├── attribute_getter.pyi │ │ │ │ │ ├── authorization_adjustment.pyi │ │ │ │ │ ├── bank_account_instant_verification_gateway.pyi │ │ │ │ │ ├── bank_account_instant_verification_jwt.pyi │ │ │ │ │ ├── bank_account_instant_verification_jwt_request.pyi │ │ │ │ │ ├── bin_data.pyi │ │ │ │ │ ├── blik_alias.pyi │ │ │ │ │ ├── braintree_gateway.pyi │ │ │ │ │ ├── client_token.pyi │ │ │ │ │ ├── client_token_gateway.pyi │ │ │ │ │ ├── configuration.pyi │ │ │ │ │ ├── connected_merchant_paypal_status_changed.pyi │ │ │ │ │ ├── connected_merchant_status_transitioned.pyi │ │ │ │ │ ├── credentials_parser.pyi │ │ │ │ │ ├── credit_card.pyi │ │ │ │ │ ├── credit_card_gateway.pyi │ │ │ │ │ ├── credit_card_verification.pyi │ │ │ │ │ ├── credit_card_verification_gateway.pyi │ │ │ │ │ ├── credit_card_verification_search.pyi │ │ │ │ │ ├── customer.pyi │ │ │ │ │ ├── customer_gateway.pyi │ │ │ │ │ ├── customer_search.pyi │ │ │ │ │ ├── customer_session_gateway.pyi │ │ │ │ │ ├── descriptor.pyi │ │ │ │ │ ├── disbursement.pyi │ │ │ │ │ ├── disbursement_detail.pyi │ │ │ │ │ ├── discount.pyi │ │ │ │ │ ├── discount_gateway.pyi │ │ │ │ │ ├── dispute.pyi │ │ │ │ │ ├── dispute_details │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── evidence.pyi │ │ │ │ │ ├── paypal_message.pyi │ │ │ │ │ └── status_history.pyi │ │ │ │ │ ├── dispute_gateway.pyi │ │ │ │ │ ├── dispute_search.pyi │ │ │ │ │ ├── document_upload.pyi │ │ │ │ │ ├── document_upload_gateway.pyi │ │ │ │ │ ├── enriched_customer_data.pyi │ │ │ │ │ ├── environment.pyi │ │ │ │ │ ├── error_codes.pyi │ │ │ │ │ ├── error_result.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── europe_bank_account.pyi │ │ │ │ │ ├── exceptions │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── authentication_error.pyi │ │ │ │ │ ├── authorization_error.pyi │ │ │ │ │ ├── braintree_error.pyi │ │ │ │ │ ├── configuration_error.pyi │ │ │ │ │ ├── gateway_timeout_error.pyi │ │ │ │ │ ├── http │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── connection_error.pyi │ │ │ │ │ │ ├── invalid_response_error.pyi │ │ │ │ │ │ └── timeout_error.pyi │ │ │ │ │ ├── invalid_challenge_error.pyi │ │ │ │ │ ├── invalid_signature_error.pyi │ │ │ │ │ ├── not_found_error.pyi │ │ │ │ │ ├── request_timeout_error.pyi │ │ │ │ │ ├── server_error.pyi │ │ │ │ │ ├── service_unavailable_error.pyi │ │ │ │ │ ├── test_operation_performed_in_production_error.pyi │ │ │ │ │ ├── too_many_requests_error.pyi │ │ │ │ │ ├── unexpected_error.pyi │ │ │ │ │ └── upgrade_required_error.pyi │ │ │ │ │ ├── exchange_rate_quote.pyi │ │ │ │ │ ├── exchange_rate_quote_gateway.pyi │ │ │ │ │ ├── exchange_rate_quote_input.pyi │ │ │ │ │ ├── exchange_rate_quote_payload.pyi │ │ │ │ │ ├── exchange_rate_quote_request.pyi │ │ │ │ │ ├── facilitated_details.pyi │ │ │ │ │ ├── facilitator_details.pyi │ │ │ │ │ ├── granted_payment_instrument_update.pyi │ │ │ │ │ ├── graphql │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── enums │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── recommendations.pyi │ │ │ │ │ │ └── recommended_payment_option.pyi │ │ │ │ │ ├── inputs │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── create_customer_session_input.pyi │ │ │ │ │ │ ├── customer_recommendations_input.pyi │ │ │ │ │ │ ├── customer_session_input.pyi │ │ │ │ │ │ ├── monetary_amount_input.pyi │ │ │ │ │ │ ├── paypal_payee_input.pyi │ │ │ │ │ │ ├── paypal_purchase_unit_input.pyi │ │ │ │ │ │ ├── phone_input.pyi │ │ │ │ │ │ └── update_customer_session_input.pyi │ │ │ │ │ ├── types │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── customer_recommendations_payload.pyi │ │ │ │ │ │ ├── payment_options.pyi │ │ │ │ │ │ └── payment_recommendation.pyi │ │ │ │ │ └── unions │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── customer_recommendations.pyi │ │ │ │ │ ├── iban_bank_account.pyi │ │ │ │ │ ├── ids_search.pyi │ │ │ │ │ ├── liability_shift.pyi │ │ │ │ │ ├── local_payment.pyi │ │ │ │ │ ├── local_payment_completed.pyi │ │ │ │ │ ├── local_payment_expired.pyi │ │ │ │ │ ├── local_payment_funded.pyi │ │ │ │ │ ├── local_payment_reversed.pyi │ │ │ │ │ ├── masterpass_card.pyi │ │ │ │ │ ├── merchant.pyi │ │ │ │ │ ├── merchant_account │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── address_details.pyi │ │ │ │ │ └── merchant_account.pyi │ │ │ │ │ ├── merchant_account_gateway.pyi │ │ │ │ │ ├── merchant_gateway.pyi │ │ │ │ │ ├── meta_checkout_card.pyi │ │ │ │ │ ├── meta_checkout_token.pyi │ │ │ │ │ ├── modification.pyi │ │ │ │ │ ├── monetary_amount.pyi │ │ │ │ │ ├── oauth_access_revocation.pyi │ │ │ │ │ ├── oauth_credentials.pyi │ │ │ │ │ ├── oauth_gateway.pyi │ │ │ │ │ ├── package_details.pyi │ │ │ │ │ ├── paginated_collection.pyi │ │ │ │ │ ├── paginated_result.pyi │ │ │ │ │ ├── partner_merchant.pyi │ │ │ │ │ ├── payment_facilitator.pyi │ │ │ │ │ ├── payment_instrument_type.pyi │ │ │ │ │ ├── payment_method.pyi │ │ │ │ │ ├── payment_method_customer_data_updated_metadata.pyi │ │ │ │ │ ├── payment_method_gateway.pyi │ │ │ │ │ ├── payment_method_nonce.pyi │ │ │ │ │ ├── payment_method_nonce_gateway.pyi │ │ │ │ │ ├── payment_method_parser.pyi │ │ │ │ │ ├── paypal_account.pyi │ │ │ │ │ ├── paypal_account_gateway.pyi │ │ │ │ │ ├── paypal_here.pyi │ │ │ │ │ ├── paypal_payment_resource.pyi │ │ │ │ │ ├── paypal_payment_resource_gateway.pyi │ │ │ │ │ ├── plan.pyi │ │ │ │ │ ├── plan_gateway.pyi │ │ │ │ │ ├── processor_response_types.pyi │ │ │ │ │ ├── receiver.pyi │ │ │ │ │ ├── resource.pyi │ │ │ │ │ ├── resource_collection.pyi │ │ │ │ │ ├── revoked_payment_method_metadata.pyi │ │ │ │ │ ├── risk_data.pyi │ │ │ │ │ ├── samsung_pay_card.pyi │ │ │ │ │ ├── search.pyi │ │ │ │ │ ├── sender.pyi │ │ │ │ │ ├── sepa_direct_debit_account.pyi │ │ │ │ │ ├── sepa_direct_debit_account_gateway.pyi │ │ │ │ │ ├── settlement_batch_summary.pyi │ │ │ │ │ ├── settlement_batch_summary_gateway.pyi │ │ │ │ │ ├── signature_service.pyi │ │ │ │ │ ├── status_event.pyi │ │ │ │ │ ├── sub_merchant.pyi │ │ │ │ │ ├── subscription.pyi │ │ │ │ │ ├── subscription_details.pyi │ │ │ │ │ ├── subscription_gateway.pyi │ │ │ │ │ ├── subscription_search.pyi │ │ │ │ │ ├── subscription_status_event.pyi │ │ │ │ │ ├── successful_result.pyi │ │ │ │ │ ├── test │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── authentication_ids.pyi │ │ │ │ │ ├── credit_card_defaults.pyi │ │ │ │ │ ├── credit_card_numbers.pyi │ │ │ │ │ ├── merchant_account.pyi │ │ │ │ │ ├── nonces.pyi │ │ │ │ │ └── venmo_sdk.pyi │ │ │ │ │ ├── testing_gateway.pyi │ │ │ │ │ ├── three_d_secure_info.pyi │ │ │ │ │ ├── transaction.pyi │ │ │ │ │ ├── transaction_amounts.pyi │ │ │ │ │ ├── transaction_details.pyi │ │ │ │ │ ├── transaction_gateway.pyi │ │ │ │ │ ├── transaction_line_item.pyi │ │ │ │ │ ├── transaction_line_item_gateway.pyi │ │ │ │ │ ├── transaction_review.pyi │ │ │ │ │ ├── transaction_search.pyi │ │ │ │ │ ├── transaction_us_bank_account_request.pyi │ │ │ │ │ ├── transfer.pyi │ │ │ │ │ ├── unknown_payment_method.pyi │ │ │ │ │ ├── us_bank_account.pyi │ │ │ │ │ ├── us_bank_account_gateway.pyi │ │ │ │ │ ├── us_bank_account_verification.pyi │ │ │ │ │ ├── us_bank_account_verification_gateway.pyi │ │ │ │ │ ├── us_bank_account_verification_search.pyi │ │ │ │ │ ├── util │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── crypto.pyi │ │ │ │ │ ├── datetime_parser.pyi │ │ │ │ │ ├── experimental.pyi │ │ │ │ │ ├── generator.pyi │ │ │ │ │ ├── graphql_client.pyi │ │ │ │ │ ├── http.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ └── xml_util.pyi │ │ │ │ │ ├── validation_error.pyi │ │ │ │ │ ├── validation_error_collection.pyi │ │ │ │ │ ├── venmo_account.pyi │ │ │ │ │ ├── venmo_profile_data.pyi │ │ │ │ │ ├── version.pyi │ │ │ │ │ ├── visa_checkout_card.pyi │ │ │ │ │ ├── webhook_notification.pyi │ │ │ │ │ ├── webhook_notification_gateway.pyi │ │ │ │ │ ├── webhook_testing.pyi │ │ │ │ │ └── webhook_testing_gateway.pyi │ │ │ │ ├── cachetools │ │ │ │ └── cachetools │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── func.pyi │ │ │ │ │ └── keys.pyi │ │ │ │ ├── capturer │ │ │ │ └── capturer.pyi │ │ │ │ ├── cffi │ │ │ │ ├── _cffi_backend.pyi │ │ │ │ └── cffi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── api.pyi │ │ │ │ │ ├── backend_ctypes.pyi │ │ │ │ │ ├── cffi_opcode.pyi │ │ │ │ │ ├── commontypes.pyi │ │ │ │ │ ├── cparser.pyi │ │ │ │ │ ├── error.pyi │ │ │ │ │ ├── ffiplatform.pyi │ │ │ │ │ ├── lock.pyi │ │ │ │ │ ├── model.pyi │ │ │ │ │ ├── pkgconfig.pyi │ │ │ │ │ ├── recompiler.pyi │ │ │ │ │ ├── setuptools_ext.pyi │ │ │ │ │ ├── vengine_cpy.pyi │ │ │ │ │ ├── vengine_gen.pyi │ │ │ │ │ └── verifier.pyi │ │ │ │ ├── channels │ │ │ │ └── channels │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── apps.pyi │ │ │ │ │ ├── auth.pyi │ │ │ │ │ ├── consumer.pyi │ │ │ │ │ ├── db.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── generic │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── http.pyi │ │ │ │ │ └── websocket.pyi │ │ │ │ │ ├── layers.pyi │ │ │ │ │ ├── management │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── commands │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── runworker.pyi │ │ │ │ │ ├── middleware.pyi │ │ │ │ │ ├── routing.pyi │ │ │ │ │ ├── security │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── websocket.pyi │ │ │ │ │ ├── sessions.pyi │ │ │ │ │ ├── testing │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── application.pyi │ │ │ │ │ ├── http.pyi │ │ │ │ │ ├── live.pyi │ │ │ │ │ └── websocket.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── worker.pyi │ │ │ │ ├── chevron │ │ │ │ └── chevron │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── main.pyi │ │ │ │ │ ├── metadata.pyi │ │ │ │ │ ├── renderer.pyi │ │ │ │ │ └── tokenizer.pyi │ │ │ │ ├── click-default-group │ │ │ │ └── click_default_group.pyi │ │ │ │ ├── click-log │ │ │ │ └── click_log │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ └── options.pyi │ │ │ │ ├── click-shell │ │ │ │ └── click_shell │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _cmd.pyi │ │ │ │ │ ├── _compat.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ └── decorators.pyi │ │ │ │ ├── click-spinner │ │ │ │ └── click_spinner │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── _version.pyi │ │ │ │ ├── click-web │ │ │ │ └── click_web │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── resources │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cmd_exec.pyi │ │ │ │ │ ├── cmd_form.pyi │ │ │ │ │ ├── index.pyi │ │ │ │ │ └── input_fields.pyi │ │ │ │ │ └── web_click_types.pyi │ │ │ │ ├── colorama │ │ │ │ └── colorama │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ansi.pyi │ │ │ │ │ ├── ansitowin32.pyi │ │ │ │ │ ├── initialise.pyi │ │ │ │ │ ├── win32.pyi │ │ │ │ │ └── winterm.pyi │ │ │ │ ├── colorful │ │ │ │ └── colorful │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ansi.pyi │ │ │ │ │ ├── colors.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── styles.pyi │ │ │ │ │ ├── terminal.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── console-menu │ │ │ │ └── consolemenu │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── console_menu.pyi │ │ │ │ │ ├── format │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── menu_borders.pyi │ │ │ │ │ ├── menu_margins.pyi │ │ │ │ │ ├── menu_padding.pyi │ │ │ │ │ └── menu_style.pyi │ │ │ │ │ ├── items │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── command_item.pyi │ │ │ │ │ ├── external_item.pyi │ │ │ │ │ ├── function_item.pyi │ │ │ │ │ ├── selection_item.pyi │ │ │ │ │ └── submenu_item.pyi │ │ │ │ │ ├── menu_component.pyi │ │ │ │ │ ├── menu_formatter.pyi │ │ │ │ │ ├── multiselect_menu.pyi │ │ │ │ │ ├── prompt_utils.pyi │ │ │ │ │ ├── screen.pyi │ │ │ │ │ ├── selection_menu.pyi │ │ │ │ │ ├── validators │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── regex.pyi │ │ │ │ │ └── url.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── convertdate │ │ │ │ └── convertdate │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── armenian.pyi │ │ │ │ │ ├── bahai.pyi │ │ │ │ │ ├── coptic.pyi │ │ │ │ │ ├── data │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── french_republican_days.pyi │ │ │ │ │ └── positivist.pyi │ │ │ │ │ ├── daycount.pyi │ │ │ │ │ ├── dublin.pyi │ │ │ │ │ ├── french_republican.pyi │ │ │ │ │ ├── gregorian.pyi │ │ │ │ │ ├── hebrew.pyi │ │ │ │ │ ├── holidays.pyi │ │ │ │ │ ├── indian_civil.pyi │ │ │ │ │ ├── islamic.pyi │ │ │ │ │ ├── iso.pyi │ │ │ │ │ ├── julian.pyi │ │ │ │ │ ├── julianday.pyi │ │ │ │ │ ├── mayan.pyi │ │ │ │ │ ├── ordinal.pyi │ │ │ │ │ ├── persian.pyi │ │ │ │ │ ├── positivist.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── croniter │ │ │ │ └── croniter │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── croniter.pyi │ │ │ │ ├── dateparser │ │ │ │ ├── dateparser │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── calendars │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── hijri.pyi │ │ │ │ │ │ ├── hijri_parser.pyi │ │ │ │ │ │ ├── jalali.pyi │ │ │ │ │ │ └── jalali_parser.pyi │ │ │ │ │ ├── conf.pyi │ │ │ │ │ ├── custom_language_detection │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── fasttext.pyi │ │ │ │ │ │ ├── langdetect.pyi │ │ │ │ │ │ └── language_mapping.pyi │ │ │ │ │ ├── data │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── languages_info.pyi │ │ │ │ │ ├── date.pyi │ │ │ │ │ ├── date_parser.pyi │ │ │ │ │ ├── freshness_date_parser.pyi │ │ │ │ │ ├── languages │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── dictionary.pyi │ │ │ │ │ │ ├── loader.pyi │ │ │ │ │ │ ├── locale.pyi │ │ │ │ │ │ └── validation.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ ├── search │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── detection.pyi │ │ │ │ │ │ ├── search.pyi │ │ │ │ │ │ └── text_detection.pyi │ │ │ │ │ ├── timezone_parser.pyi │ │ │ │ │ ├── timezones.pyi │ │ │ │ │ └── utils │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── strptime.pyi │ │ │ │ └── dateparser_data │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── settings.pyi │ │ │ │ ├── decorator │ │ │ │ └── decorator.pyi │ │ │ │ ├── defusedxml │ │ │ │ └── defusedxml │ │ │ │ │ ├── ElementTree.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cElementTree.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── expatbuilder.pyi │ │ │ │ │ ├── expatreader.pyi │ │ │ │ │ ├── lxml.pyi │ │ │ │ │ ├── minidom.pyi │ │ │ │ │ ├── pulldom.pyi │ │ │ │ │ ├── sax.pyi │ │ │ │ │ └── xmlrpc.pyi │ │ │ │ ├── dirhash │ │ │ │ └── dirhash │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── cli.pyi │ │ │ │ ├── django-filter │ │ │ │ └── django_filters │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── compat.pyi │ │ │ │ │ ├── conf.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── fields.pyi │ │ │ │ │ ├── filters.pyi │ │ │ │ │ ├── filterset.pyi │ │ │ │ │ ├── rest_framework │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── backends.pyi │ │ │ │ │ ├── filters.pyi │ │ │ │ │ └── filterset.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ ├── views.pyi │ │ │ │ │ └── widgets.pyi │ │ │ │ ├── django-import-export │ │ │ │ ├── import_export │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── admin.pyi │ │ │ │ │ ├── command_utils.pyi │ │ │ │ │ ├── declarative.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── fields.pyi │ │ │ │ │ ├── formats │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── base_formats.pyi │ │ │ │ │ ├── forms.pyi │ │ │ │ │ ├── instance_loaders.pyi │ │ │ │ │ ├── mixins.pyi │ │ │ │ │ ├── options.pyi │ │ │ │ │ ├── resources.pyi │ │ │ │ │ ├── results.pyi │ │ │ │ │ ├── signals.pyi │ │ │ │ │ ├── templatetags │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── import_export_tags.pyi │ │ │ │ │ ├── tmp_storages.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── widgets.pyi │ │ │ │ └── management │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── commands │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── export.pyi │ │ │ │ │ └── import.pyi │ │ │ │ ├── docker │ │ │ │ └── docker │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _types.pyi │ │ │ │ │ ├── api │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── build.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ ├── container.pyi │ │ │ │ │ ├── daemon.pyi │ │ │ │ │ ├── exec_api.pyi │ │ │ │ │ ├── image.pyi │ │ │ │ │ ├── network.pyi │ │ │ │ │ ├── plugin.pyi │ │ │ │ │ ├── secret.pyi │ │ │ │ │ ├── service.pyi │ │ │ │ │ ├── swarm.pyi │ │ │ │ │ └── volume.pyi │ │ │ │ │ ├── auth.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── context │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── api.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ └── context.pyi │ │ │ │ │ ├── credentials │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── store.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── models │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── configs.pyi │ │ │ │ │ ├── containers.pyi │ │ │ │ │ ├── images.pyi │ │ │ │ │ ├── networks.pyi │ │ │ │ │ ├── nodes.pyi │ │ │ │ │ ├── plugins.pyi │ │ │ │ │ ├── resource.pyi │ │ │ │ │ ├── secrets.pyi │ │ │ │ │ ├── services.pyi │ │ │ │ │ ├── swarm.pyi │ │ │ │ │ └── volumes.pyi │ │ │ │ │ ├── tls.pyi │ │ │ │ │ ├── transport │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── basehttpadapter.pyi │ │ │ │ │ ├── npipeconn.pyi │ │ │ │ │ ├── npipesocket.pyi │ │ │ │ │ ├── sshconn.pyi │ │ │ │ │ └── unixconn.pyi │ │ │ │ │ ├── types │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── containers.pyi │ │ │ │ │ ├── daemon.pyi │ │ │ │ │ ├── healthcheck.pyi │ │ │ │ │ ├── networks.pyi │ │ │ │ │ ├── services.pyi │ │ │ │ │ └── swarm.pyi │ │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── build.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ ├── decorators.pyi │ │ │ │ │ ├── fnmatch.pyi │ │ │ │ │ ├── json_stream.pyi │ │ │ │ │ ├── ports.pyi │ │ │ │ │ ├── proxy.pyi │ │ │ │ │ ├── socket.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── dockerfile-parse │ │ │ │ └── dockerfile_parse │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── docutils │ │ │ │ └── docutils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── __main__.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── examples.pyi │ │ │ │ │ ├── frontend.pyi │ │ │ │ │ ├── io.pyi │ │ │ │ │ ├── languages │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── af.pyi │ │ │ │ │ ├── ar.pyi │ │ │ │ │ ├── ca.pyi │ │ │ │ │ ├── cs.pyi │ │ │ │ │ ├── da.pyi │ │ │ │ │ ├── de.pyi │ │ │ │ │ ├── en.pyi │ │ │ │ │ ├── eo.pyi │ │ │ │ │ ├── es.pyi │ │ │ │ │ ├── fa.pyi │ │ │ │ │ ├── fi.pyi │ │ │ │ │ ├── fr.pyi │ │ │ │ │ ├── gl.pyi │ │ │ │ │ ├── he.pyi │ │ │ │ │ ├── it.pyi │ │ │ │ │ ├── ja.pyi │ │ │ │ │ ├── ka.pyi │ │ │ │ │ ├── ko.pyi │ │ │ │ │ ├── lt.pyi │ │ │ │ │ ├── lv.pyi │ │ │ │ │ ├── nl.pyi │ │ │ │ │ ├── pl.pyi │ │ │ │ │ ├── pt_br.pyi │ │ │ │ │ ├── ru.pyi │ │ │ │ │ ├── sk.pyi │ │ │ │ │ ├── sv.pyi │ │ │ │ │ ├── uk.pyi │ │ │ │ │ ├── zh_cn.pyi │ │ │ │ │ └── zh_tw.pyi │ │ │ │ │ ├── nodes.pyi │ │ │ │ │ ├── parsers │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── commonmark_wrapper.pyi │ │ │ │ │ ├── docutils_xml.pyi │ │ │ │ │ ├── null.pyi │ │ │ │ │ ├── recommonmark_wrapper.pyi │ │ │ │ │ └── rst │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── directives │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── admonitions.pyi │ │ │ │ │ │ ├── body.pyi │ │ │ │ │ │ ├── html.pyi │ │ │ │ │ │ ├── images.pyi │ │ │ │ │ │ ├── misc.pyi │ │ │ │ │ │ ├── parts.pyi │ │ │ │ │ │ ├── references.pyi │ │ │ │ │ │ └── tables.pyi │ │ │ │ │ │ ├── languages │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── af.pyi │ │ │ │ │ │ ├── ar.pyi │ │ │ │ │ │ ├── ca.pyi │ │ │ │ │ │ ├── cs.pyi │ │ │ │ │ │ ├── da.pyi │ │ │ │ │ │ ├── de.pyi │ │ │ │ │ │ ├── en.pyi │ │ │ │ │ │ ├── eo.pyi │ │ │ │ │ │ ├── es.pyi │ │ │ │ │ │ ├── fa.pyi │ │ │ │ │ │ ├── fi.pyi │ │ │ │ │ │ ├── fr.pyi │ │ │ │ │ │ ├── gl.pyi │ │ │ │ │ │ ├── he.pyi │ │ │ │ │ │ ├── it.pyi │ │ │ │ │ │ ├── ja.pyi │ │ │ │ │ │ ├── ka.pyi │ │ │ │ │ │ ├── ko.pyi │ │ │ │ │ │ ├── lt.pyi │ │ │ │ │ │ ├── lv.pyi │ │ │ │ │ │ ├── nl.pyi │ │ │ │ │ │ ├── pl.pyi │ │ │ │ │ │ ├── pt_br.pyi │ │ │ │ │ │ ├── ru.pyi │ │ │ │ │ │ ├── sk.pyi │ │ │ │ │ │ ├── sv.pyi │ │ │ │ │ │ ├── uk.pyi │ │ │ │ │ │ ├── zh_cn.pyi │ │ │ │ │ │ └── zh_tw.pyi │ │ │ │ │ │ ├── roles.pyi │ │ │ │ │ │ ├── states.pyi │ │ │ │ │ │ └── tableparser.pyi │ │ │ │ │ ├── readers │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── doctree.pyi │ │ │ │ │ ├── pep.pyi │ │ │ │ │ └── standalone.pyi │ │ │ │ │ ├── statemachine.pyi │ │ │ │ │ ├── transforms │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── components.pyi │ │ │ │ │ ├── frontmatter.pyi │ │ │ │ │ ├── misc.pyi │ │ │ │ │ ├── parts.pyi │ │ │ │ │ ├── peps.pyi │ │ │ │ │ ├── references.pyi │ │ │ │ │ ├── universal.pyi │ │ │ │ │ └── writer_aux.pyi │ │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _roman_numerals.pyi │ │ │ │ │ ├── code_analyzer.pyi │ │ │ │ │ ├── math │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── latex2mathml.pyi │ │ │ │ │ │ ├── math2html.pyi │ │ │ │ │ │ ├── mathalphabet2unichar.pyi │ │ │ │ │ │ ├── mathml_elements.pyi │ │ │ │ │ │ ├── tex2mathml_extern.pyi │ │ │ │ │ │ ├── tex2unichar.pyi │ │ │ │ │ │ └── unichar2tex.pyi │ │ │ │ │ ├── punctuation_chars.pyi │ │ │ │ │ ├── smartquotes.pyi │ │ │ │ │ └── urischemes.pyi │ │ │ │ │ └── writers │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _html_base.pyi │ │ │ │ │ ├── docutils_xml.pyi │ │ │ │ │ ├── html4css1 │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── html5_polyglot │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── latex2e │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── manpage.pyi │ │ │ │ │ ├── null.pyi │ │ │ │ │ ├── odf_odt │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── prepstyles.pyi │ │ │ │ │ └── pygmentsformatter.pyi │ │ │ │ │ ├── pep_html │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── pseudoxml.pyi │ │ │ │ │ ├── s5_html │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── xetex │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── editdistance │ │ │ │ └── editdistance │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── entrypoints │ │ │ │ └── entrypoints.pyi │ │ │ │ ├── et_xmlfile │ │ │ │ └── et_xmlfile │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── incremental_tree.pyi │ │ │ │ │ └── xmlfile.pyi │ │ │ │ ├── fanstatic │ │ │ │ └── fanstatic │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── checksum.pyi │ │ │ │ │ ├── compiler.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── inclusion.pyi │ │ │ │ │ ├── injector.pyi │ │ │ │ │ ├── publisher.pyi │ │ │ │ │ ├── registry.pyi │ │ │ │ │ └── wsgi.pyi │ │ │ │ ├── first │ │ │ │ └── first.pyi │ │ │ │ ├── flake8-bugbear │ │ │ │ └── bugbear.pyi │ │ │ │ ├── flake8-builtins │ │ │ │ └── flake8_builtins.pyi │ │ │ │ ├── flake8-docstrings │ │ │ │ └── flake8_docstrings.pyi │ │ │ │ ├── flake8-rst-docstrings │ │ │ │ └── flake8_rst_docstrings.pyi │ │ │ │ ├── flake8-simplify │ │ │ │ └── flake8_simplify │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── rules │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ast_assign.pyi │ │ │ │ │ ├── ast_bool_op.pyi │ │ │ │ │ ├── ast_call.pyi │ │ │ │ │ ├── ast_classdef.pyi │ │ │ │ │ ├── ast_compare.pyi │ │ │ │ │ ├── ast_expr.pyi │ │ │ │ │ ├── ast_for.pyi │ │ │ │ │ ├── ast_if.pyi │ │ │ │ │ ├── ast_ifexp.pyi │ │ │ │ │ ├── ast_subscript.pyi │ │ │ │ │ ├── ast_try.pyi │ │ │ │ │ ├── ast_unary_op.pyi │ │ │ │ │ └── ast_with.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── flake8-typing-imports │ │ │ │ └── flake8_typing_imports.pyi │ │ │ │ ├── flake8 │ │ │ │ └── flake8 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _compat.pyi │ │ │ │ │ ├── api │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── legacy.pyi │ │ │ │ │ ├── checker.pyi │ │ │ │ │ ├── defaults.pyi │ │ │ │ │ ├── discover_files.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── formatting │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _windows_color.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ └── default.pyi │ │ │ │ │ ├── main │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── application.pyi │ │ │ │ │ ├── cli.pyi │ │ │ │ │ ├── debug.pyi │ │ │ │ │ └── options.pyi │ │ │ │ │ ├── options │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── aggregator.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ ├── manager.pyi │ │ │ │ │ └── parse_args.pyi │ │ │ │ │ ├── plugins │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── finder.pyi │ │ │ │ │ ├── pycodestyle.pyi │ │ │ │ │ ├── pyflakes.pyi │ │ │ │ │ └── reporter.pyi │ │ │ │ │ ├── processor.pyi │ │ │ │ │ ├── statistics.pyi │ │ │ │ │ ├── style_guide.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── violation.pyi │ │ │ │ ├── fpdf2 │ │ │ │ └── fpdf │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _fonttools_shims.pyi │ │ │ │ │ ├── actions.pyi │ │ │ │ │ ├── annotations.pyi │ │ │ │ │ ├── bidi.pyi │ │ │ │ │ ├── deprecation.pyi │ │ │ │ │ ├── drawing.pyi │ │ │ │ │ ├── encryption.pyi │ │ │ │ │ ├── enums.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── fonts.pyi │ │ │ │ │ ├── fpdf.pyi │ │ │ │ │ ├── graphics_state.pyi │ │ │ │ │ ├── html.pyi │ │ │ │ │ ├── image_datastructures.pyi │ │ │ │ │ ├── image_parsing.pyi │ │ │ │ │ ├── line_break.pyi │ │ │ │ │ ├── linearization.pyi │ │ │ │ │ ├── outline.pyi │ │ │ │ │ ├── output.pyi │ │ │ │ │ ├── pattern.pyi │ │ │ │ │ ├── prefs.pyi │ │ │ │ │ ├── recorder.pyi │ │ │ │ │ ├── sign.pyi │ │ │ │ │ ├── structure_tree.pyi │ │ │ │ │ ├── svg.pyi │ │ │ │ │ ├── syntax.pyi │ │ │ │ │ ├── table.pyi │ │ │ │ │ ├── template.pyi │ │ │ │ │ ├── text_region.pyi │ │ │ │ │ ├── transitions.pyi │ │ │ │ │ ├── unicode_script.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── gdb │ │ │ │ └── gdb │ │ │ │ │ ├── FrameDecorator.pyi │ │ │ │ │ ├── FrameIterator.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── dap │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── breakpoint.pyi │ │ │ │ │ ├── bt.pyi │ │ │ │ │ ├── disassemble.pyi │ │ │ │ │ ├── evaluate.pyi │ │ │ │ │ ├── events.pyi │ │ │ │ │ ├── frames.pyi │ │ │ │ │ ├── io.pyi │ │ │ │ │ ├── launch.pyi │ │ │ │ │ ├── locations.pyi │ │ │ │ │ ├── memory.pyi │ │ │ │ │ ├── modules.pyi │ │ │ │ │ ├── next.pyi │ │ │ │ │ ├── pause.pyi │ │ │ │ │ ├── scopes.pyi │ │ │ │ │ ├── server.pyi │ │ │ │ │ ├── sources.pyi │ │ │ │ │ ├── startup.pyi │ │ │ │ │ ├── state.pyi │ │ │ │ │ ├── threads.pyi │ │ │ │ │ ├── typecheck.pyi │ │ │ │ │ └── varref.pyi │ │ │ │ │ ├── disassembler.pyi │ │ │ │ │ ├── events.pyi │ │ │ │ │ ├── missing_debug.pyi │ │ │ │ │ ├── missing_files.pyi │ │ │ │ │ ├── missing_objfile.pyi │ │ │ │ │ ├── printing.pyi │ │ │ │ │ ├── prompt.pyi │ │ │ │ │ ├── types.pyi │ │ │ │ │ ├── unwinder.pyi │ │ │ │ │ └── xmethod.pyi │ │ │ │ ├── geopandas │ │ │ │ └── geopandas │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _config.pyi │ │ │ │ │ ├── _decorator.pyi │ │ │ │ │ ├── _exports.pyi │ │ │ │ │ ├── accessors.pyi │ │ │ │ │ ├── array.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── explore.pyi │ │ │ │ │ ├── geodataframe.pyi │ │ │ │ │ ├── geoseries.pyi │ │ │ │ │ ├── io │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _geoarrow.pyi │ │ │ │ │ ├── arrow.pyi │ │ │ │ │ ├── file.pyi │ │ │ │ │ └── sql.pyi │ │ │ │ │ ├── plotting.pyi │ │ │ │ │ ├── sindex.pyi │ │ │ │ │ ├── testing.pyi │ │ │ │ │ └── tools │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _show_versions.pyi │ │ │ │ │ ├── clip.pyi │ │ │ │ │ ├── geocoding.pyi │ │ │ │ │ ├── hilbert_curve.pyi │ │ │ │ │ ├── overlay.pyi │ │ │ │ │ ├── sjoin.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── gevent │ │ │ │ └── gevent │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _abstract_linkable.pyi │ │ │ │ │ ├── _config.pyi │ │ │ │ │ ├── _ffi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── loop.pyi │ │ │ │ │ └── watcher.pyi │ │ │ │ │ ├── _fileobjectcommon.pyi │ │ │ │ │ ├── _greenlet_primitives.pyi │ │ │ │ │ ├── _hub_local.pyi │ │ │ │ │ ├── _hub_primitives.pyi │ │ │ │ │ ├── _ident.pyi │ │ │ │ │ ├── _imap.pyi │ │ │ │ │ ├── _monitor.pyi │ │ │ │ │ ├── _threading.pyi │ │ │ │ │ ├── _types.pyi │ │ │ │ │ ├── _util.pyi │ │ │ │ │ ├── _waiter.pyi │ │ │ │ │ ├── ares.pyi │ │ │ │ │ ├── backdoor.pyi │ │ │ │ │ ├── baseserver.pyi │ │ │ │ │ ├── event.pyi │ │ │ │ │ ├── events.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── fileobject.pyi │ │ │ │ │ ├── greenlet.pyi │ │ │ │ │ ├── hub.pyi │ │ │ │ │ ├── libev │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── corecext.pyi │ │ │ │ │ ├── corecffi.pyi │ │ │ │ │ └── watcher.pyi │ │ │ │ │ ├── libuv │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── loop.pyi │ │ │ │ │ └── watcher.pyi │ │ │ │ │ ├── local.pyi │ │ │ │ │ ├── lock.pyi │ │ │ │ │ ├── monkey │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── api.pyi │ │ │ │ │ ├── os.pyi │ │ │ │ │ ├── pool.pyi │ │ │ │ │ ├── pywsgi.pyi │ │ │ │ │ ├── queue.pyi │ │ │ │ │ ├── resolver │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ares.pyi │ │ │ │ │ ├── blocking.pyi │ │ │ │ │ ├── cares.pyi │ │ │ │ │ ├── dnspython.pyi │ │ │ │ │ └── thread.pyi │ │ │ │ │ ├── resolver_ares.pyi │ │ │ │ │ ├── resolver_thread.pyi │ │ │ │ │ ├── select.pyi │ │ │ │ │ ├── selectors.pyi │ │ │ │ │ ├── server.pyi │ │ │ │ │ ├── signal.pyi │ │ │ │ │ ├── socket.pyi │ │ │ │ │ ├── ssl.pyi │ │ │ │ │ ├── subprocess.pyi │ │ │ │ │ ├── threadpool.pyi │ │ │ │ │ ├── time.pyi │ │ │ │ │ ├── timeout.pyi │ │ │ │ │ ├── util.pyi │ │ │ │ │ └── win32util.pyi │ │ │ │ ├── google-cloud-ndb │ │ │ │ └── google │ │ │ │ │ └── cloud │ │ │ │ │ └── ndb │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _batch.pyi │ │ │ │ │ ├── _cache.pyi │ │ │ │ │ ├── _datastore_api.pyi │ │ │ │ │ ├── _datastore_query.pyi │ │ │ │ │ ├── _eventloop.pyi │ │ │ │ │ ├── _options.pyi │ │ │ │ │ ├── _transaction.pyi │ │ │ │ │ ├── blobstore.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── context.pyi │ │ │ │ │ ├── django_middleware.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── global_cache.pyi │ │ │ │ │ ├── key.pyi │ │ │ │ │ ├── metadata.pyi │ │ │ │ │ ├── model.pyi │ │ │ │ │ ├── msgprop.pyi │ │ │ │ │ ├── polymodel.pyi │ │ │ │ │ ├── query.pyi │ │ │ │ │ ├── stats.pyi │ │ │ │ │ ├── tasklets.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── greenlet │ │ │ │ └── greenlet │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── _greenlet.pyi │ │ │ │ ├── grpcio-channelz │ │ │ │ └── grpc_channelz │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _async.pyi │ │ │ │ │ ├── _servicer.pyi │ │ │ │ │ ├── channelz.pyi │ │ │ │ │ ├── channelz_pb2.pyi │ │ │ │ │ └── channelz_pb2_grpc.pyi │ │ │ │ ├── grpcio-health-checking │ │ │ │ └── grpc_health │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── health.pyi │ │ │ │ │ ├── health_pb2.pyi │ │ │ │ │ └── health_pb2_grpc.pyi │ │ │ │ ├── grpcio-reflection │ │ │ │ └── grpc_reflection │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── v1alpha │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _async.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── proto_reflection_descriptor_database.pyi │ │ │ │ │ ├── reflection.pyi │ │ │ │ │ ├── reflection_pb2.pyi │ │ │ │ │ └── reflection_pb2_grpc.pyi │ │ │ │ ├── grpcio-status │ │ │ │ └── grpc_status │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _async.pyi │ │ │ │ │ └── rpc_status.pyi │ │ │ │ ├── grpcio │ │ │ │ └── grpc │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── aio │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── gunicorn │ │ │ │ └── gunicorn │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _types.pyi │ │ │ │ │ ├── app │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── pasterapp.pyi │ │ │ │ │ └── wsgiapp.pyi │ │ │ │ │ ├── arbiter.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ ├── debug.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── glogging.pyi │ │ │ │ │ ├── http │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── body.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── message.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ ├── unreader.pyi │ │ │ │ │ └── wsgi.pyi │ │ │ │ │ ├── instrument │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── statsd.pyi │ │ │ │ │ ├── pidfile.pyi │ │ │ │ │ ├── reloader.pyi │ │ │ │ │ ├── sock.pyi │ │ │ │ │ ├── systemd.pyi │ │ │ │ │ ├── util.pyi │ │ │ │ │ └── workers │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── base_async.pyi │ │ │ │ │ ├── geventlet.pyi │ │ │ │ │ ├── ggevent.pyi │ │ │ │ │ ├── gthread.pyi │ │ │ │ │ ├── gtornado.pyi │ │ │ │ │ ├── sync.pyi │ │ │ │ │ └── workertmp.pyi │ │ │ │ ├── hdbcli │ │ │ │ └── hdbcli │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── dbapi.pyi │ │ │ │ │ └── resultrow.pyi │ │ │ │ ├── hnswlib │ │ │ │ └── hnswlib.pyi │ │ │ │ ├── html5lib │ │ │ │ └── html5lib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _ihatexml.pyi │ │ │ │ │ ├── _inputstream.pyi │ │ │ │ │ ├── _tokenizer.pyi │ │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ └── py.pyi │ │ │ │ │ ├── _utils.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── alphabeticalattributes.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── inject_meta_charset.pyi │ │ │ │ │ ├── lint.pyi │ │ │ │ │ ├── optionaltags.pyi │ │ │ │ │ ├── sanitizer.pyi │ │ │ │ │ └── whitespace.pyi │ │ │ │ │ ├── html5parser.pyi │ │ │ │ │ ├── serializer.pyi │ │ │ │ │ ├── treeadapters │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── genshi.pyi │ │ │ │ │ └── sax.pyi │ │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── dom.pyi │ │ │ │ │ ├── etree.pyi │ │ │ │ │ └── etree_lxml.pyi │ │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── dom.pyi │ │ │ │ │ ├── etree.pyi │ │ │ │ │ ├── etree_lxml.pyi │ │ │ │ │ └── genshi.pyi │ │ │ │ ├── httplib2 │ │ │ │ └── httplib2 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── auth.pyi │ │ │ │ │ ├── certs.pyi │ │ │ │ │ ├── error.pyi │ │ │ │ │ └── iri2uri.pyi │ │ │ │ ├── hvac │ │ │ │ └── hvac │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adapters.pyi │ │ │ │ │ ├── api │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── auth_methods │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── approle.pyi │ │ │ │ │ │ ├── aws.pyi │ │ │ │ │ │ ├── azure.pyi │ │ │ │ │ │ ├── cert.pyi │ │ │ │ │ │ ├── gcp.pyi │ │ │ │ │ │ ├── github.pyi │ │ │ │ │ │ ├── jwt.pyi │ │ │ │ │ │ ├── kubernetes.pyi │ │ │ │ │ │ ├── ldap.pyi │ │ │ │ │ │ ├── legacy_mfa.pyi │ │ │ │ │ │ ├── oidc.pyi │ │ │ │ │ │ ├── okta.pyi │ │ │ │ │ │ ├── radius.pyi │ │ │ │ │ │ ├── token.pyi │ │ │ │ │ │ └── userpass.pyi │ │ │ │ │ ├── secrets_engines │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── active_directory.pyi │ │ │ │ │ │ ├── aws.pyi │ │ │ │ │ │ ├── azure.pyi │ │ │ │ │ │ ├── consul.pyi │ │ │ │ │ │ ├── database.pyi │ │ │ │ │ │ ├── gcp.pyi │ │ │ │ │ │ ├── identity.pyi │ │ │ │ │ │ ├── kv.pyi │ │ │ │ │ │ ├── kv_v1.pyi │ │ │ │ │ │ ├── kv_v2.pyi │ │ │ │ │ │ ├── ldap.pyi │ │ │ │ │ │ ├── pki.pyi │ │ │ │ │ │ ├── rabbitmq.pyi │ │ │ │ │ │ ├── ssh.pyi │ │ │ │ │ │ ├── transform.pyi │ │ │ │ │ │ └── transit.pyi │ │ │ │ │ ├── system_backend │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── audit.pyi │ │ │ │ │ │ ├── auth.pyi │ │ │ │ │ │ ├── capabilities.pyi │ │ │ │ │ │ ├── health.pyi │ │ │ │ │ │ ├── init.pyi │ │ │ │ │ │ ├── key.pyi │ │ │ │ │ │ ├── leader.pyi │ │ │ │ │ │ ├── lease.pyi │ │ │ │ │ │ ├── mount.pyi │ │ │ │ │ │ ├── namespace.pyi │ │ │ │ │ │ ├── policies.pyi │ │ │ │ │ │ ├── policy.pyi │ │ │ │ │ │ ├── quota.pyi │ │ │ │ │ │ ├── raft.pyi │ │ │ │ │ │ ├── seal.pyi │ │ │ │ │ │ ├── system_backend_mixin.pyi │ │ │ │ │ │ └── wrapping.pyi │ │ │ │ │ ├── vault_api_base.pyi │ │ │ │ │ └── vault_api_category.pyi │ │ │ │ │ ├── aws_utils.pyi │ │ │ │ │ ├── constants │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── approle.pyi │ │ │ │ │ ├── aws.pyi │ │ │ │ │ ├── azure.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── gcp.pyi │ │ │ │ │ ├── identity.pyi │ │ │ │ │ └── transit.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── v1 │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── ibm-db │ │ │ │ └── ibm_db.pyi │ │ │ │ ├── icalendar │ │ │ │ └── icalendar │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── alarms.pyi │ │ │ │ │ ├── attr.pyi │ │ │ │ │ ├── cal.pyi │ │ │ │ │ ├── caselessdict.pyi │ │ │ │ │ ├── enums.pyi │ │ │ │ │ ├── error.pyi │ │ │ │ │ ├── param.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ ├── parser_tools.pyi │ │ │ │ │ ├── prop.pyi │ │ │ │ │ ├── timezone │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── equivalent_timezone_ids.pyi │ │ │ │ │ ├── equivalent_timezone_ids_result.pyi │ │ │ │ │ ├── provider.pyi │ │ │ │ │ ├── pytz.pyi │ │ │ │ │ ├── tzid.pyi │ │ │ │ │ ├── tzp.pyi │ │ │ │ │ ├── windows_to_olson.pyi │ │ │ │ │ └── zoneinfo.pyi │ │ │ │ │ ├── tools.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── inifile │ │ │ │ └── inifile.pyi │ │ │ │ ├── jmespath │ │ │ │ └── jmespath │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ast.pyi │ │ │ │ │ ├── compat.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── functions.pyi │ │ │ │ │ ├── lexer.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ └── visitor.pyi │ │ │ │ ├── jsonnet │ │ │ │ └── _jsonnet.pyi │ │ │ │ ├── jsonschema │ │ │ │ └── jsonschema │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _format.pyi │ │ │ │ │ ├── _keywords.pyi │ │ │ │ │ ├── _legacy_keywords.pyi │ │ │ │ │ ├── _types.pyi │ │ │ │ │ ├── _typing.pyi │ │ │ │ │ ├── _utils.pyi │ │ │ │ │ ├── cli.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── protocols.pyi │ │ │ │ │ └── validators.pyi │ │ │ │ ├── jwcrypto │ │ │ │ └── jwcrypto │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── jwa.pyi │ │ │ │ │ ├── jwe.pyi │ │ │ │ │ ├── jwk.pyi │ │ │ │ │ ├── jws.pyi │ │ │ │ │ └── jwt.pyi │ │ │ │ ├── keyboard │ │ │ │ └── keyboard │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _canonical_names.pyi │ │ │ │ │ ├── _generic.pyi │ │ │ │ │ ├── _keyboard_event.pyi │ │ │ │ │ ├── _mouse_event.pyi │ │ │ │ │ └── mouse.pyi │ │ │ │ ├── ldap3 │ │ │ │ └── ldap3 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── abstract │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── attrDef.pyi │ │ │ │ │ ├── attribute.pyi │ │ │ │ │ ├── cursor.pyi │ │ │ │ │ ├── entry.pyi │ │ │ │ │ └── objectDef.pyi │ │ │ │ │ ├── core │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── connection.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── pooling.pyi │ │ │ │ │ ├── rdns.pyi │ │ │ │ │ ├── results.pyi │ │ │ │ │ ├── server.pyi │ │ │ │ │ ├── timezone.pyi │ │ │ │ │ ├── tls.pyi │ │ │ │ │ └── usage.pyi │ │ │ │ │ ├── extend │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── microsoft │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── addMembersToGroups.pyi │ │ │ │ │ │ ├── dirSync.pyi │ │ │ │ │ │ ├── modifyPassword.pyi │ │ │ │ │ │ ├── persistentSearch.pyi │ │ │ │ │ │ ├── removeMembersFromGroups.pyi │ │ │ │ │ │ └── unlockAccount.pyi │ │ │ │ │ ├── novell │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── addMembersToGroups.pyi │ │ │ │ │ │ ├── checkGroupsMemberships.pyi │ │ │ │ │ │ ├── endTransaction.pyi │ │ │ │ │ │ ├── getBindDn.pyi │ │ │ │ │ │ ├── listReplicas.pyi │ │ │ │ │ │ ├── nmasGetUniversalPassword.pyi │ │ │ │ │ │ ├── nmasSetUniversalPassword.pyi │ │ │ │ │ │ ├── partition_entry_count.pyi │ │ │ │ │ │ ├── removeMembersFromGroups.pyi │ │ │ │ │ │ ├── replicaInfo.pyi │ │ │ │ │ │ └── startTransaction.pyi │ │ │ │ │ ├── operation.pyi │ │ │ │ │ └── standard │ │ │ │ │ │ ├── PagedSearch.pyi │ │ │ │ │ │ ├── PersistentSearch.pyi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── modifyPassword.pyi │ │ │ │ │ │ └── whoAmI.pyi │ │ │ │ │ ├── operation │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── abandon.pyi │ │ │ │ │ ├── add.pyi │ │ │ │ │ ├── bind.pyi │ │ │ │ │ ├── compare.pyi │ │ │ │ │ ├── delete.pyi │ │ │ │ │ ├── extended.pyi │ │ │ │ │ ├── modify.pyi │ │ │ │ │ ├── modifyDn.pyi │ │ │ │ │ ├── search.pyi │ │ │ │ │ └── unbind.pyi │ │ │ │ │ ├── protocol │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── controls.pyi │ │ │ │ │ ├── convert.pyi │ │ │ │ │ ├── formatters │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── formatters.pyi │ │ │ │ │ │ ├── standard.pyi │ │ │ │ │ │ └── validators.pyi │ │ │ │ │ ├── microsoft.pyi │ │ │ │ │ ├── novell.pyi │ │ │ │ │ ├── oid.pyi │ │ │ │ │ ├── persistentSearch.pyi │ │ │ │ │ ├── rfc2696.pyi │ │ │ │ │ ├── rfc2849.pyi │ │ │ │ │ ├── rfc3062.pyi │ │ │ │ │ ├── rfc4511.pyi │ │ │ │ │ ├── rfc4512.pyi │ │ │ │ │ ├── rfc4527.pyi │ │ │ │ │ ├── sasl │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── digestMd5.pyi │ │ │ │ │ │ ├── external.pyi │ │ │ │ │ │ ├── kerberos.pyi │ │ │ │ │ │ ├── plain.pyi │ │ │ │ │ │ └── sasl.pyi │ │ │ │ │ └── schemas │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── ad2012R2.pyi │ │ │ │ │ │ ├── ds389.pyi │ │ │ │ │ │ ├── edir888.pyi │ │ │ │ │ │ ├── edir914.pyi │ │ │ │ │ │ └── slapd24.pyi │ │ │ │ │ ├── strategy │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── asyncStream.pyi │ │ │ │ │ ├── asynchronous.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── ldifProducer.pyi │ │ │ │ │ ├── mockAsync.pyi │ │ │ │ │ ├── mockBase.pyi │ │ │ │ │ ├── mockSync.pyi │ │ │ │ │ ├── restartable.pyi │ │ │ │ │ ├── reusable.pyi │ │ │ │ │ ├── safeRestartable.pyi │ │ │ │ │ ├── safeSync.pyi │ │ │ │ │ └── sync.pyi │ │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── asn1.pyi │ │ │ │ │ ├── ciDict.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ ├── conv.pyi │ │ │ │ │ ├── dn.pyi │ │ │ │ │ ├── hashed.pyi │ │ │ │ │ ├── log.pyi │ │ │ │ │ ├── ntlm.pyi │ │ │ │ │ ├── port_validators.pyi │ │ │ │ │ ├── repr.pyi │ │ │ │ │ ├── tls_backport.pyi │ │ │ │ │ └── uri.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── libsass │ │ │ │ ├── sass.pyi │ │ │ │ └── sassutils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── builder.pyi │ │ │ │ │ ├── distutils.pyi │ │ │ │ │ └── wsgi.pyi │ │ │ │ ├── lunardate │ │ │ │ └── lunardate.pyi │ │ │ │ ├── lupa │ │ │ │ └── lupa │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── lua51.pyi │ │ │ │ │ ├── lua52.pyi │ │ │ │ │ ├── lua53.pyi │ │ │ │ │ ├── lua54.pyi │ │ │ │ │ ├── luajit20.pyi │ │ │ │ │ ├── luajit21.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── lzstring │ │ │ │ └── lzstring │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── m3u8 │ │ │ │ └── m3u8 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── httpclient.pyi │ │ │ │ │ ├── mixins.pyi │ │ │ │ │ ├── model.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ ├── protocol.pyi │ │ │ │ │ ├── version_matching.pyi │ │ │ │ │ └── version_matching_rules.pyi │ │ │ │ ├── mock │ │ │ │ └── mock │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── backports.pyi │ │ │ │ │ └── mock.pyi │ │ │ │ ├── mypy-extensions │ │ │ │ └── mypy_extensions.pyi │ │ │ │ ├── mysqlclient │ │ │ │ └── MySQLdb │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _exceptions.pyi │ │ │ │ │ ├── _mysql.pyi │ │ │ │ │ ├── connections.pyi │ │ │ │ │ ├── constants │ │ │ │ │ ├── CLIENT.pyi │ │ │ │ │ ├── CR.pyi │ │ │ │ │ ├── ER.pyi │ │ │ │ │ ├── FIELD_TYPE.pyi │ │ │ │ │ ├── FLAG.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── converters.pyi │ │ │ │ │ ├── cursors.pyi │ │ │ │ │ ├── release.pyi │ │ │ │ │ └── times.pyi │ │ │ │ ├── nanoid │ │ │ │ └── nanoid │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── algorithm.pyi │ │ │ │ │ ├── generate.pyi │ │ │ │ │ ├── method.pyi │ │ │ │ │ ├── non_secure_generate.pyi │ │ │ │ │ └── resources.pyi │ │ │ │ ├── nanoleafapi │ │ │ │ └── nanoleafapi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── digital_twin.pyi │ │ │ │ │ ├── discovery.pyi │ │ │ │ │ └── nanoleaf.pyi │ │ │ │ ├── netaddr │ │ │ │ └── netaddr │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cli.pyi │ │ │ │ │ ├── compat.pyi │ │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── subnet_splitter.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── eui │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── ieee.pyi │ │ │ │ │ ├── fbsocket.pyi │ │ │ │ │ ├── ip │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── glob.pyi │ │ │ │ │ ├── iana.pyi │ │ │ │ │ ├── nmap.pyi │ │ │ │ │ ├── rfc1924.pyi │ │ │ │ │ └── sets.pyi │ │ │ │ │ └── strategy │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── eui48.pyi │ │ │ │ │ ├── eui64.pyi │ │ │ │ │ ├── ipv4.pyi │ │ │ │ │ └── ipv6.pyi │ │ │ │ ├── netifaces │ │ │ │ └── netifaces.pyi │ │ │ │ ├── networkx │ │ │ │ └── networkx │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _typing.pyi │ │ │ │ │ ├── algorithms │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── approximation │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── clique.pyi │ │ │ │ │ │ ├── clustering_coefficient.pyi │ │ │ │ │ │ ├── connectivity.pyi │ │ │ │ │ │ ├── density.pyi │ │ │ │ │ │ ├── distance_measures.pyi │ │ │ │ │ │ ├── dominating_set.pyi │ │ │ │ │ │ ├── kcomponents.pyi │ │ │ │ │ │ ├── matching.pyi │ │ │ │ │ │ ├── maxcut.pyi │ │ │ │ │ │ ├── ramsey.pyi │ │ │ │ │ │ ├── steinertree.pyi │ │ │ │ │ │ ├── traveling_salesman.pyi │ │ │ │ │ │ ├── treewidth.pyi │ │ │ │ │ │ └── vertex_cover.pyi │ │ │ │ │ ├── assortativity │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── connectivity.pyi │ │ │ │ │ │ ├── correlation.pyi │ │ │ │ │ │ ├── mixing.pyi │ │ │ │ │ │ ├── neighbor_degree.pyi │ │ │ │ │ │ └── pairs.pyi │ │ │ │ │ ├── asteroidal.pyi │ │ │ │ │ ├── bipartite │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── basic.pyi │ │ │ │ │ │ ├── centrality.pyi │ │ │ │ │ │ ├── cluster.pyi │ │ │ │ │ │ ├── covering.pyi │ │ │ │ │ │ ├── edgelist.pyi │ │ │ │ │ │ ├── extendability.pyi │ │ │ │ │ │ ├── generators.pyi │ │ │ │ │ │ ├── link_analysis.pyi │ │ │ │ │ │ ├── matching.pyi │ │ │ │ │ │ ├── matrix.pyi │ │ │ │ │ │ ├── projection.pyi │ │ │ │ │ │ ├── redundancy.pyi │ │ │ │ │ │ └── spectral.pyi │ │ │ │ │ ├── boundary.pyi │ │ │ │ │ ├── bridges.pyi │ │ │ │ │ ├── broadcasting.pyi │ │ │ │ │ ├── centrality │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── betweenness.pyi │ │ │ │ │ │ ├── betweenness_subset.pyi │ │ │ │ │ │ ├── closeness.pyi │ │ │ │ │ │ ├── current_flow_betweenness.pyi │ │ │ │ │ │ ├── current_flow_betweenness_subset.pyi │ │ │ │ │ │ ├── current_flow_closeness.pyi │ │ │ │ │ │ ├── degree_alg.pyi │ │ │ │ │ │ ├── dispersion.pyi │ │ │ │ │ │ ├── eigenvector.pyi │ │ │ │ │ │ ├── flow_matrix.pyi │ │ │ │ │ │ ├── group.pyi │ │ │ │ │ │ ├── harmonic.pyi │ │ │ │ │ │ ├── katz.pyi │ │ │ │ │ │ ├── laplacian.pyi │ │ │ │ │ │ ├── load.pyi │ │ │ │ │ │ ├── percolation.pyi │ │ │ │ │ │ ├── reaching.pyi │ │ │ │ │ │ ├── second_order.pyi │ │ │ │ │ │ ├── subgraph_alg.pyi │ │ │ │ │ │ ├── trophic.pyi │ │ │ │ │ │ └── voterank_alg.pyi │ │ │ │ │ ├── chains.pyi │ │ │ │ │ ├── chordal.pyi │ │ │ │ │ ├── clique.pyi │ │ │ │ │ ├── cluster.pyi │ │ │ │ │ ├── coloring │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── equitable_coloring.pyi │ │ │ │ │ │ └── greedy_coloring.pyi │ │ │ │ │ ├── communicability_alg.pyi │ │ │ │ │ ├── community │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── asyn_fluid.pyi │ │ │ │ │ │ ├── centrality.pyi │ │ │ │ │ │ ├── community_utils.pyi │ │ │ │ │ │ ├── divisive.pyi │ │ │ │ │ │ ├── kclique.pyi │ │ │ │ │ │ ├── kernighan_lin.pyi │ │ │ │ │ │ ├── label_propagation.pyi │ │ │ │ │ │ ├── leiden.pyi │ │ │ │ │ │ ├── local.pyi │ │ │ │ │ │ ├── louvain.pyi │ │ │ │ │ │ ├── lukes.pyi │ │ │ │ │ │ ├── modularity_max.pyi │ │ │ │ │ │ └── quality.pyi │ │ │ │ │ ├── components │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── attracting.pyi │ │ │ │ │ │ ├── biconnected.pyi │ │ │ │ │ │ ├── connected.pyi │ │ │ │ │ │ ├── semiconnected.pyi │ │ │ │ │ │ ├── strongly_connected.pyi │ │ │ │ │ │ └── weakly_connected.pyi │ │ │ │ │ ├── connectivity │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── connectivity.pyi │ │ │ │ │ │ ├── cuts.pyi │ │ │ │ │ │ ├── disjoint_paths.pyi │ │ │ │ │ │ ├── edge_augmentation.pyi │ │ │ │ │ │ ├── edge_kcomponents.pyi │ │ │ │ │ │ ├── kcomponents.pyi │ │ │ │ │ │ ├── kcutsets.pyi │ │ │ │ │ │ ├── stoerwagner.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── covering.pyi │ │ │ │ │ ├── cuts.pyi │ │ │ │ │ ├── cycles.pyi │ │ │ │ │ ├── d_separation.pyi │ │ │ │ │ ├── dag.pyi │ │ │ │ │ ├── distance_measures.pyi │ │ │ │ │ ├── distance_regular.pyi │ │ │ │ │ ├── dominance.pyi │ │ │ │ │ ├── dominating.pyi │ │ │ │ │ ├── efficiency_measures.pyi │ │ │ │ │ ├── euler.pyi │ │ │ │ │ ├── flow │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── boykovkolmogorov.pyi │ │ │ │ │ │ ├── capacityscaling.pyi │ │ │ │ │ │ ├── dinitz_alg.pyi │ │ │ │ │ │ ├── edmondskarp.pyi │ │ │ │ │ │ ├── gomory_hu.pyi │ │ │ │ │ │ ├── maxflow.pyi │ │ │ │ │ │ ├── mincost.pyi │ │ │ │ │ │ ├── networksimplex.pyi │ │ │ │ │ │ ├── preflowpush.pyi │ │ │ │ │ │ ├── shortestaugmentingpath.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── graph_hashing.pyi │ │ │ │ │ ├── graphical.pyi │ │ │ │ │ ├── hierarchy.pyi │ │ │ │ │ ├── hybrid.pyi │ │ │ │ │ ├── isolate.pyi │ │ │ │ │ ├── isomorphism │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── ismags.pyi │ │ │ │ │ │ ├── isomorph.pyi │ │ │ │ │ │ ├── isomorphvf2.pyi │ │ │ │ │ │ ├── matchhelpers.pyi │ │ │ │ │ │ ├── temporalisomorphvf2.pyi │ │ │ │ │ │ ├── tree_isomorphism.pyi │ │ │ │ │ │ ├── vf2pp.pyi │ │ │ │ │ │ └── vf2userfunc.pyi │ │ │ │ │ ├── link_analysis │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── hits_alg.pyi │ │ │ │ │ │ └── pagerank_alg.pyi │ │ │ │ │ ├── link_prediction.pyi │ │ │ │ │ ├── lowest_common_ancestors.pyi │ │ │ │ │ ├── matching.pyi │ │ │ │ │ ├── minors │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── contraction.pyi │ │ │ │ │ ├── mis.pyi │ │ │ │ │ ├── moral.pyi │ │ │ │ │ ├── node_classification.pyi │ │ │ │ │ ├── non_randomness.pyi │ │ │ │ │ ├── operators │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── all.pyi │ │ │ │ │ │ ├── binary.pyi │ │ │ │ │ │ ├── product.pyi │ │ │ │ │ │ └── unary.pyi │ │ │ │ │ ├── perfect_graph.pyi │ │ │ │ │ ├── planar_drawing.pyi │ │ │ │ │ ├── planarity.pyi │ │ │ │ │ ├── polynomials.pyi │ │ │ │ │ ├── reciprocity.pyi │ │ │ │ │ ├── regular.pyi │ │ │ │ │ ├── richclub.pyi │ │ │ │ │ ├── shortest_paths │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── astar.pyi │ │ │ │ │ │ ├── dense.pyi │ │ │ │ │ │ ├── generic.pyi │ │ │ │ │ │ ├── unweighted.pyi │ │ │ │ │ │ └── weighted.pyi │ │ │ │ │ ├── similarity.pyi │ │ │ │ │ ├── simple_paths.pyi │ │ │ │ │ ├── smallworld.pyi │ │ │ │ │ ├── smetric.pyi │ │ │ │ │ ├── sparsifiers.pyi │ │ │ │ │ ├── structuralholes.pyi │ │ │ │ │ ├── summarization.pyi │ │ │ │ │ ├── swap.pyi │ │ │ │ │ ├── threshold.pyi │ │ │ │ │ ├── time_dependent.pyi │ │ │ │ │ ├── tournament.pyi │ │ │ │ │ ├── traversal │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── beamsearch.pyi │ │ │ │ │ │ ├── breadth_first_search.pyi │ │ │ │ │ │ ├── depth_first_search.pyi │ │ │ │ │ │ ├── edgebfs.pyi │ │ │ │ │ │ └── edgedfs.pyi │ │ │ │ │ ├── tree │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── branchings.pyi │ │ │ │ │ │ ├── coding.pyi │ │ │ │ │ │ ├── decomposition.pyi │ │ │ │ │ │ ├── distance_measures.pyi │ │ │ │ │ │ ├── mst.pyi │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ └── recognition.pyi │ │ │ │ │ ├── triads.pyi │ │ │ │ │ ├── vitality.pyi │ │ │ │ │ ├── voronoi.pyi │ │ │ │ │ ├── walks.pyi │ │ │ │ │ └── wiener.pyi │ │ │ │ │ ├── classes │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── coreviews.pyi │ │ │ │ │ ├── digraph.pyi │ │ │ │ │ ├── filters.pyi │ │ │ │ │ ├── function.pyi │ │ │ │ │ ├── graph.pyi │ │ │ │ │ ├── graphviews.pyi │ │ │ │ │ ├── multidigraph.pyi │ │ │ │ │ ├── multigraph.pyi │ │ │ │ │ └── reportviews.pyi │ │ │ │ │ ├── convert.pyi │ │ │ │ │ ├── convert_matrix.pyi │ │ │ │ │ ├── drawing │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── layout.pyi │ │ │ │ │ ├── nx_agraph.pyi │ │ │ │ │ ├── nx_latex.pyi │ │ │ │ │ ├── nx_pydot.pyi │ │ │ │ │ └── nx_pylab.pyi │ │ │ │ │ ├── exception.pyi │ │ │ │ │ ├── generators │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── atlas.pyi │ │ │ │ │ ├── classic.pyi │ │ │ │ │ ├── cographs.pyi │ │ │ │ │ ├── community.pyi │ │ │ │ │ ├── degree_seq.pyi │ │ │ │ │ ├── directed.pyi │ │ │ │ │ ├── duplication.pyi │ │ │ │ │ ├── ego.pyi │ │ │ │ │ ├── expanders.pyi │ │ │ │ │ ├── geometric.pyi │ │ │ │ │ ├── harary_graph.pyi │ │ │ │ │ ├── internet_as_graphs.pyi │ │ │ │ │ ├── intersection.pyi │ │ │ │ │ ├── interval_graph.pyi │ │ │ │ │ ├── joint_degree_seq.pyi │ │ │ │ │ ├── lattice.pyi │ │ │ │ │ ├── line.pyi │ │ │ │ │ ├── mycielski.pyi │ │ │ │ │ ├── nonisomorphic_trees.pyi │ │ │ │ │ ├── random_clustered.pyi │ │ │ │ │ ├── random_graphs.pyi │ │ │ │ │ ├── small.pyi │ │ │ │ │ ├── social.pyi │ │ │ │ │ ├── spectral_graph_forge.pyi │ │ │ │ │ ├── stochastic.pyi │ │ │ │ │ ├── sudoku.pyi │ │ │ │ │ ├── time_series.pyi │ │ │ │ │ ├── trees.pyi │ │ │ │ │ └── triads.pyi │ │ │ │ │ ├── lazy_imports.pyi │ │ │ │ │ ├── linalg │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── algebraicconnectivity.pyi │ │ │ │ │ ├── attrmatrix.pyi │ │ │ │ │ ├── bethehessianmatrix.pyi │ │ │ │ │ ├── graphmatrix.pyi │ │ │ │ │ ├── laplacianmatrix.pyi │ │ │ │ │ ├── modularitymatrix.pyi │ │ │ │ │ └── spectrum.pyi │ │ │ │ │ ├── readwrite │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adjlist.pyi │ │ │ │ │ ├── edgelist.pyi │ │ │ │ │ ├── gexf.pyi │ │ │ │ │ ├── gml.pyi │ │ │ │ │ ├── graph6.pyi │ │ │ │ │ ├── graphml.pyi │ │ │ │ │ ├── json_graph │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── adjacency.pyi │ │ │ │ │ │ ├── cytoscape.pyi │ │ │ │ │ │ ├── node_link.pyi │ │ │ │ │ │ └── tree.pyi │ │ │ │ │ ├── leda.pyi │ │ │ │ │ ├── multiline_adjlist.pyi │ │ │ │ │ ├── p2g.pyi │ │ │ │ │ ├── pajek.pyi │ │ │ │ │ ├── sparse6.pyi │ │ │ │ │ └── text.pyi │ │ │ │ │ ├── relabel.pyi │ │ │ │ │ └── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── backends.pyi │ │ │ │ │ ├── configs.pyi │ │ │ │ │ ├── decorators.pyi │ │ │ │ │ ├── heaps.pyi │ │ │ │ │ ├── mapped_queue.pyi │ │ │ │ │ ├── misc.pyi │ │ │ │ │ ├── random_sequence.pyi │ │ │ │ │ ├── rcm.pyi │ │ │ │ │ └── union_find.pyi │ │ │ │ ├── oauthlib │ │ │ │ └── oauthlib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── oauth1 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── rfc5849 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── access_token.pyi │ │ │ │ │ │ ├── authorization.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── pre_configured.pyi │ │ │ │ │ │ ├── request_token.pyi │ │ │ │ │ │ ├── resource.pyi │ │ │ │ │ │ └── signature_only.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ │ ├── request_validator.pyi │ │ │ │ │ │ ├── signature.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── oauth2 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── rfc6749 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── clients │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── backend_application.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── legacy_application.pyi │ │ │ │ │ │ │ ├── mobile_application.pyi │ │ │ │ │ │ │ ├── service_application.pyi │ │ │ │ │ │ │ └── web_application.pyi │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── authorization.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── introspect.pyi │ │ │ │ │ │ │ ├── metadata.pyi │ │ │ │ │ │ │ ├── pre_configured.pyi │ │ │ │ │ │ │ ├── resource.pyi │ │ │ │ │ │ │ ├── revocation.pyi │ │ │ │ │ │ │ └── token.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ ├── grant_types │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── authorization_code.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── client_credentials.pyi │ │ │ │ │ │ │ ├── implicit.pyi │ │ │ │ │ │ │ ├── refresh_token.pyi │ │ │ │ │ │ │ └── resource_owner_password_credentials.pyi │ │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ │ ├── request_validator.pyi │ │ │ │ │ │ ├── tokens.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ └── rfc8628 │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── clients │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── device.pyi │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── device_authorization.pyi │ │ │ │ │ │ └── pre_configured.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ ├── grant_types │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── device_code.pyi │ │ │ │ │ │ └── request_validator.pyi │ │ │ │ │ ├── openid │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── connect │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── core │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── pre_configured.pyi │ │ │ │ │ │ └── userinfo.pyi │ │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ │ ├── grant_types │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── authorization_code.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── dispatchers.pyi │ │ │ │ │ │ ├── hybrid.pyi │ │ │ │ │ │ ├── implicit.pyi │ │ │ │ │ │ └── refresh_token.pyi │ │ │ │ │ │ ├── request_validator.pyi │ │ │ │ │ │ └── tokens.pyi │ │ │ │ │ ├── signals.pyi │ │ │ │ │ └── uri_validate.pyi │ │ │ │ ├── objgraph │ │ │ │ └── objgraph.pyi │ │ │ │ ├── olefile │ │ │ │ └── olefile │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── olefile.pyi │ │ │ │ ├── openpyxl │ │ │ │ └── openpyxl │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _constants.pyi │ │ │ │ │ ├── cell │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _writer.pyi │ │ │ │ │ ├── cell.pyi │ │ │ │ │ ├── read_only.pyi │ │ │ │ │ ├── rich_text.pyi │ │ │ │ │ └── text.pyi │ │ │ │ │ ├── chart │ │ │ │ │ ├── _3d.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _chart.pyi │ │ │ │ │ ├── area_chart.pyi │ │ │ │ │ ├── axis.pyi │ │ │ │ │ ├── bar_chart.pyi │ │ │ │ │ ├── bubble_chart.pyi │ │ │ │ │ ├── chartspace.pyi │ │ │ │ │ ├── data_source.pyi │ │ │ │ │ ├── descriptors.pyi │ │ │ │ │ ├── error_bar.pyi │ │ │ │ │ ├── label.pyi │ │ │ │ │ ├── layout.pyi │ │ │ │ │ ├── legend.pyi │ │ │ │ │ ├── line_chart.pyi │ │ │ │ │ ├── marker.pyi │ │ │ │ │ ├── picture.pyi │ │ │ │ │ ├── pie_chart.pyi │ │ │ │ │ ├── pivot.pyi │ │ │ │ │ ├── plotarea.pyi │ │ │ │ │ ├── print_settings.pyi │ │ │ │ │ ├── radar_chart.pyi │ │ │ │ │ ├── reader.pyi │ │ │ │ │ ├── reference.pyi │ │ │ │ │ ├── scatter_chart.pyi │ │ │ │ │ ├── series.pyi │ │ │ │ │ ├── series_factory.pyi │ │ │ │ │ ├── shapes.pyi │ │ │ │ │ ├── stock_chart.pyi │ │ │ │ │ ├── surface_chart.pyi │ │ │ │ │ ├── text.pyi │ │ │ │ │ ├── title.pyi │ │ │ │ │ ├── trendline.pyi │ │ │ │ │ └── updown_bars.pyi │ │ │ │ │ ├── chartsheet │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── chartsheet.pyi │ │ │ │ │ ├── custom.pyi │ │ │ │ │ ├── properties.pyi │ │ │ │ │ ├── protection.pyi │ │ │ │ │ ├── publish.pyi │ │ │ │ │ ├── relation.pyi │ │ │ │ │ └── views.pyi │ │ │ │ │ ├── comments │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── author.pyi │ │ │ │ │ ├── comment_sheet.pyi │ │ │ │ │ ├── comments.pyi │ │ │ │ │ └── shape_writer.pyi │ │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── abc.pyi │ │ │ │ │ ├── numbers.pyi │ │ │ │ │ ├── product.pyi │ │ │ │ │ ├── singleton.pyi │ │ │ │ │ └── strings.pyi │ │ │ │ │ ├── descriptors │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── container.pyi │ │ │ │ │ ├── excel.pyi │ │ │ │ │ ├── namespace.pyi │ │ │ │ │ ├── nested.pyi │ │ │ │ │ ├── sequence.pyi │ │ │ │ │ ├── serialisable.pyi │ │ │ │ │ └── slots.pyi │ │ │ │ │ ├── drawing │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── colors.pyi │ │ │ │ │ ├── connector.pyi │ │ │ │ │ ├── drawing.pyi │ │ │ │ │ ├── effect.pyi │ │ │ │ │ ├── fill.pyi │ │ │ │ │ ├── geometry.pyi │ │ │ │ │ ├── graphic.pyi │ │ │ │ │ ├── image.pyi │ │ │ │ │ ├── line.pyi │ │ │ │ │ ├── picture.pyi │ │ │ │ │ ├── properties.pyi │ │ │ │ │ ├── relation.pyi │ │ │ │ │ ├── spreadsheet_drawing.pyi │ │ │ │ │ ├── text.pyi │ │ │ │ │ └── xdr.pyi │ │ │ │ │ ├── formatting │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── formatting.pyi │ │ │ │ │ └── rule.pyi │ │ │ │ │ ├── formula │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── tokenizer.pyi │ │ │ │ │ └── translate.pyi │ │ │ │ │ ├── packaging │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── custom.pyi │ │ │ │ │ ├── extended.pyi │ │ │ │ │ ├── interface.pyi │ │ │ │ │ ├── manifest.pyi │ │ │ │ │ ├── relationship.pyi │ │ │ │ │ └── workbook.pyi │ │ │ │ │ ├── pivot │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cache.pyi │ │ │ │ │ ├── fields.pyi │ │ │ │ │ ├── record.pyi │ │ │ │ │ └── table.pyi │ │ │ │ │ ├── reader │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── drawings.pyi │ │ │ │ │ ├── excel.pyi │ │ │ │ │ ├── strings.pyi │ │ │ │ │ └── workbook.pyi │ │ │ │ │ ├── styles │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── alignment.pyi │ │ │ │ │ ├── borders.pyi │ │ │ │ │ ├── builtins.pyi │ │ │ │ │ ├── cell_style.pyi │ │ │ │ │ ├── colors.pyi │ │ │ │ │ ├── differential.pyi │ │ │ │ │ ├── fills.pyi │ │ │ │ │ ├── fonts.pyi │ │ │ │ │ ├── named_styles.pyi │ │ │ │ │ ├── numbers.pyi │ │ │ │ │ ├── protection.pyi │ │ │ │ │ ├── proxy.pyi │ │ │ │ │ ├── styleable.pyi │ │ │ │ │ ├── stylesheet.pyi │ │ │ │ │ └── table.pyi │ │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── bound_dictionary.pyi │ │ │ │ │ ├── cell.pyi │ │ │ │ │ ├── dataframe.pyi │ │ │ │ │ ├── datetime.pyi │ │ │ │ │ ├── escape.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── formulas.pyi │ │ │ │ │ ├── indexed_list.pyi │ │ │ │ │ ├── inference.pyi │ │ │ │ │ ├── protection.pyi │ │ │ │ │ └── units.pyi │ │ │ │ │ ├── workbook │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _writer.pyi │ │ │ │ │ ├── child.pyi │ │ │ │ │ ├── defined_name.pyi │ │ │ │ │ ├── external_link │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── external.pyi │ │ │ │ │ ├── external_reference.pyi │ │ │ │ │ ├── function_group.pyi │ │ │ │ │ ├── properties.pyi │ │ │ │ │ ├── protection.pyi │ │ │ │ │ ├── smart_tags.pyi │ │ │ │ │ ├── views.pyi │ │ │ │ │ ├── web.pyi │ │ │ │ │ └── workbook.pyi │ │ │ │ │ ├── worksheet │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _read_only.pyi │ │ │ │ │ ├── _reader.pyi │ │ │ │ │ ├── _write_only.pyi │ │ │ │ │ ├── _writer.pyi │ │ │ │ │ ├── cell_range.pyi │ │ │ │ │ ├── cell_watch.pyi │ │ │ │ │ ├── controls.pyi │ │ │ │ │ ├── copier.pyi │ │ │ │ │ ├── custom.pyi │ │ │ │ │ ├── datavalidation.pyi │ │ │ │ │ ├── dimensions.pyi │ │ │ │ │ ├── drawing.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── filters.pyi │ │ │ │ │ ├── formula.pyi │ │ │ │ │ ├── header_footer.pyi │ │ │ │ │ ├── hyperlink.pyi │ │ │ │ │ ├── merge.pyi │ │ │ │ │ ├── ole.pyi │ │ │ │ │ ├── page.pyi │ │ │ │ │ ├── pagebreak.pyi │ │ │ │ │ ├── picture.pyi │ │ │ │ │ ├── print_settings.pyi │ │ │ │ │ ├── properties.pyi │ │ │ │ │ ├── protection.pyi │ │ │ │ │ ├── related.pyi │ │ │ │ │ ├── scenario.pyi │ │ │ │ │ ├── smart_tag.pyi │ │ │ │ │ ├── table.pyi │ │ │ │ │ ├── views.pyi │ │ │ │ │ └── worksheet.pyi │ │ │ │ │ ├── writer │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── excel.pyi │ │ │ │ │ └── theme.pyi │ │ │ │ │ └── xml │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _functions_overloads.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ └── functions.pyi │ │ │ │ ├── opentracing │ │ │ │ └── opentracing │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ext │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── tags.pyi │ │ │ │ │ ├── harness │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── api_check.pyi │ │ │ │ │ └── scope_check.pyi │ │ │ │ │ ├── logs.pyi │ │ │ │ │ ├── mocktracer │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── binary_propagator.pyi │ │ │ │ │ ├── context.pyi │ │ │ │ │ ├── propagator.pyi │ │ │ │ │ ├── span.pyi │ │ │ │ │ ├── text_propagator.pyi │ │ │ │ │ └── tracer.pyi │ │ │ │ │ ├── propagation.pyi │ │ │ │ │ ├── scope.pyi │ │ │ │ │ ├── scope_manager.pyi │ │ │ │ │ ├── scope_managers │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── asyncio.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── contextvars.pyi │ │ │ │ │ ├── gevent.pyi │ │ │ │ │ └── tornado.pyi │ │ │ │ │ ├── span.pyi │ │ │ │ │ ├── tags.pyi │ │ │ │ │ └── tracer.pyi │ │ │ │ ├── paramiko │ │ │ │ └── paramiko │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _winapi.pyi │ │ │ │ │ ├── agent.pyi │ │ │ │ │ ├── auth_handler.pyi │ │ │ │ │ ├── auth_strategy.pyi │ │ │ │ │ ├── ber.pyi │ │ │ │ │ ├── buffered_pipe.pyi │ │ │ │ │ ├── channel.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── compress.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ ├── ecdsakey.pyi │ │ │ │ │ ├── ed25519key.pyi │ │ │ │ │ ├── file.pyi │ │ │ │ │ ├── hostkeys.pyi │ │ │ │ │ ├── kex_curve25519.pyi │ │ │ │ │ ├── kex_ecdh_nist.pyi │ │ │ │ │ ├── kex_gex.pyi │ │ │ │ │ ├── kex_group1.pyi │ │ │ │ │ ├── kex_group14.pyi │ │ │ │ │ ├── kex_group16.pyi │ │ │ │ │ ├── kex_gss.pyi │ │ │ │ │ ├── message.pyi │ │ │ │ │ ├── packet.pyi │ │ │ │ │ ├── pipe.pyi │ │ │ │ │ ├── pkey.pyi │ │ │ │ │ ├── primes.pyi │ │ │ │ │ ├── proxy.pyi │ │ │ │ │ ├── rsakey.pyi │ │ │ │ │ ├── server.pyi │ │ │ │ │ ├── sftp.pyi │ │ │ │ │ ├── sftp_attr.pyi │ │ │ │ │ ├── sftp_client.pyi │ │ │ │ │ ├── sftp_file.pyi │ │ │ │ │ ├── sftp_handle.pyi │ │ │ │ │ ├── sftp_server.pyi │ │ │ │ │ ├── sftp_si.pyi │ │ │ │ │ ├── ssh_exception.pyi │ │ │ │ │ ├── ssh_gss.pyi │ │ │ │ │ ├── transport.pyi │ │ │ │ │ ├── util.pyi │ │ │ │ │ ├── win_openssh.pyi │ │ │ │ │ └── win_pageant.pyi │ │ │ │ ├── parsimonious │ │ │ │ └── parsimonious │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── expressions.pyi │ │ │ │ │ ├── grammar.pyi │ │ │ │ │ ├── nodes.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── passlib │ │ │ │ └── passlib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── apache.pyi │ │ │ │ │ ├── apps.pyi │ │ │ │ │ ├── context.pyi │ │ │ │ │ ├── crypto │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _blowfish │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _gen_files.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ └── unrolled.pyi │ │ │ │ │ ├── _md4.pyi │ │ │ │ │ ├── des.pyi │ │ │ │ │ ├── digest.pyi │ │ │ │ │ └── scrypt │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── _builtin.pyi │ │ │ │ │ │ ├── _gen_files.pyi │ │ │ │ │ │ └── _salsa.pyi │ │ │ │ │ ├── exc.pyi │ │ │ │ │ ├── ext │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── django │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── handlers │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── argon2.pyi │ │ │ │ │ ├── bcrypt.pyi │ │ │ │ │ ├── cisco.pyi │ │ │ │ │ ├── des_crypt.pyi │ │ │ │ │ ├── digests.pyi │ │ │ │ │ ├── django.pyi │ │ │ │ │ ├── fshp.pyi │ │ │ │ │ ├── ldap_digests.pyi │ │ │ │ │ ├── md5_crypt.pyi │ │ │ │ │ ├── misc.pyi │ │ │ │ │ ├── mssql.pyi │ │ │ │ │ ├── mysql.pyi │ │ │ │ │ ├── oracle.pyi │ │ │ │ │ ├── pbkdf2.pyi │ │ │ │ │ ├── phpass.pyi │ │ │ │ │ ├── postgres.pyi │ │ │ │ │ ├── roundup.pyi │ │ │ │ │ ├── scram.pyi │ │ │ │ │ ├── scrypt.pyi │ │ │ │ │ ├── sha1_crypt.pyi │ │ │ │ │ ├── sha2_crypt.pyi │ │ │ │ │ ├── sun_md5_crypt.pyi │ │ │ │ │ └── windows.pyi │ │ │ │ │ ├── hash.pyi │ │ │ │ │ ├── hosts.pyi │ │ │ │ │ ├── ifc.pyi │ │ │ │ │ ├── pwd.pyi │ │ │ │ │ ├── registry.pyi │ │ │ │ │ ├── totp.pyi │ │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── binary.pyi │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── _ordered_dict.pyi │ │ │ │ │ ├── decor.pyi │ │ │ │ │ ├── des.pyi │ │ │ │ │ ├── handlers.pyi │ │ │ │ │ ├── md4.pyi │ │ │ │ │ └── pbkdf2.pyi │ │ │ │ │ └── win32.pyi │ │ │ │ ├── passpy │ │ │ │ └── passpy │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── store.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── peewee │ │ │ │ ├── peewee.pyi │ │ │ │ └── playhouse │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── flask_utils.pyi │ │ │ │ ├── pep8-naming │ │ │ │ └── pep8ext_naming.pyi │ │ │ │ ├── pexpect │ │ │ │ └── pexpect │ │ │ │ │ ├── ANSI.pyi │ │ │ │ │ ├── FSM.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _async.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── expect.pyi │ │ │ │ │ ├── fdpexpect.pyi │ │ │ │ │ ├── popen_spawn.pyi │ │ │ │ │ ├── pty_spawn.pyi │ │ │ │ │ ├── pxssh.pyi │ │ │ │ │ ├── replwrap.pyi │ │ │ │ │ ├── run.pyi │ │ │ │ │ ├── screen.pyi │ │ │ │ │ ├── socket_pexpect.pyi │ │ │ │ │ ├── spawnbase.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── pika │ │ │ │ └── pika │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adapters │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── asyncio_connection.pyi │ │ │ │ │ ├── base_connection.pyi │ │ │ │ │ ├── blocking_connection.pyi │ │ │ │ │ ├── gevent_connection.pyi │ │ │ │ │ ├── select_connection.pyi │ │ │ │ │ ├── tornado_connection.pyi │ │ │ │ │ ├── twisted_connection.pyi │ │ │ │ │ └── utils │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── connection_workflow.pyi │ │ │ │ │ │ ├── io_services_utils.pyi │ │ │ │ │ │ ├── nbio_interface.pyi │ │ │ │ │ │ └── selector_ioloop_adapter.pyi │ │ │ │ │ ├── amqp_object.pyi │ │ │ │ │ ├── callback.pyi │ │ │ │ │ ├── channel.pyi │ │ │ │ │ ├── compat.pyi │ │ │ │ │ ├── connection.pyi │ │ │ │ │ ├── credentials.pyi │ │ │ │ │ ├── data.pyi │ │ │ │ │ ├── delivery_mode.pyi │ │ │ │ │ ├── diagnostic_utils.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── exchange_type.pyi │ │ │ │ │ ├── frame.pyi │ │ │ │ │ ├── heartbeat.pyi │ │ │ │ │ ├── spec.pyi │ │ │ │ │ ├── tcp_socket_opts.pyi │ │ │ │ │ └── validators.pyi │ │ │ │ ├── polib │ │ │ │ └── polib.pyi │ │ │ │ ├── pony │ │ │ │ └── pony │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── converting.pyi │ │ │ │ │ ├── flask │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── example │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── app.pyi │ │ │ │ │ │ ├── config.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ └── views.pyi │ │ │ │ │ ├── options.pyi │ │ │ │ │ ├── orm │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── asttranslation.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── dbapiprovider.pyi │ │ │ │ │ ├── dbproviders │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── cockroach.pyi │ │ │ │ │ │ ├── mysql.pyi │ │ │ │ │ │ ├── oracle.pyi │ │ │ │ │ │ ├── postgres.pyi │ │ │ │ │ │ └── sqlite.pyi │ │ │ │ │ ├── dbschema.pyi │ │ │ │ │ ├── decompiling.pyi │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── alessandro_bug.pyi │ │ │ │ │ │ ├── bottle_example.pyi │ │ │ │ │ │ ├── bug_ben.pyi │ │ │ │ │ │ ├── compositekeys.pyi │ │ │ │ │ │ ├── demo.pyi │ │ │ │ │ │ ├── estore.pyi │ │ │ │ │ │ ├── inheritance1.pyi │ │ │ │ │ │ ├── numbers.pyi │ │ │ │ │ │ ├── session01.pyi │ │ │ │ │ │ ├── university1.pyi │ │ │ │ │ │ └── university2.pyi │ │ │ │ │ ├── integration │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── bottle_plugin.pyi │ │ │ │ │ ├── ormtypes.pyi │ │ │ │ │ ├── serialization.pyi │ │ │ │ │ ├── sqlbuilding.pyi │ │ │ │ │ ├── sqlsymbols.pyi │ │ │ │ │ └── sqltranslation.pyi │ │ │ │ │ ├── py23compat.pyi │ │ │ │ │ ├── thirdparty │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── decorator.pyi │ │ │ │ │ └── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── properties.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── portpicker │ │ │ │ └── portpicker.pyi │ │ │ │ ├── protobuf │ │ │ │ └── google │ │ │ │ │ ├── _upb │ │ │ │ │ └── _message.pyi │ │ │ │ │ └── protobuf │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── any_pb2.pyi │ │ │ │ │ ├── api_pb2.pyi │ │ │ │ │ ├── compiler │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── plugin_pb2.pyi │ │ │ │ │ ├── descriptor.pyi │ │ │ │ │ ├── descriptor_database.pyi │ │ │ │ │ ├── descriptor_pb2.pyi │ │ │ │ │ ├── descriptor_pool.pyi │ │ │ │ │ ├── duration_pb2.pyi │ │ │ │ │ ├── empty_pb2.pyi │ │ │ │ │ ├── field_mask_pb2.pyi │ │ │ │ │ ├── internal │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── api_implementation.pyi │ │ │ │ │ ├── builder.pyi │ │ │ │ │ ├── containers.pyi │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ ├── encoder.pyi │ │ │ │ │ ├── enum_type_wrapper.pyi │ │ │ │ │ ├── extension_dict.pyi │ │ │ │ │ ├── message_listener.pyi │ │ │ │ │ ├── python_message.pyi │ │ │ │ │ ├── type_checkers.pyi │ │ │ │ │ ├── well_known_types.pyi │ │ │ │ │ └── wire_format.pyi │ │ │ │ │ ├── json_format.pyi │ │ │ │ │ ├── message.pyi │ │ │ │ │ ├── message_factory.pyi │ │ │ │ │ ├── reflection.pyi │ │ │ │ │ ├── runtime_version.pyi │ │ │ │ │ ├── source_context_pb2.pyi │ │ │ │ │ ├── struct_pb2.pyi │ │ │ │ │ ├── symbol_database.pyi │ │ │ │ │ ├── text_format.pyi │ │ │ │ │ ├── timestamp_pb2.pyi │ │ │ │ │ ├── type_pb2.pyi │ │ │ │ │ ├── util │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── wrappers_pb2.pyi │ │ │ │ ├── psutil │ │ │ │ └── psutil │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _common.pyi │ │ │ │ │ ├── _psaix.pyi │ │ │ │ │ ├── _psbsd.pyi │ │ │ │ │ ├── _pslinux.pyi │ │ │ │ │ ├── _psosx.pyi │ │ │ │ │ ├── _psposix.pyi │ │ │ │ │ ├── _pssunos.pyi │ │ │ │ │ ├── _psutil_aix.pyi │ │ │ │ │ ├── _psutil_bsd.pyi │ │ │ │ │ ├── _psutil_linux.pyi │ │ │ │ │ ├── _psutil_osx.pyi │ │ │ │ │ ├── _psutil_sunos.pyi │ │ │ │ │ ├── _psutil_windows.pyi │ │ │ │ │ └── _pswindows.pyi │ │ │ │ ├── psycopg2 │ │ │ │ └── psycopg2 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _ipaddress.pyi │ │ │ │ │ ├── _json.pyi │ │ │ │ │ ├── _psycopg.pyi │ │ │ │ │ ├── _range.pyi │ │ │ │ │ ├── errorcodes.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── extensions.pyi │ │ │ │ │ ├── extras.pyi │ │ │ │ │ ├── pool.pyi │ │ │ │ │ ├── sql.pyi │ │ │ │ │ └── tz.pyi │ │ │ │ ├── pyRFC3339 │ │ │ │ └── pyrfc3339 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── generator.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── pyasn1 │ │ │ │ └── pyasn1 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── codec │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ber │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ │ ├── encoder.pyi │ │ │ │ │ │ └── eoo.pyi │ │ │ │ │ ├── cer │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ │ └── encoder.pyi │ │ │ │ │ ├── der │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ │ └── encoder.pyi │ │ │ │ │ ├── native │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ │ └── encoder.pyi │ │ │ │ │ └── streaming.pyi │ │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── integer.pyi │ │ │ │ │ ├── debug.pyi │ │ │ │ │ ├── error.pyi │ │ │ │ │ └── type │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── char.pyi │ │ │ │ │ ├── constraint.pyi │ │ │ │ │ ├── error.pyi │ │ │ │ │ ├── namedtype.pyi │ │ │ │ │ ├── namedval.pyi │ │ │ │ │ ├── opentype.pyi │ │ │ │ │ ├── tag.pyi │ │ │ │ │ ├── tagmap.pyi │ │ │ │ │ ├── univ.pyi │ │ │ │ │ └── useful.pyi │ │ │ │ ├── pyaudio │ │ │ │ └── pyaudio.pyi │ │ │ │ ├── pycocotools │ │ │ │ └── pycocotools │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── coco.pyi │ │ │ │ │ ├── cocoeval.pyi │ │ │ │ │ └── mask.pyi │ │ │ │ ├── pycurl │ │ │ │ └── pycurl.pyi │ │ │ │ ├── pyfarmhash │ │ │ │ └── farmhash.pyi │ │ │ │ ├── pyflakes │ │ │ │ └── pyflakes │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── __main__.pyi │ │ │ │ │ ├── api.pyi │ │ │ │ │ ├── checker.pyi │ │ │ │ │ ├── messages.pyi │ │ │ │ │ ├── reporter.pyi │ │ │ │ │ └── scripts │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── pyflakes.pyi │ │ │ │ ├── pyinstaller │ │ │ │ ├── PyInstaller │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── __main__.pyi │ │ │ │ │ ├── building │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── api.pyi │ │ │ │ │ │ ├── build_main.pyi │ │ │ │ │ │ ├── datastruct.pyi │ │ │ │ │ │ └── splash.pyi │ │ │ │ │ ├── compat.pyi │ │ │ │ │ ├── depend │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── analysis.pyi │ │ │ │ │ │ └── imphookapi.pyi │ │ │ │ │ ├── isolated │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── _parent.pyi │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── modulegraph │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── modulegraph.pyi │ │ │ │ │ └── utils │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── conda.pyi │ │ │ │ │ │ └── win32 │ │ │ │ │ │ └── versioninfo.pyi │ │ │ │ └── pyi_splash │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── pyjks │ │ │ │ └── jks │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── bks.pyi │ │ │ │ │ ├── jks.pyi │ │ │ │ │ ├── rfc2898.pyi │ │ │ │ │ ├── rfc7292.pyi │ │ │ │ │ ├── sun_crypto.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── pyluach │ │ │ │ └── pyluach │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── dates.pyi │ │ │ │ │ ├── hebrewcal.pyi │ │ │ │ │ ├── parshios.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── pynput │ │ │ │ └── pynput │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _info.pyi │ │ │ │ │ ├── _util.pyi │ │ │ │ │ ├── keyboard │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ └── _dummy.pyi │ │ │ │ │ └── mouse │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ └── _dummy.pyi │ │ │ │ ├── pyperclip │ │ │ │ └── pyperclip │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── pyserial │ │ │ │ └── serial │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── __main__.pyi │ │ │ │ │ ├── rfc2217.pyi │ │ │ │ │ ├── rs485.pyi │ │ │ │ │ ├── serialcli.pyi │ │ │ │ │ ├── serialjava.pyi │ │ │ │ │ ├── serialposix.pyi │ │ │ │ │ ├── serialutil.pyi │ │ │ │ │ ├── serialwin32.pyi │ │ │ │ │ ├── threaded │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── tools │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── hexlify_codec.pyi │ │ │ │ │ ├── list_ports.pyi │ │ │ │ │ ├── list_ports_common.pyi │ │ │ │ │ ├── list_ports_linux.pyi │ │ │ │ │ ├── list_ports_osx.pyi │ │ │ │ │ ├── list_ports_posix.pyi │ │ │ │ │ ├── list_ports_windows.pyi │ │ │ │ │ └── miniterm.pyi │ │ │ │ │ ├── urlhandler │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── protocol_alt.pyi │ │ │ │ │ ├── protocol_cp2110.pyi │ │ │ │ │ ├── protocol_hwgrep.pyi │ │ │ │ │ ├── protocol_loop.pyi │ │ │ │ │ ├── protocol_rfc2217.pyi │ │ │ │ │ ├── protocol_socket.pyi │ │ │ │ │ └── protocol_spy.pyi │ │ │ │ │ └── win32.pyi │ │ │ │ ├── pysftp │ │ │ │ └── pysftp │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ └── helpers.pyi │ │ │ │ ├── pytest-lazy-fixture │ │ │ │ └── pytest_lazyfixture.pyi │ │ │ │ ├── python-crontab │ │ │ │ ├── cronlog.pyi │ │ │ │ ├── crontab.pyi │ │ │ │ └── crontabs.pyi │ │ │ │ ├── python-dateutil │ │ │ │ └── dateutil │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _common.pyi │ │ │ │ │ ├── _version.pyi │ │ │ │ │ ├── easter.pyi │ │ │ │ │ ├── parser │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _parser.pyi │ │ │ │ │ └── isoparser.pyi │ │ │ │ │ ├── relativedelta.pyi │ │ │ │ │ ├── rrule.pyi │ │ │ │ │ ├── tz │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _common.pyi │ │ │ │ │ ├── tz.pyi │ │ │ │ │ └── win.pyi │ │ │ │ │ ├── tzwin.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── zoneinfo │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── rebuild.pyi │ │ │ │ ├── python-http-client │ │ │ │ └── python_http_client │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ └── exceptions.pyi │ │ │ │ ├── python-jenkins │ │ │ │ └── jenkins │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── plugins.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── python-jose │ │ │ │ └── jose │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── backends │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _asn1.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── cryptography_backend.pyi │ │ │ │ │ ├── ecdsa_backend.pyi │ │ │ │ │ ├── native.pyi │ │ │ │ │ └── rsa_backend.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── jwe.pyi │ │ │ │ │ ├── jwk.pyi │ │ │ │ │ ├── jws.pyi │ │ │ │ │ ├── jwt.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── python-nmap │ │ │ │ └── nmap │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── nmap.pyi │ │ │ │ ├── python-xlib │ │ │ │ └── Xlib │ │ │ │ │ ├── X.pyi │ │ │ │ │ ├── XK.pyi │ │ │ │ │ ├── Xatom.pyi │ │ │ │ │ ├── Xcursorfont.pyi │ │ │ │ │ ├── Xutil.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _typing.pyi │ │ │ │ │ ├── display.pyi │ │ │ │ │ ├── error.pyi │ │ │ │ │ ├── ext │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── composite.pyi │ │ │ │ │ ├── damage.pyi │ │ │ │ │ ├── dpms.pyi │ │ │ │ │ ├── ge.pyi │ │ │ │ │ ├── nvcontrol.pyi │ │ │ │ │ ├── randr.pyi │ │ │ │ │ ├── record.pyi │ │ │ │ │ ├── res.pyi │ │ │ │ │ ├── screensaver.pyi │ │ │ │ │ ├── security.pyi │ │ │ │ │ ├── shape.pyi │ │ │ │ │ ├── xfixes.pyi │ │ │ │ │ ├── xinerama.pyi │ │ │ │ │ ├── xinput.pyi │ │ │ │ │ └── xtest.pyi │ │ │ │ │ ├── keysymdef │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── apl.pyi │ │ │ │ │ ├── arabic.pyi │ │ │ │ │ ├── cyrillic.pyi │ │ │ │ │ ├── greek.pyi │ │ │ │ │ ├── hebrew.pyi │ │ │ │ │ ├── katakana.pyi │ │ │ │ │ ├── korean.pyi │ │ │ │ │ ├── latin1.pyi │ │ │ │ │ ├── latin2.pyi │ │ │ │ │ ├── latin3.pyi │ │ │ │ │ ├── latin4.pyi │ │ │ │ │ ├── miscellany.pyi │ │ │ │ │ ├── publishing.pyi │ │ │ │ │ ├── special.pyi │ │ │ │ │ ├── technical.pyi │ │ │ │ │ ├── thai.pyi │ │ │ │ │ ├── xf86.pyi │ │ │ │ │ ├── xk3270.pyi │ │ │ │ │ └── xkb.pyi │ │ │ │ │ ├── protocol │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── display.pyi │ │ │ │ │ ├── event.pyi │ │ │ │ │ ├── request.pyi │ │ │ │ │ ├── rq.pyi │ │ │ │ │ └── structs.pyi │ │ │ │ │ ├── rdb.pyi │ │ │ │ │ ├── support │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── connect.pyi │ │ │ │ │ ├── lock.pyi │ │ │ │ │ ├── unix_connect.pyi │ │ │ │ │ └── vms_connect.pyi │ │ │ │ │ ├── threaded.pyi │ │ │ │ │ ├── xauth.pyi │ │ │ │ │ └── xobject │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── colormap.pyi │ │ │ │ │ ├── cursor.pyi │ │ │ │ │ ├── drawable.pyi │ │ │ │ │ ├── fontable.pyi │ │ │ │ │ ├── icccm.pyi │ │ │ │ │ └── resource.pyi │ │ │ │ ├── pytz │ │ │ │ └── pytz │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── lazy.pyi │ │ │ │ │ ├── reference.pyi │ │ │ │ │ ├── tzfile.pyi │ │ │ │ │ └── tzinfo.pyi │ │ │ │ ├── pywin32 │ │ │ │ ├── _win32typing.pyi │ │ │ │ ├── commctrl.pyi │ │ │ │ ├── dde.pyi │ │ │ │ ├── isapi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── install.pyi │ │ │ │ │ ├── isapicon.pyi │ │ │ │ │ ├── simple.pyi │ │ │ │ │ └── threaded_extension.pyi │ │ │ │ ├── mmapfile.pyi │ │ │ │ ├── mmsystem.pyi │ │ │ │ ├── ntsecuritycon.pyi │ │ │ │ ├── odbc.pyi │ │ │ │ ├── perfmon.pyi │ │ │ │ ├── pythoncom.pyi │ │ │ │ ├── pythonwin │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── dde.pyi │ │ │ │ │ ├── win32ui.pyi │ │ │ │ │ └── win32uiole.pyi │ │ │ │ ├── pywintypes.pyi │ │ │ │ ├── regutil.pyi │ │ │ │ ├── servicemanager.pyi │ │ │ │ ├── sspicon.pyi │ │ │ │ ├── timer.pyi │ │ │ │ ├── win2kras.pyi │ │ │ │ ├── win32 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── commctrl.pyi │ │ │ │ │ │ ├── mmsystem.pyi │ │ │ │ │ │ ├── ntsecuritycon.pyi │ │ │ │ │ │ ├── pywintypes.pyi │ │ │ │ │ │ ├── regutil.pyi │ │ │ │ │ │ ├── sspicon.pyi │ │ │ │ │ │ ├── win2kras.pyi │ │ │ │ │ │ ├── win32con.pyi │ │ │ │ │ │ ├── win32cryptcon.pyi │ │ │ │ │ │ ├── win32evtlogutil.pyi │ │ │ │ │ │ ├── win32gui_struct.pyi │ │ │ │ │ │ ├── win32inetcon.pyi │ │ │ │ │ │ ├── win32netcon.pyi │ │ │ │ │ │ ├── win32pdhquery.pyi │ │ │ │ │ │ ├── win32serviceutil.pyi │ │ │ │ │ │ ├── win32timezone.pyi │ │ │ │ │ │ ├── win32verstamp.pyi │ │ │ │ │ │ ├── winerror.pyi │ │ │ │ │ │ ├── winioctlcon.pyi │ │ │ │ │ │ ├── winnt.pyi │ │ │ │ │ │ ├── winperf.pyi │ │ │ │ │ │ └── winxptheme.pyi │ │ │ │ │ ├── mmapfile.pyi │ │ │ │ │ ├── odbc.pyi │ │ │ │ │ ├── perfmon.pyi │ │ │ │ │ ├── servicemanager.pyi │ │ │ │ │ ├── timer.pyi │ │ │ │ │ ├── win32api.pyi │ │ │ │ │ ├── win32clipboard.pyi │ │ │ │ │ ├── win32console.pyi │ │ │ │ │ ├── win32cred.pyi │ │ │ │ │ ├── win32crypt.pyi │ │ │ │ │ ├── win32event.pyi │ │ │ │ │ ├── win32evtlog.pyi │ │ │ │ │ ├── win32file.pyi │ │ │ │ │ ├── win32gui.pyi │ │ │ │ │ ├── win32help.pyi │ │ │ │ │ ├── win32inet.pyi │ │ │ │ │ ├── win32job.pyi │ │ │ │ │ ├── win32lz.pyi │ │ │ │ │ ├── win32net.pyi │ │ │ │ │ ├── win32pdh.pyi │ │ │ │ │ ├── win32pipe.pyi │ │ │ │ │ ├── win32print.pyi │ │ │ │ │ ├── win32process.pyi │ │ │ │ │ ├── win32profile.pyi │ │ │ │ │ ├── win32ras.pyi │ │ │ │ │ ├── win32security.pyi │ │ │ │ │ ├── win32service.pyi │ │ │ │ │ ├── win32trace.pyi │ │ │ │ │ ├── win32transaction.pyi │ │ │ │ │ ├── win32ts.pyi │ │ │ │ │ ├── win32wnet.pyi │ │ │ │ │ └── winxpgui.pyi │ │ │ │ ├── win32api.pyi │ │ │ │ ├── win32clipboard.pyi │ │ │ │ ├── win32com │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adsi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── adsi.pyi │ │ │ │ │ │ └── adsicon.pyi │ │ │ │ │ ├── authorization │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── authorization.pyi │ │ │ │ │ ├── axcontrol │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── axcontrol.pyi │ │ │ │ │ ├── axdebug │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── adb.pyi │ │ │ │ │ │ ├── axdebug.pyi │ │ │ │ │ │ ├── codecontainer.pyi │ │ │ │ │ │ ├── contexts.pyi │ │ │ │ │ │ ├── debugger.pyi │ │ │ │ │ │ ├── documents.pyi │ │ │ │ │ │ ├── expressions.pyi │ │ │ │ │ │ ├── gateways.pyi │ │ │ │ │ │ ├── stackframe.pyi │ │ │ │ │ │ └── util.pyi │ │ │ │ │ ├── axscript │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── asputil.pyi │ │ │ │ │ │ ├── axscript.pyi │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── debug.pyi │ │ │ │ │ │ │ ├── error.pyi │ │ │ │ │ │ │ └── framework.pyi │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── axsite.pyi │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── bits.pyi │ │ │ │ │ ├── client │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── build.pyi │ │ │ │ │ │ ├── dynamic.pyi │ │ │ │ │ │ └── gencache.pyi │ │ │ │ │ ├── directsound │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── directsound.pyi │ │ │ │ │ ├── gen_py │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── ifilter │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── ifilter.pyi │ │ │ │ │ │ └── ifiltercon.pyi │ │ │ │ │ ├── internet │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── inetcon.pyi │ │ │ │ │ │ └── internet.pyi │ │ │ │ │ ├── mapi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── emsabtags.pyi │ │ │ │ │ │ ├── exchange.pyi │ │ │ │ │ │ ├── mapi.pyi │ │ │ │ │ │ ├── mapitags.pyi │ │ │ │ │ │ └── mapiutil.pyi │ │ │ │ │ ├── olectl.pyi │ │ │ │ │ ├── propsys │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── propsys.pyi │ │ │ │ │ │ └── pscon.pyi │ │ │ │ │ ├── server │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── connect.pyi │ │ │ │ │ │ ├── dispatcher.pyi │ │ │ │ │ │ ├── exception.pyi │ │ │ │ │ │ ├── factory.pyi │ │ │ │ │ │ ├── localserver.pyi │ │ │ │ │ │ ├── policy.pyi │ │ │ │ │ │ ├── register.pyi │ │ │ │ │ │ └── util.pyi │ │ │ │ │ ├── shell │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── shell.pyi │ │ │ │ │ │ └── shellcon.pyi │ │ │ │ │ ├── storagecon.pyi │ │ │ │ │ ├── taskscheduler │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── taskscheduler.pyi │ │ │ │ │ ├── universal.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── win32comext │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adsi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── adsi.pyi │ │ │ │ │ │ └── adsicon.pyi │ │ │ │ │ ├── authorization │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── authorization.pyi │ │ │ │ │ ├── axcontrol │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── axcontrol.pyi │ │ │ │ │ ├── axdebug │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── adb.pyi │ │ │ │ │ │ ├── axdebug.pyi │ │ │ │ │ │ ├── codecontainer.pyi │ │ │ │ │ │ ├── contexts.pyi │ │ │ │ │ │ ├── debugger.pyi │ │ │ │ │ │ ├── documents.pyi │ │ │ │ │ │ ├── expressions.pyi │ │ │ │ │ │ ├── gateways.pyi │ │ │ │ │ │ ├── stackframe.pyi │ │ │ │ │ │ └── util.pyi │ │ │ │ │ ├── axscript │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── asputil.pyi │ │ │ │ │ │ ├── axscript.pyi │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── debug.pyi │ │ │ │ │ │ │ ├── error.pyi │ │ │ │ │ │ │ └── framework.pyi │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── axsite.pyi │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── bits.pyi │ │ │ │ │ ├── directsound │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── directsound.pyi │ │ │ │ │ ├── ifilter │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── ifilter.pyi │ │ │ │ │ │ └── ifiltercon.pyi │ │ │ │ │ ├── internet │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── inetcon.pyi │ │ │ │ │ │ └── internet.pyi │ │ │ │ │ ├── mapi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── emsabtags.pyi │ │ │ │ │ │ ├── exchange.pyi │ │ │ │ │ │ ├── mapi.pyi │ │ │ │ │ │ ├── mapitags.pyi │ │ │ │ │ │ └── mapiutil.pyi │ │ │ │ │ ├── propsys │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── propsys.pyi │ │ │ │ │ │ └── pscon.pyi │ │ │ │ │ ├── shell │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── shell.pyi │ │ │ │ │ │ └── shellcon.pyi │ │ │ │ │ └── taskscheduler │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── taskscheduler.pyi │ │ │ │ ├── win32con.pyi │ │ │ │ ├── win32console.pyi │ │ │ │ ├── win32cred.pyi │ │ │ │ ├── win32crypt.pyi │ │ │ │ ├── win32cryptcon.pyi │ │ │ │ ├── win32event.pyi │ │ │ │ ├── win32evtlog.pyi │ │ │ │ ├── win32evtlogutil.pyi │ │ │ │ ├── win32file.pyi │ │ │ │ ├── win32gui.pyi │ │ │ │ ├── win32gui_struct.pyi │ │ │ │ ├── win32help.pyi │ │ │ │ ├── win32inet.pyi │ │ │ │ ├── win32inetcon.pyi │ │ │ │ ├── win32job.pyi │ │ │ │ ├── win32lz.pyi │ │ │ │ ├── win32net.pyi │ │ │ │ ├── win32netcon.pyi │ │ │ │ ├── win32pdh.pyi │ │ │ │ ├── win32pdhquery.pyi │ │ │ │ ├── win32pipe.pyi │ │ │ │ ├── win32print.pyi │ │ │ │ ├── win32process.pyi │ │ │ │ ├── win32profile.pyi │ │ │ │ ├── win32ras.pyi │ │ │ │ ├── win32security.pyi │ │ │ │ ├── win32service.pyi │ │ │ │ ├── win32serviceutil.pyi │ │ │ │ ├── win32timezone.pyi │ │ │ │ ├── win32trace.pyi │ │ │ │ ├── win32transaction.pyi │ │ │ │ ├── win32ts.pyi │ │ │ │ ├── win32ui.pyi │ │ │ │ ├── win32uiole.pyi │ │ │ │ ├── win32verstamp.pyi │ │ │ │ ├── win32wnet.pyi │ │ │ │ ├── winerror.pyi │ │ │ │ ├── winioctlcon.pyi │ │ │ │ ├── winnt.pyi │ │ │ │ ├── winperf.pyi │ │ │ │ ├── winxpgui.pyi │ │ │ │ └── winxptheme.pyi │ │ │ │ ├── pyxdg │ │ │ │ └── xdg │ │ │ │ │ ├── BaseDirectory.pyi │ │ │ │ │ ├── Config.pyi │ │ │ │ │ ├── DesktopEntry.pyi │ │ │ │ │ ├── Exceptions.pyi │ │ │ │ │ ├── IconTheme.pyi │ │ │ │ │ ├── IniFile.pyi │ │ │ │ │ ├── Locale.pyi │ │ │ │ │ ├── Menu.pyi │ │ │ │ │ ├── MenuEditor.pyi │ │ │ │ │ ├── Mime.pyi │ │ │ │ │ ├── RecentFiles.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── qrbill │ │ │ │ └── qrbill │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── bill.pyi │ │ │ │ ├── qrcode │ │ │ │ └── qrcode │ │ │ │ │ ├── LUT.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _types.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── console_scripts.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── image │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── pil.pyi │ │ │ │ │ ├── pure.pyi │ │ │ │ │ ├── styledpil.pyi │ │ │ │ │ ├── styles │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── colormasks.pyi │ │ │ │ │ │ └── moduledrawers │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── pil.pyi │ │ │ │ │ │ │ └── svg.pyi │ │ │ │ │ └── svg.pyi │ │ │ │ │ ├── main.pyi │ │ │ │ │ ├── release.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── ratelimit │ │ │ │ └── ratelimit │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── decorators.pyi │ │ │ │ │ └── exception.pyi │ │ │ │ ├── regex │ │ │ │ └── regex │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _main.pyi │ │ │ │ │ ├── _regex.pyi │ │ │ │ │ └── _regex_core.pyi │ │ │ │ ├── reportlab │ │ │ │ └── reportlab │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── graphics │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── barcode │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── code128.pyi │ │ │ │ │ │ ├── code39.pyi │ │ │ │ │ │ ├── code93.pyi │ │ │ │ │ │ ├── common.pyi │ │ │ │ │ │ ├── dmtx.pyi │ │ │ │ │ │ ├── eanbc.pyi │ │ │ │ │ │ ├── ecc200datamatrix.pyi │ │ │ │ │ │ ├── fourstate.pyi │ │ │ │ │ │ ├── lto.pyi │ │ │ │ │ │ ├── qr.pyi │ │ │ │ │ │ ├── qrencoder.pyi │ │ │ │ │ │ ├── usps.pyi │ │ │ │ │ │ ├── usps4s.pyi │ │ │ │ │ │ └── widgets.pyi │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── areas.pyi │ │ │ │ │ │ ├── axes.pyi │ │ │ │ │ │ ├── barcharts.pyi │ │ │ │ │ │ ├── dotbox.pyi │ │ │ │ │ │ ├── doughnut.pyi │ │ │ │ │ │ ├── legends.pyi │ │ │ │ │ │ ├── linecharts.pyi │ │ │ │ │ │ ├── lineplots.pyi │ │ │ │ │ │ ├── markers.pyi │ │ │ │ │ │ ├── piecharts.pyi │ │ │ │ │ │ ├── slidebox.pyi │ │ │ │ │ │ ├── spider.pyi │ │ │ │ │ │ ├── textlabels.pyi │ │ │ │ │ │ ├── utils.pyi │ │ │ │ │ │ └── utils3d.pyi │ │ │ │ │ ├── renderPDF.pyi │ │ │ │ │ ├── renderPM.pyi │ │ │ │ │ ├── renderPS.pyi │ │ │ │ │ ├── renderSVG.pyi │ │ │ │ │ ├── renderbase.pyi │ │ │ │ │ ├── samples │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── bubble.pyi │ │ │ │ │ │ ├── clustered_bar.pyi │ │ │ │ │ │ ├── clustered_column.pyi │ │ │ │ │ │ ├── excelcolors.pyi │ │ │ │ │ │ ├── exploded_pie.pyi │ │ │ │ │ │ ├── filled_radar.pyi │ │ │ │ │ │ ├── line_chart.pyi │ │ │ │ │ │ ├── linechart_with_markers.pyi │ │ │ │ │ │ ├── radar.pyi │ │ │ │ │ │ ├── runall.pyi │ │ │ │ │ │ ├── scatter.pyi │ │ │ │ │ │ ├── scatter_lines.pyi │ │ │ │ │ │ ├── scatter_lines_markers.pyi │ │ │ │ │ │ ├── simple_pie.pyi │ │ │ │ │ │ ├── stacked_bar.pyi │ │ │ │ │ │ └── stacked_column.pyi │ │ │ │ │ ├── shapes.pyi │ │ │ │ │ ├── svgpath.pyi │ │ │ │ │ ├── transform.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ ├── widgetbase.pyi │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── adjustableArrow.pyi │ │ │ │ │ │ ├── eventcal.pyi │ │ │ │ │ │ ├── flags.pyi │ │ │ │ │ │ ├── grids.pyi │ │ │ │ │ │ ├── markers.pyi │ │ │ │ │ │ ├── signsandsymbols.pyi │ │ │ │ │ │ └── table.pyi │ │ │ │ │ ├── lib │ │ │ │ │ ├── PyFontify.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── abag.pyi │ │ │ │ │ ├── arciv.pyi │ │ │ │ │ ├── attrmap.pyi │ │ │ │ │ ├── boxstuff.pyi │ │ │ │ │ ├── codecharts.pyi │ │ │ │ │ ├── colors.pyi │ │ │ │ │ ├── corp.pyi │ │ │ │ │ ├── enums.pyi │ │ │ │ │ ├── extformat.pyi │ │ │ │ │ ├── fontfinder.pyi │ │ │ │ │ ├── fonts.pyi │ │ │ │ │ ├── formatters.pyi │ │ │ │ │ ├── geomutils.pyi │ │ │ │ │ ├── logger.pyi │ │ │ │ │ ├── normalDate.pyi │ │ │ │ │ ├── pagesizes.pyi │ │ │ │ │ ├── pdfencrypt.pyi │ │ │ │ │ ├── pygments2xpre.pyi │ │ │ │ │ ├── randomtext.pyi │ │ │ │ │ ├── rl_accel.pyi │ │ │ │ │ ├── rl_safe_eval.pyi │ │ │ │ │ ├── rltempfile.pyi │ │ │ │ │ ├── rparsexml.pyi │ │ │ │ │ ├── sequencer.pyi │ │ │ │ │ ├── styles.pyi │ │ │ │ │ ├── testutils.pyi │ │ │ │ │ ├── textsplit.pyi │ │ │ │ │ ├── units.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ ├── validators.pyi │ │ │ │ │ └── yaml.pyi │ │ │ │ │ ├── pdfbase │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── acroform.pyi │ │ │ │ │ ├── cidfonts.pyi │ │ │ │ │ ├── pdfdoc.pyi │ │ │ │ │ ├── pdfform.pyi │ │ │ │ │ ├── pdfmetrics.pyi │ │ │ │ │ ├── pdfpattern.pyi │ │ │ │ │ ├── pdfutils.pyi │ │ │ │ │ ├── rl_codecs.pyi │ │ │ │ │ └── ttfonts.pyi │ │ │ │ │ ├── pdfgen │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── canvas.pyi │ │ │ │ │ ├── pathobject.pyi │ │ │ │ │ ├── pdfgeom.pyi │ │ │ │ │ ├── pdfimages.pyi │ │ │ │ │ └── textobject.pyi │ │ │ │ │ ├── platypus │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── doctemplate.pyi │ │ │ │ │ ├── figures.pyi │ │ │ │ │ ├── flowables.pyi │ │ │ │ │ ├── frames.pyi │ │ │ │ │ ├── multicol.pyi │ │ │ │ │ ├── para.pyi │ │ │ │ │ ├── paragraph.pyi │ │ │ │ │ ├── paraparser.pyi │ │ │ │ │ ├── tableofcontents.pyi │ │ │ │ │ ├── tables.pyi │ │ │ │ │ └── xpreformatted.pyi │ │ │ │ │ ├── rl_config.pyi │ │ │ │ │ └── rl_settings.pyi │ │ │ │ ├── requests-oauthlib │ │ │ │ └── requests_oauthlib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── compliance_fixes │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── douban.pyi │ │ │ │ │ ├── ebay.pyi │ │ │ │ │ ├── facebook.pyi │ │ │ │ │ ├── fitbit.pyi │ │ │ │ │ ├── instagram.pyi │ │ │ │ │ ├── mailchimp.pyi │ │ │ │ │ ├── plentymarkets.pyi │ │ │ │ │ ├── slack.pyi │ │ │ │ │ └── weibo.pyi │ │ │ │ │ ├── oauth1_auth.pyi │ │ │ │ │ ├── oauth1_session.pyi │ │ │ │ │ ├── oauth2_auth.pyi │ │ │ │ │ └── oauth2_session.pyi │ │ │ │ ├── requests │ │ │ │ └── requests │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── __version__.pyi │ │ │ │ │ ├── adapters.pyi │ │ │ │ │ ├── api.pyi │ │ │ │ │ ├── auth.pyi │ │ │ │ │ ├── certs.pyi │ │ │ │ │ ├── compat.pyi │ │ │ │ │ ├── cookies.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── help.pyi │ │ │ │ │ ├── hooks.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ ├── packages.pyi │ │ │ │ │ ├── sessions.pyi │ │ │ │ │ ├── status_codes.pyi │ │ │ │ │ ├── structures.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── retry │ │ │ │ └── retry │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── api.pyi │ │ │ │ ├── rfc3339-validator │ │ │ │ └── rfc3339_validator.pyi │ │ │ │ ├── s2clientprotocol │ │ │ │ └── s2clientprotocol │ │ │ │ │ ├── build.pyi │ │ │ │ │ ├── common_pb2.pyi │ │ │ │ │ ├── data_pb2.pyi │ │ │ │ │ ├── debug_pb2.pyi │ │ │ │ │ ├── error_pb2.pyi │ │ │ │ │ ├── query_pb2.pyi │ │ │ │ │ ├── raw_pb2.pyi │ │ │ │ │ ├── sc2api_pb2.pyi │ │ │ │ │ ├── score_pb2.pyi │ │ │ │ │ ├── spatial_pb2.pyi │ │ │ │ │ └── ui_pb2.pyi │ │ │ │ ├── seaborn │ │ │ │ └── seaborn │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _core │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── data.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── groupby.pyi │ │ │ │ │ ├── moves.pyi │ │ │ │ │ ├── plot.pyi │ │ │ │ │ ├── properties.pyi │ │ │ │ │ ├── rules.pyi │ │ │ │ │ ├── scales.pyi │ │ │ │ │ ├── subplots.pyi │ │ │ │ │ └── typing.pyi │ │ │ │ │ ├── _marks │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── area.pyi │ │ │ │ │ ├── bar.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── dot.pyi │ │ │ │ │ ├── line.pyi │ │ │ │ │ └── text.pyi │ │ │ │ │ ├── _stats │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── aggregation.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── counting.pyi │ │ │ │ │ ├── density.pyi │ │ │ │ │ ├── order.pyi │ │ │ │ │ └── regression.pyi │ │ │ │ │ ├── algorithms.pyi │ │ │ │ │ ├── axisgrid.pyi │ │ │ │ │ ├── categorical.pyi │ │ │ │ │ ├── cm.pyi │ │ │ │ │ ├── colors │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── crayons.pyi │ │ │ │ │ └── xkcd_rgb.pyi │ │ │ │ │ ├── distributions.pyi │ │ │ │ │ ├── external │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── appdirs.pyi │ │ │ │ │ ├── docscrape.pyi │ │ │ │ │ ├── husl.pyi │ │ │ │ │ ├── kde.pyi │ │ │ │ │ └── version.pyi │ │ │ │ │ ├── matrix.pyi │ │ │ │ │ ├── miscplot.pyi │ │ │ │ │ ├── objects.pyi │ │ │ │ │ ├── palettes.pyi │ │ │ │ │ ├── rcmod.pyi │ │ │ │ │ ├── regression.pyi │ │ │ │ │ ├── relational.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── widgets.pyi │ │ │ │ ├── setuptools │ │ │ │ ├── distutils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _modified.pyi │ │ │ │ │ ├── _msvccompiler.pyi │ │ │ │ │ ├── archive_util.pyi │ │ │ │ │ ├── ccompiler.pyi │ │ │ │ │ ├── cmd.pyi │ │ │ │ │ ├── command │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── bdist.pyi │ │ │ │ │ │ ├── bdist_rpm.pyi │ │ │ │ │ │ ├── build.pyi │ │ │ │ │ │ ├── build_clib.pyi │ │ │ │ │ │ ├── build_ext.pyi │ │ │ │ │ │ ├── build_py.pyi │ │ │ │ │ │ ├── install.pyi │ │ │ │ │ │ ├── install_data.pyi │ │ │ │ │ │ ├── install_lib.pyi │ │ │ │ │ │ ├── install_scripts.pyi │ │ │ │ │ │ └── sdist.pyi │ │ │ │ │ ├── compat │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── compilers │ │ │ │ │ │ └── C │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ │ ├── msvc.pyi │ │ │ │ │ │ │ └── unix.pyi │ │ │ │ │ ├── dep_util.pyi │ │ │ │ │ ├── dist.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── extension.pyi │ │ │ │ │ ├── filelist.pyi │ │ │ │ │ ├── spawn.pyi │ │ │ │ │ ├── sysconfig.pyi │ │ │ │ │ ├── unixccompiler.pyi │ │ │ │ │ └── util.pyi │ │ │ │ └── setuptools │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _distutils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _modified.pyi │ │ │ │ │ ├── _msvccompiler.pyi │ │ │ │ │ ├── archive_util.pyi │ │ │ │ │ ├── ccompiler.pyi │ │ │ │ │ ├── cmd.pyi │ │ │ │ │ ├── command │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── bdist.pyi │ │ │ │ │ │ ├── bdist_rpm.pyi │ │ │ │ │ │ ├── build.pyi │ │ │ │ │ │ ├── build_clib.pyi │ │ │ │ │ │ ├── build_ext.pyi │ │ │ │ │ │ ├── build_py.pyi │ │ │ │ │ │ ├── install.pyi │ │ │ │ │ │ ├── install_data.pyi │ │ │ │ │ │ ├── install_lib.pyi │ │ │ │ │ │ ├── install_scripts.pyi │ │ │ │ │ │ └── sdist.pyi │ │ │ │ │ ├── compat │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── compilers │ │ │ │ │ │ └── C │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ │ ├── msvc.pyi │ │ │ │ │ │ │ └── unix.pyi │ │ │ │ │ ├── dep_util.pyi │ │ │ │ │ ├── dist.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── extension.pyi │ │ │ │ │ ├── filelist.pyi │ │ │ │ │ ├── spawn.pyi │ │ │ │ │ ├── sysconfig.pyi │ │ │ │ │ ├── unixccompiler.pyi │ │ │ │ │ └── util.pyi │ │ │ │ │ ├── archive_util.pyi │ │ │ │ │ ├── build_meta.pyi │ │ │ │ │ ├── command │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── alias.pyi │ │ │ │ │ ├── bdist_egg.pyi │ │ │ │ │ ├── bdist_rpm.pyi │ │ │ │ │ ├── bdist_wheel.pyi │ │ │ │ │ ├── build.pyi │ │ │ │ │ ├── build_clib.pyi │ │ │ │ │ ├── build_ext.pyi │ │ │ │ │ ├── build_py.pyi │ │ │ │ │ ├── develop.pyi │ │ │ │ │ ├── dist_info.pyi │ │ │ │ │ ├── easy_install.pyi │ │ │ │ │ ├── editable_wheel.pyi │ │ │ │ │ ├── egg_info.pyi │ │ │ │ │ ├── install.pyi │ │ │ │ │ ├── install_egg_info.pyi │ │ │ │ │ ├── install_lib.pyi │ │ │ │ │ ├── install_scripts.pyi │ │ │ │ │ ├── rotate.pyi │ │ │ │ │ ├── saveopts.pyi │ │ │ │ │ ├── sdist.pyi │ │ │ │ │ ├── setopt.pyi │ │ │ │ │ └── test.pyi │ │ │ │ │ ├── config │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── expand.pyi │ │ │ │ │ ├── pyprojecttoml.pyi │ │ │ │ │ └── setupcfg.pyi │ │ │ │ │ ├── depends.pyi │ │ │ │ │ ├── discovery.pyi │ │ │ │ │ ├── dist.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── extension.pyi │ │ │ │ │ ├── glob.pyi │ │ │ │ │ ├── installer.pyi │ │ │ │ │ ├── launch.pyi │ │ │ │ │ ├── logging.pyi │ │ │ │ │ ├── modified.pyi │ │ │ │ │ ├── monkey.pyi │ │ │ │ │ ├── msvc.pyi │ │ │ │ │ ├── namespaces.pyi │ │ │ │ │ ├── unicode_utils.pyi │ │ │ │ │ ├── version.pyi │ │ │ │ │ ├── warnings.pyi │ │ │ │ │ ├── wheel.pyi │ │ │ │ │ └── windows_support.pyi │ │ │ │ ├── shapely │ │ │ │ └── shapely │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _coverage.pyi │ │ │ │ │ ├── _enum.pyi │ │ │ │ │ ├── _geometry.pyi │ │ │ │ │ ├── _ragged_array.pyi │ │ │ │ │ ├── _typing.pyi │ │ │ │ │ ├── _version.pyi │ │ │ │ │ ├── affinity.pyi │ │ │ │ │ ├── algorithms │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cga.pyi │ │ │ │ │ └── polylabel.pyi │ │ │ │ │ ├── constructive.pyi │ │ │ │ │ ├── coordinates.pyi │ │ │ │ │ ├── coords.pyi │ │ │ │ │ ├── creation.pyi │ │ │ │ │ ├── decorators.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── geometry │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── collection.pyi │ │ │ │ │ ├── geo.pyi │ │ │ │ │ ├── linestring.pyi │ │ │ │ │ ├── multilinestring.pyi │ │ │ │ │ ├── multipoint.pyi │ │ │ │ │ ├── multipolygon.pyi │ │ │ │ │ ├── point.pyi │ │ │ │ │ └── polygon.pyi │ │ │ │ │ ├── geos.pyi │ │ │ │ │ ├── io.pyi │ │ │ │ │ ├── lib.pyi │ │ │ │ │ ├── linear.pyi │ │ │ │ │ ├── measurement.pyi │ │ │ │ │ ├── ops.pyi │ │ │ │ │ ├── plotting.pyi │ │ │ │ │ ├── predicates.pyi │ │ │ │ │ ├── prepared.pyi │ │ │ │ │ ├── set_operations.pyi │ │ │ │ │ ├── speedups.pyi │ │ │ │ │ ├── strtree.pyi │ │ │ │ │ ├── testing.pyi │ │ │ │ │ ├── validation.pyi │ │ │ │ │ ├── vectorized │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── wkb.pyi │ │ │ │ │ └── wkt.pyi │ │ │ │ ├── simple-websocket │ │ │ │ └── simple_websocket │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── aiows.pyi │ │ │ │ │ ├── asgi.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ └── ws.pyi │ │ │ │ ├── simplejson │ │ │ │ └── simplejson │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ ├── encoder.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── raw_json.pyi │ │ │ │ │ └── scanner.pyi │ │ │ │ ├── singledispatch │ │ │ │ └── singledispatch.pyi │ │ │ │ ├── six │ │ │ │ └── six │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── moves │ │ │ │ │ ├── BaseHTTPServer.pyi │ │ │ │ │ ├── CGIHTTPServer.pyi │ │ │ │ │ ├── SimpleHTTPServer.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _dummy_thread.pyi │ │ │ │ │ ├── _thread.pyi │ │ │ │ │ ├── builtins.pyi │ │ │ │ │ ├── cPickle.pyi │ │ │ │ │ ├── collections_abc.pyi │ │ │ │ │ ├── configparser.pyi │ │ │ │ │ ├── copyreg.pyi │ │ │ │ │ ├── email_mime_base.pyi │ │ │ │ │ ├── email_mime_multipart.pyi │ │ │ │ │ ├── email_mime_nonmultipart.pyi │ │ │ │ │ ├── email_mime_text.pyi │ │ │ │ │ ├── html_entities.pyi │ │ │ │ │ ├── html_parser.pyi │ │ │ │ │ ├── http_client.pyi │ │ │ │ │ ├── http_cookiejar.pyi │ │ │ │ │ ├── http_cookies.pyi │ │ │ │ │ ├── queue.pyi │ │ │ │ │ ├── reprlib.pyi │ │ │ │ │ ├── socketserver.pyi │ │ │ │ │ ├── tkinter.pyi │ │ │ │ │ ├── tkinter_commondialog.pyi │ │ │ │ │ ├── tkinter_constants.pyi │ │ │ │ │ ├── tkinter_dialog.pyi │ │ │ │ │ ├── tkinter_filedialog.pyi │ │ │ │ │ ├── tkinter_tkfiledialog.pyi │ │ │ │ │ ├── tkinter_ttk.pyi │ │ │ │ │ ├── urllib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── error.pyi │ │ │ │ │ ├── parse.pyi │ │ │ │ │ ├── request.pyi │ │ │ │ │ ├── response.pyi │ │ │ │ │ └── robotparser.pyi │ │ │ │ │ ├── urllib_error.pyi │ │ │ │ │ ├── urllib_parse.pyi │ │ │ │ │ ├── urllib_request.pyi │ │ │ │ │ ├── urllib_response.pyi │ │ │ │ │ └── urllib_robotparser.pyi │ │ │ │ ├── slumber │ │ │ │ └── slumber │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── serialize.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── str2bool │ │ │ │ └── str2bool │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── tabulate │ │ │ │ └── tabulate │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── tensorflow │ │ │ │ └── tensorflow │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _aliases.pyi │ │ │ │ │ ├── audio.pyi │ │ │ │ │ ├── autodiff.pyi │ │ │ │ │ ├── autograph │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── experimental.pyi │ │ │ │ │ ├── bitwise.pyi │ │ │ │ │ ├── compiler │ │ │ │ │ └── xla │ │ │ │ │ │ ├── service │ │ │ │ │ │ ├── hlo_pb2.pyi │ │ │ │ │ │ ├── hlo_profile_printer_data_pb2.pyi │ │ │ │ │ │ ├── metrics_pb2.pyi │ │ │ │ │ │ ├── test_compilation_environment_pb2.pyi │ │ │ │ │ │ └── xla_compile_result_pb2.pyi │ │ │ │ │ │ ├── tsl │ │ │ │ │ │ └── protobuf │ │ │ │ │ │ │ ├── bfc_memory_map_pb2.pyi │ │ │ │ │ │ │ └── test_log_pb2.pyi │ │ │ │ │ │ ├── xla_data_pb2.pyi │ │ │ │ │ │ └── xla_pb2.pyi │ │ │ │ │ ├── config │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── experimental.pyi │ │ │ │ │ ├── core │ │ │ │ │ ├── example │ │ │ │ │ │ ├── example_parser_configuration_pb2.pyi │ │ │ │ │ │ ├── example_pb2.pyi │ │ │ │ │ │ └── feature_pb2.pyi │ │ │ │ │ ├── framework │ │ │ │ │ │ ├── allocation_description_pb2.pyi │ │ │ │ │ │ ├── api_def_pb2.pyi │ │ │ │ │ │ ├── attr_value_pb2.pyi │ │ │ │ │ │ ├── cost_graph_pb2.pyi │ │ │ │ │ │ ├── cpp_shape_inference_pb2.pyi │ │ │ │ │ │ ├── dataset_metadata_pb2.pyi │ │ │ │ │ │ ├── dataset_options_pb2.pyi │ │ │ │ │ │ ├── dataset_pb2.pyi │ │ │ │ │ │ ├── device_attributes_pb2.pyi │ │ │ │ │ │ ├── full_type_pb2.pyi │ │ │ │ │ │ ├── function_pb2.pyi │ │ │ │ │ │ ├── graph_debug_info_pb2.pyi │ │ │ │ │ │ ├── graph_pb2.pyi │ │ │ │ │ │ ├── graph_transfer_info_pb2.pyi │ │ │ │ │ │ ├── kernel_def_pb2.pyi │ │ │ │ │ │ ├── log_memory_pb2.pyi │ │ │ │ │ │ ├── model_pb2.pyi │ │ │ │ │ │ ├── node_def_pb2.pyi │ │ │ │ │ │ ├── op_def_pb2.pyi │ │ │ │ │ │ ├── optimized_function_graph_pb2.pyi │ │ │ │ │ │ ├── reader_base_pb2.pyi │ │ │ │ │ │ ├── resource_handle_pb2.pyi │ │ │ │ │ │ ├── step_stats_pb2.pyi │ │ │ │ │ │ ├── summary_pb2.pyi │ │ │ │ │ │ ├── tensor_description_pb2.pyi │ │ │ │ │ │ ├── tensor_pb2.pyi │ │ │ │ │ │ ├── tensor_shape_pb2.pyi │ │ │ │ │ │ ├── tensor_slice_pb2.pyi │ │ │ │ │ │ ├── types_pb2.pyi │ │ │ │ │ │ ├── variable_pb2.pyi │ │ │ │ │ │ └── versions_pb2.pyi │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── bfc_memory_map_pb2.pyi │ │ │ │ │ │ ├── cluster_pb2.pyi │ │ │ │ │ │ ├── composite_tensor_variant_pb2.pyi │ │ │ │ │ │ ├── config_pb2.pyi │ │ │ │ │ │ ├── control_flow_pb2.pyi │ │ │ │ │ │ ├── core_platform_payloads_pb2.pyi │ │ │ │ │ │ ├── data_service_pb2.pyi │ │ │ │ │ │ ├── debug_event_pb2.pyi │ │ │ │ │ │ ├── debug_pb2.pyi │ │ │ │ │ │ ├── device_filters_pb2.pyi │ │ │ │ │ │ ├── device_properties_pb2.pyi │ │ │ │ │ │ ├── error_codes_pb2.pyi │ │ │ │ │ │ ├── fingerprint_pb2.pyi │ │ │ │ │ │ ├── meta_graph_pb2.pyi │ │ │ │ │ │ ├── named_tensor_pb2.pyi │ │ │ │ │ │ ├── queue_runner_pb2.pyi │ │ │ │ │ │ ├── remote_tensor_handle_pb2.pyi │ │ │ │ │ │ ├── rewriter_config_pb2.pyi │ │ │ │ │ │ ├── rpc_options_pb2.pyi │ │ │ │ │ │ ├── saved_model_pb2.pyi │ │ │ │ │ │ ├── saved_object_graph_pb2.pyi │ │ │ │ │ │ ├── saver_pb2.pyi │ │ │ │ │ │ ├── service_config_pb2.pyi │ │ │ │ │ │ ├── snapshot_pb2.pyi │ │ │ │ │ │ ├── status_pb2.pyi │ │ │ │ │ │ ├── struct_pb2.pyi │ │ │ │ │ │ ├── tensor_bundle_pb2.pyi │ │ │ │ │ │ ├── tensorflow_server_pb2.pyi │ │ │ │ │ │ ├── tpu │ │ │ │ │ │ │ ├── compilation_result_pb2.pyi │ │ │ │ │ │ │ ├── dynamic_padding_pb2.pyi │ │ │ │ │ │ │ ├── optimization_parameters_pb2.pyi │ │ │ │ │ │ │ ├── topology_pb2.pyi │ │ │ │ │ │ │ └── tpu_embedding_configuration_pb2.pyi │ │ │ │ │ │ ├── trackable_object_graph_pb2.pyi │ │ │ │ │ │ ├── transport_options_pb2.pyi │ │ │ │ │ │ └── verifier_config_pb2.pyi │ │ │ │ │ └── util │ │ │ │ │ │ ├── event_pb2.pyi │ │ │ │ │ │ ├── memmapped_file_system_pb2.pyi │ │ │ │ │ │ ├── saved_tensor_slice_pb2.pyi │ │ │ │ │ │ └── test_log_pb2.pyi │ │ │ │ │ ├── data │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── experimental.pyi │ │ │ │ │ ├── distribute │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── coordinator.pyi │ │ │ │ │ └── experimental │ │ │ │ │ │ └── coordinator.pyi │ │ │ │ │ ├── dtypes.pyi │ │ │ │ │ ├── experimental │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── dtensor.pyi │ │ │ │ │ ├── feature_column │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── initializers.pyi │ │ │ │ │ ├── io │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── gfile.pyi │ │ │ │ │ ├── keras │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── activations.pyi │ │ │ │ │ ├── callbacks.pyi │ │ │ │ │ ├── constraints.pyi │ │ │ │ │ ├── initializers.pyi │ │ │ │ │ ├── layers │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── losses.pyi │ │ │ │ │ ├── metrics.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ ├── optimizers │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── legacy │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ └── schedules.pyi │ │ │ │ │ └── regularizers.pyi │ │ │ │ │ ├── linalg.pyi │ │ │ │ │ ├── math.pyi │ │ │ │ │ ├── nn.pyi │ │ │ │ │ ├── python │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── distribute │ │ │ │ │ │ └── distribute_lib.pyi │ │ │ │ │ ├── feature_column │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── feature_column_v2.pyi │ │ │ │ │ │ └── sequence_feature_column.pyi │ │ │ │ │ ├── framework │ │ │ │ │ │ └── dtypes.pyi │ │ │ │ │ ├── keras │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── protobuf │ │ │ │ │ │ │ ├── projector_config_pb2.pyi │ │ │ │ │ │ │ ├── saved_metadata_pb2.pyi │ │ │ │ │ │ │ └── versions_pb2.pyi │ │ │ │ │ ├── trackable │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── autotrackable.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── resource.pyi │ │ │ │ │ │ └── ressource.pyi │ │ │ │ │ └── training │ │ │ │ │ │ └── tracking │ │ │ │ │ │ └── autotrackable.pyi │ │ │ │ │ ├── random.pyi │ │ │ │ │ ├── raw_ops.pyi │ │ │ │ │ ├── saved_model │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── experimental.pyi │ │ │ │ │ ├── signal.pyi │ │ │ │ │ ├── sparse.pyi │ │ │ │ │ ├── strings.pyi │ │ │ │ │ ├── summary.pyi │ │ │ │ │ ├── train │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── experimental.pyi │ │ │ │ │ ├── tsl │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── coordination_config_pb2.pyi │ │ │ │ │ │ ├── coordination_service_pb2.pyi │ │ │ │ │ │ ├── distributed_runtime_payloads_pb2.pyi │ │ │ │ │ │ ├── dnn_pb2.pyi │ │ │ │ │ │ ├── error_codes_pb2.pyi │ │ │ │ │ │ ├── histogram_pb2.pyi │ │ │ │ │ │ ├── rpc_options_pb2.pyi │ │ │ │ │ │ └── status_pb2.pyi │ │ │ │ │ └── types │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── experimental.pyi │ │ │ │ ├── toml │ │ │ │ └── toml │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ ├── encoder.pyi │ │ │ │ │ ├── ordered.pyi │ │ │ │ │ └── tz.pyi │ │ │ │ ├── toposort │ │ │ │ └── toposort.pyi │ │ │ │ ├── tqdm │ │ │ │ └── tqdm │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _dist_ver.pyi │ │ │ │ │ ├── _main.pyi │ │ │ │ │ ├── _monitor.pyi │ │ │ │ │ ├── _tqdm.pyi │ │ │ │ │ ├── _tqdm_gui.pyi │ │ │ │ │ ├── _tqdm_notebook.pyi │ │ │ │ │ ├── _tqdm_pandas.pyi │ │ │ │ │ ├── _utils.pyi │ │ │ │ │ ├── asyncio.pyi │ │ │ │ │ ├── auto.pyi │ │ │ │ │ ├── autonotebook.pyi │ │ │ │ │ ├── cli.pyi │ │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── bells.pyi │ │ │ │ │ ├── concurrent.pyi │ │ │ │ │ ├── discord.pyi │ │ │ │ │ ├── itertools.pyi │ │ │ │ │ ├── logging.pyi │ │ │ │ │ ├── slack.pyi │ │ │ │ │ ├── telegram.pyi │ │ │ │ │ └── utils_worker.pyi │ │ │ │ │ ├── dask.pyi │ │ │ │ │ ├── gui.pyi │ │ │ │ │ ├── keras.pyi │ │ │ │ │ ├── notebook.pyi │ │ │ │ │ ├── rich.pyi │ │ │ │ │ ├── std.pyi │ │ │ │ │ ├── tk.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── version.pyi │ │ │ │ ├── translationstring │ │ │ │ └── translationstring │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── ttkthemes │ │ │ │ └── ttkthemes │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _imgops.pyi │ │ │ │ │ ├── _utils.pyi │ │ │ │ │ ├── _widget.pyi │ │ │ │ │ ├── themed_style.pyi │ │ │ │ │ └── themed_tk.pyi │ │ │ │ ├── tzdata │ │ │ │ └── tzdata │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── uWSGI │ │ │ │ ├── uwsgi.pyi │ │ │ │ └── uwsgidecorators.pyi │ │ │ │ ├── ujson │ │ │ │ └── ujson.pyi │ │ │ │ ├── unidiff │ │ │ │ └── unidiff │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── __version__.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── untangle │ │ │ │ └── untangle.pyi │ │ │ │ ├── usersettings │ │ │ │ └── usersettings.pyi │ │ │ │ ├── vobject │ │ │ │ └── vobject │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── behavior.pyi │ │ │ │ │ ├── change_tz.pyi │ │ │ │ │ ├── hcalendar.pyi │ │ │ │ │ ├── icalendar.pyi │ │ │ │ │ ├── ics_diff.pyi │ │ │ │ │ ├── vcard.pyi │ │ │ │ │ └── win32tz.pyi │ │ │ │ ├── waitress │ │ │ │ └── waitress │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adjustments.pyi │ │ │ │ │ ├── buffers.pyi │ │ │ │ │ ├── channel.pyi │ │ │ │ │ ├── compat.pyi │ │ │ │ │ ├── parser.pyi │ │ │ │ │ ├── proxy_headers.pyi │ │ │ │ │ ├── receiver.pyi │ │ │ │ │ ├── rfc7230.pyi │ │ │ │ │ ├── runner.pyi │ │ │ │ │ ├── server.pyi │ │ │ │ │ ├── task.pyi │ │ │ │ │ ├── trigger.pyi │ │ │ │ │ ├── utilities.pyi │ │ │ │ │ └── wasyncore.pyi │ │ │ │ ├── watchpoints │ │ │ │ └── watchpoints │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ast_monkey.pyi │ │ │ │ │ ├── util.pyi │ │ │ │ │ ├── watch.pyi │ │ │ │ │ ├── watch_element.pyi │ │ │ │ │ └── watch_print.pyi │ │ │ │ ├── webencodings │ │ │ │ └── webencodings │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── labels.pyi │ │ │ │ │ ├── mklabels.pyi │ │ │ │ │ └── x_user_defined.pyi │ │ │ │ ├── whatthepatch │ │ │ │ └── whatthepatch │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── apply.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── patch.pyi │ │ │ │ │ └── snippets.pyi │ │ │ │ ├── workalendar │ │ │ │ └── workalendar │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── africa │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── algeria.pyi │ │ │ │ │ ├── angola.pyi │ │ │ │ │ ├── benin.pyi │ │ │ │ │ ├── ivory_coast.pyi │ │ │ │ │ ├── kenya.pyi │ │ │ │ │ ├── madagascar.pyi │ │ │ │ │ ├── mozambique.pyi │ │ │ │ │ ├── nigeria.pyi │ │ │ │ │ ├── sao_tome.pyi │ │ │ │ │ ├── south_africa.pyi │ │ │ │ │ └── tunisia.pyi │ │ │ │ │ ├── america │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── argentina.pyi │ │ │ │ │ ├── barbados.pyi │ │ │ │ │ ├── brazil.pyi │ │ │ │ │ ├── canada.pyi │ │ │ │ │ ├── chile.pyi │ │ │ │ │ ├── colombia.pyi │ │ │ │ │ ├── el_salvador.pyi │ │ │ │ │ ├── mexico.pyi │ │ │ │ │ ├── panama.pyi │ │ │ │ │ └── paraguay.pyi │ │ │ │ │ ├── asia │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── china.pyi │ │ │ │ │ ├── hong_kong.pyi │ │ │ │ │ ├── israel.pyi │ │ │ │ │ ├── japan.pyi │ │ │ │ │ ├── kazakhstan.pyi │ │ │ │ │ ├── malaysia.pyi │ │ │ │ │ ├── philippines.pyi │ │ │ │ │ ├── qatar.pyi │ │ │ │ │ ├── singapore.pyi │ │ │ │ │ ├── south_korea.pyi │ │ │ │ │ └── taiwan.pyi │ │ │ │ │ ├── astronomy.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── europe │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── austria.pyi │ │ │ │ │ ├── belarus.pyi │ │ │ │ │ ├── belgium.pyi │ │ │ │ │ ├── bulgaria.pyi │ │ │ │ │ ├── cayman_islands.pyi │ │ │ │ │ ├── croatia.pyi │ │ │ │ │ ├── cyprus.pyi │ │ │ │ │ ├── czech_republic.pyi │ │ │ │ │ ├── denmark.pyi │ │ │ │ │ ├── estonia.pyi │ │ │ │ │ ├── european_central_bank.pyi │ │ │ │ │ ├── finland.pyi │ │ │ │ │ ├── france.pyi │ │ │ │ │ ├── georgia.pyi │ │ │ │ │ ├── germany.pyi │ │ │ │ │ ├── greece.pyi │ │ │ │ │ ├── guernsey.pyi │ │ │ │ │ ├── hungary.pyi │ │ │ │ │ ├── iceland.pyi │ │ │ │ │ ├── ireland.pyi │ │ │ │ │ ├── italy.pyi │ │ │ │ │ ├── latvia.pyi │ │ │ │ │ ├── lithuania.pyi │ │ │ │ │ ├── luxembourg.pyi │ │ │ │ │ ├── malta.pyi │ │ │ │ │ ├── monaco.pyi │ │ │ │ │ ├── netherlands.pyi │ │ │ │ │ ├── norway.pyi │ │ │ │ │ ├── poland.pyi │ │ │ │ │ ├── portugal.pyi │ │ │ │ │ ├── romania.pyi │ │ │ │ │ ├── russia.pyi │ │ │ │ │ ├── scotland │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── mixins │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── autumn_holiday.pyi │ │ │ │ │ │ │ ├── fair_holiday.pyi │ │ │ │ │ │ │ ├── spring_holiday.pyi │ │ │ │ │ │ │ └── victoria_day.pyi │ │ │ │ │ ├── serbia.pyi │ │ │ │ │ ├── slovakia.pyi │ │ │ │ │ ├── slovenia.pyi │ │ │ │ │ ├── spain.pyi │ │ │ │ │ ├── sweden.pyi │ │ │ │ │ ├── switzerland.pyi │ │ │ │ │ ├── turkey.pyi │ │ │ │ │ ├── ukraine.pyi │ │ │ │ │ └── united_kingdom.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── oceania │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── australia.pyi │ │ │ │ │ ├── marshall_islands.pyi │ │ │ │ │ └── new_zealand.pyi │ │ │ │ │ ├── precomputed_astronomy.pyi │ │ │ │ │ ├── registry.pyi │ │ │ │ │ ├── registry_tools.pyi │ │ │ │ │ ├── skyfield_astronomy.pyi │ │ │ │ │ └── usa │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── alabama.pyi │ │ │ │ │ ├── alaska.pyi │ │ │ │ │ ├── american_samoa.pyi │ │ │ │ │ ├── arizona.pyi │ │ │ │ │ ├── arkansas.pyi │ │ │ │ │ ├── california.pyi │ │ │ │ │ ├── colorado.pyi │ │ │ │ │ ├── connecticut.pyi │ │ │ │ │ ├── core.pyi │ │ │ │ │ ├── delaware.pyi │ │ │ │ │ ├── district_columbia.pyi │ │ │ │ │ ├── florida.pyi │ │ │ │ │ ├── georgia.pyi │ │ │ │ │ ├── guam.pyi │ │ │ │ │ ├── hawaii.pyi │ │ │ │ │ ├── idaho.pyi │ │ │ │ │ ├── illinois.pyi │ │ │ │ │ ├── indiana.pyi │ │ │ │ │ ├── iowa.pyi │ │ │ │ │ ├── kansas.pyi │ │ │ │ │ ├── kentucky.pyi │ │ │ │ │ ├── louisiana.pyi │ │ │ │ │ ├── maine.pyi │ │ │ │ │ ├── maryland.pyi │ │ │ │ │ ├── massachusetts.pyi │ │ │ │ │ ├── michigan.pyi │ │ │ │ │ ├── minnesota.pyi │ │ │ │ │ ├── mississippi.pyi │ │ │ │ │ ├── missouri.pyi │ │ │ │ │ ├── montana.pyi │ │ │ │ │ ├── nebraska.pyi │ │ │ │ │ ├── nevada.pyi │ │ │ │ │ ├── new_hampshire.pyi │ │ │ │ │ ├── new_jersey.pyi │ │ │ │ │ ├── new_mexico.pyi │ │ │ │ │ ├── new_york.pyi │ │ │ │ │ ├── north_carolina.pyi │ │ │ │ │ ├── north_dakota.pyi │ │ │ │ │ ├── ohio.pyi │ │ │ │ │ ├── oklahoma.pyi │ │ │ │ │ ├── oregon.pyi │ │ │ │ │ ├── pennsylvania.pyi │ │ │ │ │ ├── rhode_island.pyi │ │ │ │ │ ├── south_carolina.pyi │ │ │ │ │ ├── south_dakota.pyi │ │ │ │ │ ├── tennessee.pyi │ │ │ │ │ ├── texas.pyi │ │ │ │ │ ├── utah.pyi │ │ │ │ │ ├── vermont.pyi │ │ │ │ │ ├── virginia.pyi │ │ │ │ │ ├── washington.pyi │ │ │ │ │ ├── west_virginia.pyi │ │ │ │ │ ├── wisconsin.pyi │ │ │ │ │ └── wyoming.pyi │ │ │ │ ├── wurlitzer │ │ │ │ └── wurlitzer.pyi │ │ │ │ ├── www-authenticate │ │ │ │ └── www_authenticate.pyi │ │ │ │ ├── xdgenvpy │ │ │ │ └── xdgenvpy │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _defaults.pyi │ │ │ │ │ └── xdgenv.pyi │ │ │ │ ├── xlrd │ │ │ │ └── xlrd │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── biffh.pyi │ │ │ │ │ ├── book.pyi │ │ │ │ │ ├── compdoc.pyi │ │ │ │ │ ├── formatting.pyi │ │ │ │ │ ├── formula.pyi │ │ │ │ │ ├── info.pyi │ │ │ │ │ ├── sheet.pyi │ │ │ │ │ ├── timemachine.pyi │ │ │ │ │ └── xldate.pyi │ │ │ │ ├── xmldiff │ │ │ │ └── xmldiff │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── actions.pyi │ │ │ │ │ ├── diff.pyi │ │ │ │ │ ├── diff_match_patch.pyi │ │ │ │ │ ├── formatting.pyi │ │ │ │ │ ├── main.pyi │ │ │ │ │ ├── patch.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── xmltodict │ │ │ │ └── xmltodict.pyi │ │ │ │ ├── yt-dlp │ │ │ │ └── yt_dlp │ │ │ │ │ ├── YoutubeDL.pyi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── aes.pyi │ │ │ │ │ ├── cache.pyi │ │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── compat_utils.pyi │ │ │ │ │ └── imghdr.pyi │ │ │ │ │ ├── cookies.pyi │ │ │ │ │ ├── downloader │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── bunnycdn.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── dash.pyi │ │ │ │ │ ├── external.pyi │ │ │ │ │ ├── f4m.pyi │ │ │ │ │ ├── fc2.pyi │ │ │ │ │ ├── fragment.pyi │ │ │ │ │ ├── hls.pyi │ │ │ │ │ ├── http.pyi │ │ │ │ │ ├── ism.pyi │ │ │ │ │ ├── mhtml.pyi │ │ │ │ │ ├── niconico.pyi │ │ │ │ │ ├── rtmp.pyi │ │ │ │ │ ├── rtsp.pyi │ │ │ │ │ ├── websocket.pyi │ │ │ │ │ └── youtube_live_chat.pyi │ │ │ │ │ ├── extractor │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── commonmistakes.pyi │ │ │ │ │ └── commonprotocols.pyi │ │ │ │ │ ├── globals.pyi │ │ │ │ │ ├── jsinterp.pyi │ │ │ │ │ ├── minicurses.pyi │ │ │ │ │ ├── networking │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _helper.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── impersonate.pyi │ │ │ │ │ └── websocket.pyi │ │ │ │ │ ├── options.pyi │ │ │ │ │ ├── plugins.pyi │ │ │ │ │ ├── postprocessor │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── common.pyi │ │ │ │ │ ├── socks.pyi │ │ │ │ │ ├── update.pyi │ │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _deprecated.pyi │ │ │ │ │ ├── _jsruntime.pyi │ │ │ │ │ ├── _legacy.pyi │ │ │ │ │ ├── _utils.pyi │ │ │ │ │ ├── jslib │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── devalue.pyi │ │ │ │ │ ├── networking.pyi │ │ │ │ │ ├── progress.pyi │ │ │ │ │ └── traversal.pyi │ │ │ │ │ ├── version.pyi │ │ │ │ │ └── webvtt.pyi │ │ │ │ ├── zstd │ │ │ │ └── zstd.pyi │ │ │ │ └── zxcvbn │ │ │ │ └── zxcvbn │ │ │ │ ├── __init__.pyi │ │ │ │ ├── adjacency_graphs.pyi │ │ │ │ ├── feedback.pyi │ │ │ │ ├── frequency_lists.pyi │ │ │ │ ├── matching.pyi │ │ │ │ ├── scoring.pyi │ │ │ │ └── time_estimates.pyi │ │ └── typeshed_metadata.json │ └── update.py ├── pyrefly_config │ ├── Cargo.toml │ └── src │ │ ├── args.rs │ │ ├── base.rs │ │ ├── config.rs │ │ ├── environment │ │ ├── active_environment.rs │ │ ├── conda.rs │ │ ├── environment.rs │ │ ├── finder.rs │ │ ├── interpreters.rs │ │ ├── mod.rs │ │ └── venv.rs │ │ ├── error.rs │ │ ├── error_kind.rs │ │ ├── file_kind.rs │ │ ├── finder.rs │ │ ├── lib.rs │ │ ├── migration │ │ ├── config_option_migrater.rs │ │ ├── error_codes.rs │ │ ├── ignore_missing_imports.rs │ │ ├── mod.rs │ │ ├── mypy │ │ │ ├── ini.rs │ │ │ ├── mod.rs │ │ │ ├── pyproject.rs │ │ │ ├── regex_converter.rs │ │ │ └── util.rs │ │ ├── project_excludes.rs │ │ ├── project_includes.rs │ │ ├── pyright.rs │ │ ├── python_interpreter.rs │ │ ├── python_platform.rs │ │ ├── python_version.rs │ │ ├── run.rs │ │ ├── search_path.rs │ │ ├── site_package_path.rs │ │ ├── sub_configs.rs │ │ ├── test_util.rs │ │ └── untyped_def_behavior.rs │ │ ├── module_wildcard.rs │ │ ├── pyproject.rs │ │ └── util.rs ├── pyrefly_derive │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── type_eq.rs │ │ └── visit.rs ├── pyrefly_python │ ├── Cargo.toml │ └── src │ │ ├── ast.rs │ │ ├── display.rs │ │ ├── docstring.rs │ │ ├── dunder.rs │ │ ├── folding.rs │ │ ├── ignore.rs │ │ ├── keywords.rs │ │ ├── lib.rs │ │ ├── module.rs │ │ ├── module_name.rs │ │ ├── module_path.rs │ │ ├── nesting_context.rs │ │ ├── qname.rs │ │ ├── short_identifier.rs │ │ ├── symbol_kind.rs │ │ └── sys_info.rs ├── pyrefly_types │ ├── Cargo.toml │ └── src │ │ ├── alias.rs │ │ ├── annotation.rs │ │ ├── callable.rs │ │ ├── class.rs │ │ ├── display.rs │ │ ├── equality.rs │ │ ├── facet.rs │ │ ├── globals.rs │ │ ├── keywords.rs │ │ ├── lib.rs │ │ ├── lit_int.rs │ │ ├── literal.rs │ │ ├── module.rs │ │ ├── param_spec.rs │ │ ├── quantified.rs │ │ ├── read_only.rs │ │ ├── simplify.rs │ │ ├── special_form.rs │ │ ├── stdlib.rs │ │ ├── tuple.rs │ │ ├── type_info.rs │ │ ├── type_output.rs │ │ ├── type_var.rs │ │ ├── type_var_tuple.rs │ │ ├── typed_dict.rs │ │ └── types.rs ├── pyrefly_util │ ├── Cargo.toml │ └── src │ │ ├── absolutize.rs │ │ ├── arc_id.rs │ │ ├── args.rs │ │ ├── assert_size.rs │ │ ├── display.rs │ │ ├── events.rs │ │ ├── exclusive_lock.rs │ │ ├── forgetter.rs │ │ ├── fs_anyhow.rs │ │ ├── gas.rs │ │ ├── globs.rs │ │ ├── includes.rs │ │ ├── lib.rs │ │ ├── lined_buffer.rs │ │ ├── lock.rs │ │ ├── locked_map.rs │ │ ├── memory.rs │ │ ├── no_hash.rs │ │ ├── owner.rs │ │ ├── panic.rs │ │ ├── prelude.rs │ │ ├── recurser.rs │ │ ├── ruff_visitors.rs │ │ ├── small_set1.rs │ │ ├── suggest.rs │ │ ├── task_heap.rs │ │ ├── test_path.rs │ │ ├── thread_pool.rs │ │ ├── trace.rs │ │ ├── uniques.rs │ │ ├── upgrade_lock.rs │ │ ├── upward_search.rs │ │ ├── visit.rs │ │ ├── watch_pattern.rs │ │ ├── watcher.rs │ │ └── with_hash.rs └── tsp_types │ ├── Cargo.toml │ ├── protocol_generator │ ├── .gitignore │ ├── generate_protocol.py │ ├── tsp.json │ └── tsp.schema.json │ ├── src │ ├── common.rs │ ├── lib.rs │ └── protocol.rs │ └── tests │ ├── combine_types.rs │ ├── get_builtin_type.rs │ ├── get_diagnostics.rs │ ├── get_diagnostics_version.rs │ ├── get_docstring.rs │ ├── get_matching_overloads.rs │ ├── get_metaclass.rs │ ├── get_overloads.rs │ ├── get_repr.rs │ ├── get_snapshot.rs │ ├── get_supported_protocol_version.rs │ ├── get_symbols_for_node.rs │ ├── get_symbols_for_type.rs │ ├── get_type.rs │ ├── get_type_alias_info.rs │ ├── get_type_args.rs │ ├── mod.rs │ └── resolve_import_declaration.rs ├── debug.html ├── empty.py ├── lsp ├── .gitignore ├── .vscode-test.mjs ├── .vscodeignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── esbuild.js ├── images │ └── pyrefly-symbol.png ├── package-lock.json ├── package.json ├── src │ ├── docstring.ts │ ├── extension-interop.ts │ ├── extension.ts │ ├── status-bar.ts │ └── test │ │ ├── README.md │ │ └── extension.test.ts └── tsconfig.json ├── pyrefly ├── .gitignore ├── Cargo.toml ├── README.md ├── bin │ └── main.rs ├── lib │ ├── alt │ │ ├── answers.rs │ │ ├── answers_solver.rs │ │ ├── attr.rs │ │ ├── call.rs │ │ ├── callable.rs │ │ ├── class │ │ │ ├── class_field.rs │ │ │ ├── class_metadata.rs │ │ │ ├── classdef.rs │ │ │ ├── dataclass.rs │ │ │ ├── django.rs │ │ │ ├── enums.rs │ │ │ ├── mod.rs │ │ │ ├── named_tuple.rs │ │ │ ├── new_type.rs │ │ │ ├── pydantic.rs │ │ │ ├── pydantic_lax.rs │ │ │ ├── targs.rs │ │ │ ├── total_ordering.rs │ │ │ ├── tparams.rs │ │ │ ├── tuple.rs │ │ │ ├── typed_dict.rs │ │ │ └── variance_inference.rs │ │ ├── debugging.rs │ │ ├── expr.rs │ │ ├── function.rs │ │ ├── mod.rs │ │ ├── narrow.rs │ │ ├── operators.rs │ │ ├── overload.rs │ │ ├── solve.rs │ │ ├── special_calls.rs │ │ ├── specials.rs │ │ ├── subscript.rs │ │ ├── traits.rs │ │ ├── types │ │ │ ├── abstract_class.rs │ │ │ ├── class_bases.rs │ │ │ ├── class_metadata.rs │ │ │ ├── decorated_function.rs │ │ │ ├── legacy_lookup.rs │ │ │ ├── mod.rs │ │ │ ├── pydantic.rs │ │ │ └── yields.rs │ │ └── unwrap.rs │ ├── binding │ │ ├── base_class.rs │ │ ├── binding.rs │ │ ├── bindings.rs │ │ ├── class.rs │ │ ├── django.rs │ │ ├── expr.rs │ │ ├── function.rs │ │ ├── mod.rs │ │ ├── narrow.rs │ │ ├── pattern.rs │ │ ├── pydantic.rs │ │ ├── scope.rs │ │ ├── stmt.rs │ │ ├── table.rs │ │ └── target.rs │ ├── commands │ │ ├── all.rs │ │ ├── buck_check.rs │ │ ├── check.rs │ │ ├── config_finder.rs │ │ ├── dump_config.rs │ │ ├── files.rs │ │ ├── infer.rs │ │ ├── init.rs │ │ ├── lsp.rs │ │ ├── mod.rs │ │ ├── report.rs │ │ ├── tsp.rs │ │ └── util.rs │ ├── compat.rs │ ├── error │ │ ├── baseline.rs │ │ ├── collector.rs │ │ ├── context.rs │ │ ├── display.rs │ │ ├── error.rs │ │ ├── expectation.rs │ │ ├── legacy.rs │ │ ├── mod.rs │ │ ├── style.rs │ │ ├── summarize.rs │ │ └── suppress.rs │ ├── export │ │ ├── definitions.rs │ │ ├── deprecation.rs │ │ ├── exports.rs │ │ ├── mod.rs │ │ └── special.rs │ ├── graph │ │ ├── calculation.rs │ │ ├── index.rs │ │ ├── index_map.rs │ │ └── mod.rs │ ├── lib.rs │ ├── lsp │ │ ├── mod.rs │ │ ├── module_helpers.rs │ │ ├── non_wasm │ │ │ ├── build_system.rs │ │ │ ├── document_symbols.rs │ │ │ ├── folding_ranges.rs │ │ │ ├── lsp.rs │ │ │ ├── mod.rs │ │ │ ├── module_helpers.rs │ │ │ ├── queue.rs │ │ │ ├── server.rs │ │ │ ├── stdlib.rs │ │ │ ├── transaction_manager.rs │ │ │ ├── unsaved_file_tracker.rs │ │ │ ├── will_rename_files.rs │ │ │ ├── workspace.rs │ │ │ └── workspace_symbols.rs │ │ └── wasm │ │ │ ├── hover.rs │ │ │ ├── inlay_hints.rs │ │ │ ├── mod.rs │ │ │ ├── notebook.rs │ │ │ ├── provide_type.rs │ │ │ ├── semantic_tokens.rs │ │ │ └── signature_help.rs │ ├── module │ │ ├── bundled.rs │ │ ├── finder.rs │ │ ├── mod.rs │ │ ├── parse.rs │ │ ├── third_party.rs │ │ ├── typeshed.rs │ │ └── typeshed_third_party.rs │ ├── playground.rs │ ├── query.rs │ ├── report │ │ ├── binding_memory.rs │ │ ├── debug_info.rs │ │ ├── glean │ │ │ ├── convert.rs │ │ │ ├── facts.rs │ │ │ ├── mod.rs │ │ │ ├── schema │ │ │ │ ├── builtin.rs │ │ │ │ ├── digest.rs │ │ │ │ ├── gencode.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── python.rs │ │ │ │ └── src.rs │ │ │ └── snapshots │ │ │ │ ├── calls.json │ │ │ │ ├── classes.json │ │ │ │ ├── exports_all.json │ │ │ │ ├── generated_file.json │ │ │ │ ├── imports.json │ │ │ │ ├── return_types.json │ │ │ │ ├── simple.json │ │ │ │ ├── try_except.json │ │ │ │ └── type_lit_str.json │ │ ├── mod.rs │ │ ├── pysa │ │ │ ├── ast_visitor.rs │ │ │ ├── call_graph.rs │ │ │ ├── captured_variable.rs │ │ │ ├── class.rs │ │ │ ├── collect.rs │ │ │ ├── context.rs │ │ │ ├── function.rs │ │ │ ├── global_variable.rs │ │ │ ├── is_test_module.rs │ │ │ ├── location.rs │ │ │ ├── mod.rs │ │ │ ├── module.rs │ │ │ ├── override_graph.rs │ │ │ ├── scope.rs │ │ │ ├── slow_fun_monitor.rs │ │ │ ├── step_logger.rs │ │ │ ├── type_of_expression.rs │ │ │ └── types.rs │ │ └── trace.rs │ ├── solver │ │ ├── mod.rs │ │ ├── solver.rs │ │ ├── subset.rs │ │ └── type_order.rs │ ├── state │ │ ├── dirty.rs │ │ ├── epoch.rs │ │ ├── errors.rs │ │ ├── ide.rs │ │ ├── load.rs │ │ ├── loader.rs │ │ ├── lsp.rs │ │ ├── lsp │ │ │ └── quick_fixes │ │ │ │ ├── extract_function.rs │ │ │ │ └── mod.rs │ │ ├── lsp_attributes.rs │ │ ├── memory.rs │ │ ├── mod.rs │ │ ├── notebook.rs │ │ ├── require.rs │ │ ├── semantic_tokens.rs │ │ ├── state.rs │ │ ├── steps.rs │ │ └── subscriber.rs │ ├── test │ │ ├── abstract_methods.rs │ │ ├── assign.rs │ │ ├── attribute_narrow.rs │ │ ├── attributes.rs │ │ ├── callable.rs │ │ ├── calls.rs │ │ ├── class_keywords.rs │ │ ├── class_overrides.rs │ │ ├── class_subtyping.rs │ │ ├── class_super.rs │ │ ├── constructors.rs │ │ ├── contextual.rs │ │ ├── cycles.rs │ │ ├── dataclass_transform.rs │ │ ├── dataclasses.rs │ │ ├── decorators.rs │ │ ├── delayed_inference.rs │ │ ├── descriptors.rs │ │ ├── dict.rs │ │ ├── django │ │ │ ├── auto_generated_fields.rs │ │ │ ├── config.rs │ │ │ ├── enums.rs │ │ │ ├── fields.rs │ │ │ ├── foreign_key.rs │ │ │ ├── many_to_many.rs │ │ │ ├── mod.rs │ │ │ ├── model.rs │ │ │ ├── third-party │ │ │ │ └── django-stubs │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── apps │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ └── registry.pyi │ │ │ │ │ ├── conf │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── global_settings.pyi │ │ │ │ │ ├── locale │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── urls │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── i18n.pyi │ │ │ │ │ │ └── static.pyi │ │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── actions.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── checks.pyi │ │ │ │ │ │ ├── decorators.pyi │ │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ │ ├── filters.pyi │ │ │ │ │ │ ├── forms.pyi │ │ │ │ │ │ ├── helpers.pyi │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ ├── options.pyi │ │ │ │ │ │ ├── sites.pyi │ │ │ │ │ │ ├── templatetags │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── admin_list.pyi │ │ │ │ │ │ │ ├── admin_modify.pyi │ │ │ │ │ │ │ ├── admin_urls.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ └── log.pyi │ │ │ │ │ │ ├── tests.pyi │ │ │ │ │ │ ├── utils.pyi │ │ │ │ │ │ ├── views │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── autocomplete.pyi │ │ │ │ │ │ │ ├── decorators.pyi │ │ │ │ │ │ │ └── main.pyi │ │ │ │ │ │ └── widgets.pyi │ │ │ │ │ ├── admindocs │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── middleware.pyi │ │ │ │ │ │ ├── urls.pyi │ │ │ │ │ │ ├── utils.pyi │ │ │ │ │ │ └── views.pyi │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── admin.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── backends.pyi │ │ │ │ │ │ ├── base_user.pyi │ │ │ │ │ │ ├── checks.pyi │ │ │ │ │ │ ├── context_processors.pyi │ │ │ │ │ │ ├── decorators.pyi │ │ │ │ │ │ ├── forms.pyi │ │ │ │ │ │ ├── handlers │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── modwsgi.pyi │ │ │ │ │ │ ├── hashers.pyi │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── changepassword.pyi │ │ │ │ │ │ │ │ └── createsuperuser.pyi │ │ │ │ │ │ ├── middleware.pyi │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── mixins.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ ├── password_validation.pyi │ │ │ │ │ │ ├── signals.pyi │ │ │ │ │ │ ├── tokens.pyi │ │ │ │ │ │ ├── urls.pyi │ │ │ │ │ │ ├── validators.pyi │ │ │ │ │ │ └── views.pyi │ │ │ │ │ ├── contenttypes │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── admin.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── checks.pyi │ │ │ │ │ │ ├── fields.pyi │ │ │ │ │ │ ├── forms.pyi │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ └── remove_stale_contenttypes.pyi │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ ├── prefetch.pyi │ │ │ │ │ │ └── views.pyi │ │ │ │ │ ├── flatpages │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── admin.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── forms.pyi │ │ │ │ │ │ ├── middleware.pyi │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ ├── sitemaps.pyi │ │ │ │ │ │ ├── templatetags │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── flatpages.pyi │ │ │ │ │ │ ├── urls.pyi │ │ │ │ │ │ └── views.pyi │ │ │ │ │ ├── gis │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── options.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── backends │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ │ ├── adapter.pyi │ │ │ │ │ │ │ │ │ ├── features.pyi │ │ │ │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ │ │ │ └── operations.pyi │ │ │ │ │ │ │ │ ├── mysql │ │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ │ │ ├── features.pyi │ │ │ │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ │ │ │ └── schema.pyi │ │ │ │ │ │ │ │ ├── oracle │ │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ │ ├── adapter.pyi │ │ │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ │ │ ├── features.pyi │ │ │ │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ │ │ │ └── schema.pyi │ │ │ │ │ │ │ │ ├── postgis │ │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ │ ├── adapter.pyi │ │ │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ │ │ ├── const.pyi │ │ │ │ │ │ │ │ │ ├── features.pyi │ │ │ │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ │ │ │ ├── pgraster.pyi │ │ │ │ │ │ │ │ │ └── schema.pyi │ │ │ │ │ │ │ │ ├── spatialite │ │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ │ ├── adapter.pyi │ │ │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ │ │ ├── client.pyi │ │ │ │ │ │ │ │ │ ├── features.pyi │ │ │ │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ │ │ │ └── schema.pyi │ │ │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ │ │ └── models │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── aggregates.pyi │ │ │ │ │ │ │ │ ├── fields.pyi │ │ │ │ │ │ │ │ ├── functions.pyi │ │ │ │ │ │ │ │ ├── lookups.pyi │ │ │ │ │ │ │ │ ├── proxy.pyi │ │ │ │ │ │ │ │ └── sql │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ └── conversion.pyi │ │ │ │ │ │ ├── feeds.pyi │ │ │ │ │ │ ├── forms │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── fields.pyi │ │ │ │ │ │ │ └── widgets.pyi │ │ │ │ │ │ ├── gdal │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── datasource.pyi │ │ │ │ │ │ │ ├── driver.pyi │ │ │ │ │ │ │ ├── envelope.pyi │ │ │ │ │ │ │ ├── error.pyi │ │ │ │ │ │ │ ├── feature.pyi │ │ │ │ │ │ │ ├── field.pyi │ │ │ │ │ │ │ ├── geometries.pyi │ │ │ │ │ │ │ ├── geomtype.pyi │ │ │ │ │ │ │ ├── layer.pyi │ │ │ │ │ │ │ ├── libgdal.pyi │ │ │ │ │ │ │ ├── prototypes │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── ds.pyi │ │ │ │ │ │ │ │ ├── errcheck.pyi │ │ │ │ │ │ │ │ ├── generation.pyi │ │ │ │ │ │ │ │ ├── geom.pyi │ │ │ │ │ │ │ │ ├── raster.pyi │ │ │ │ │ │ │ │ └── srs.pyi │ │ │ │ │ │ │ ├── raster │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── band.pyi │ │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ │ ├── const.pyi │ │ │ │ │ │ │ │ └── source.pyi │ │ │ │ │ │ │ └── srs.pyi │ │ │ │ │ │ ├── geoip2.pyi │ │ │ │ │ │ ├── geometry.pyi │ │ │ │ │ │ ├── geos │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── collections.pyi │ │ │ │ │ │ │ ├── coordseq.pyi │ │ │ │ │ │ │ ├── error.pyi │ │ │ │ │ │ │ ├── factory.pyi │ │ │ │ │ │ │ ├── geometry.pyi │ │ │ │ │ │ │ ├── io.pyi │ │ │ │ │ │ │ ├── libgeos.pyi │ │ │ │ │ │ │ ├── linestring.pyi │ │ │ │ │ │ │ ├── mutable_list.pyi │ │ │ │ │ │ │ ├── point.pyi │ │ │ │ │ │ │ ├── polygon.pyi │ │ │ │ │ │ │ ├── prepared.pyi │ │ │ │ │ │ │ └── prototypes │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── coordseq.pyi │ │ │ │ │ │ │ │ ├── errcheck.pyi │ │ │ │ │ │ │ │ ├── geom.pyi │ │ │ │ │ │ │ │ ├── io.pyi │ │ │ │ │ │ │ │ ├── misc.pyi │ │ │ │ │ │ │ │ ├── predicates.pyi │ │ │ │ │ │ │ │ ├── prepared.pyi │ │ │ │ │ │ │ │ ├── threadsafe.pyi │ │ │ │ │ │ │ │ └── topology.pyi │ │ │ │ │ │ ├── measure.pyi │ │ │ │ │ │ ├── ptr.pyi │ │ │ │ │ │ ├── serializers │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── geojson.pyi │ │ │ │ │ │ ├── shortcuts.pyi │ │ │ │ │ │ ├── sitemaps │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── kml.pyi │ │ │ │ │ │ │ └── views.pyi │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── layermapping.pyi │ │ │ │ │ │ │ ├── ogrinfo.pyi │ │ │ │ │ │ │ ├── ogrinspect.pyi │ │ │ │ │ │ │ └── srs.pyi │ │ │ │ │ │ └── views.pyi │ │ │ │ │ ├── humanize │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ └── templatetags │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── humanize.pyi │ │ │ │ │ ├── messages │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── api.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── constants.pyi │ │ │ │ │ │ ├── context_processors.pyi │ │ │ │ │ │ ├── middleware.pyi │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── cookie.pyi │ │ │ │ │ │ │ ├── fallback.pyi │ │ │ │ │ │ │ └── session.pyi │ │ │ │ │ │ ├── test.pyi │ │ │ │ │ │ ├── utils.pyi │ │ │ │ │ │ └── views.pyi │ │ │ │ │ ├── postgres │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── aggregates │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── general.pyi │ │ │ │ │ │ │ ├── mixins.pyi │ │ │ │ │ │ │ └── statistics.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── constraints.pyi │ │ │ │ │ │ ├── expressions.pyi │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── array.pyi │ │ │ │ │ │ │ ├── citext.pyi │ │ │ │ │ │ │ ├── hstore.pyi │ │ │ │ │ │ │ ├── jsonb.pyi │ │ │ │ │ │ │ ├── ranges.pyi │ │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ │ ├── forms │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── array.pyi │ │ │ │ │ │ │ ├── hstore.pyi │ │ │ │ │ │ │ └── ranges.pyi │ │ │ │ │ │ ├── functions.pyi │ │ │ │ │ │ ├── indexes.pyi │ │ │ │ │ │ ├── lookups.pyi │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ ├── search.pyi │ │ │ │ │ │ ├── serializers.pyi │ │ │ │ │ │ ├── signals.pyi │ │ │ │ │ │ ├── utils.pyi │ │ │ │ │ │ └── validators.pyi │ │ │ │ │ ├── redirects │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── admin.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── middleware.pyi │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ └── models.pyi │ │ │ │ │ ├── sessions │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── backends │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── cache.pyi │ │ │ │ │ │ │ ├── cached_db.pyi │ │ │ │ │ │ │ ├── db.pyi │ │ │ │ │ │ │ ├── file.pyi │ │ │ │ │ │ │ └── signed_cookies.pyi │ │ │ │ │ │ ├── base_session.pyi │ │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ └── clearsessions.pyi │ │ │ │ │ │ ├── middleware.pyi │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ └── serializers.pyi │ │ │ │ │ ├── sitemaps │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ └── views.pyi │ │ │ │ │ ├── sites │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── admin.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── checks.pyi │ │ │ │ │ │ ├── management.pyi │ │ │ │ │ │ ├── managers.pyi │ │ │ │ │ │ ├── middleware.pyi │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ ├── requests.pyi │ │ │ │ │ │ └── shortcuts.pyi │ │ │ │ │ ├── staticfiles │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ ├── checks.pyi │ │ │ │ │ │ ├── finders.pyi │ │ │ │ │ │ ├── handlers.pyi │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── collectstatic.pyi │ │ │ │ │ │ │ │ ├── findstatic.pyi │ │ │ │ │ │ │ │ └── runserver.pyi │ │ │ │ │ │ ├── storage.pyi │ │ │ │ │ │ ├── testing.pyi │ │ │ │ │ │ ├── urls.pyi │ │ │ │ │ │ ├── utils.pyi │ │ │ │ │ │ └── views.pyi │ │ │ │ │ └── syndication │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── apps.pyi │ │ │ │ │ │ └── views.pyi │ │ │ │ │ ├── core │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── asgi.pyi │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── backends │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── db.pyi │ │ │ │ │ │ │ ├── dummy.pyi │ │ │ │ │ │ │ ├── filebased.pyi │ │ │ │ │ │ │ ├── locmem.pyi │ │ │ │ │ │ │ ├── memcached.pyi │ │ │ │ │ │ │ └── redis.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── checks │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── async_checks.pyi │ │ │ │ │ │ ├── caches.pyi │ │ │ │ │ │ ├── compatibility │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── django_4_0.pyi │ │ │ │ │ │ ├── database.pyi │ │ │ │ │ │ ├── files.pyi │ │ │ │ │ │ ├── messages.pyi │ │ │ │ │ │ ├── model_checks.pyi │ │ │ │ │ │ ├── registry.pyi │ │ │ │ │ │ ├── security │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── csrf.pyi │ │ │ │ │ │ │ └── sessions.pyi │ │ │ │ │ │ ├── templates.pyi │ │ │ │ │ │ ├── translation.pyi │ │ │ │ │ │ └── urls.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── files │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── images.pyi │ │ │ │ │ │ ├── locks.pyi │ │ │ │ │ │ ├── move.pyi │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── filesystem.pyi │ │ │ │ │ │ │ ├── handler.pyi │ │ │ │ │ │ │ ├── memory.pyi │ │ │ │ │ │ │ └── mixins.pyi │ │ │ │ │ │ ├── temp.pyi │ │ │ │ │ │ ├── uploadedfile.pyi │ │ │ │ │ │ ├── uploadhandler.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── handlers │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── asgi.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── exception.pyi │ │ │ │ │ │ └── wsgi.pyi │ │ │ │ │ ├── mail │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── backends │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── console.pyi │ │ │ │ │ │ │ ├── dummy.pyi │ │ │ │ │ │ │ ├── filebased.pyi │ │ │ │ │ │ │ ├── locmem.pyi │ │ │ │ │ │ │ └── smtp.pyi │ │ │ │ │ │ ├── message.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── management │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── color.pyi │ │ │ │ │ │ ├── commands │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── check.pyi │ │ │ │ │ │ │ ├── compilemessages.pyi │ │ │ │ │ │ │ ├── createcachetable.pyi │ │ │ │ │ │ │ ├── dbshell.pyi │ │ │ │ │ │ │ ├── diffsettings.pyi │ │ │ │ │ │ │ ├── dumpdata.pyi │ │ │ │ │ │ │ ├── flush.pyi │ │ │ │ │ │ │ ├── inspectdb.pyi │ │ │ │ │ │ │ ├── loaddata.pyi │ │ │ │ │ │ │ ├── makemessages.pyi │ │ │ │ │ │ │ ├── makemigrations.pyi │ │ │ │ │ │ │ ├── migrate.pyi │ │ │ │ │ │ │ ├── optimizemigration.pyi │ │ │ │ │ │ │ ├── runserver.pyi │ │ │ │ │ │ │ ├── sendtestemail.pyi │ │ │ │ │ │ │ ├── shell.pyi │ │ │ │ │ │ │ ├── showmigrations.pyi │ │ │ │ │ │ │ ├── sqlflush.pyi │ │ │ │ │ │ │ ├── sqlmigrate.pyi │ │ │ │ │ │ │ ├── sqlsequencereset.pyi │ │ │ │ │ │ │ ├── squashmigrations.pyi │ │ │ │ │ │ │ ├── startapp.pyi │ │ │ │ │ │ │ ├── startproject.pyi │ │ │ │ │ │ │ ├── test.pyi │ │ │ │ │ │ │ └── testserver.pyi │ │ │ │ │ │ ├── sql.pyi │ │ │ │ │ │ ├── templates.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── paginator.pyi │ │ │ │ │ ├── serializers │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── json.pyi │ │ │ │ │ │ ├── jsonl.pyi │ │ │ │ │ │ ├── python.pyi │ │ │ │ │ │ ├── pyyaml.pyi │ │ │ │ │ │ └── xml_serializer.pyi │ │ │ │ │ ├── servers │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── basehttp.pyi │ │ │ │ │ ├── signals.pyi │ │ │ │ │ ├── signing.pyi │ │ │ │ │ ├── validators.pyi │ │ │ │ │ └── wsgi.pyi │ │ │ │ │ ├── db │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── client.pyi │ │ │ │ │ │ │ ├── creation.pyi │ │ │ │ │ │ │ ├── features.pyi │ │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ │ ├── schema.pyi │ │ │ │ │ │ │ └── validation.pyi │ │ │ │ │ │ ├── ddl_references.pyi │ │ │ │ │ │ ├── dummy │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ └── features.pyi │ │ │ │ │ │ ├── mysql │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── client.pyi │ │ │ │ │ │ │ ├── compiler.pyi │ │ │ │ │ │ │ ├── creation.pyi │ │ │ │ │ │ │ ├── features.pyi │ │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ │ ├── schema.pyi │ │ │ │ │ │ │ └── validation.pyi │ │ │ │ │ │ ├── oracle │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── client.pyi │ │ │ │ │ │ │ ├── creation.pyi │ │ │ │ │ │ │ ├── features.pyi │ │ │ │ │ │ │ ├── functions.pyi │ │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ │ ├── schema.pyi │ │ │ │ │ │ │ ├── utils.pyi │ │ │ │ │ │ │ └── validation.pyi │ │ │ │ │ │ ├── postgresql │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── client.pyi │ │ │ │ │ │ │ ├── creation.pyi │ │ │ │ │ │ │ ├── features.pyi │ │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ │ └── schema.pyi │ │ │ │ │ │ ├── signals.pyi │ │ │ │ │ │ ├── sqlite3 │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── client.pyi │ │ │ │ │ │ │ ├── creation.pyi │ │ │ │ │ │ │ ├── features.pyi │ │ │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ │ │ ├── operations.pyi │ │ │ │ │ │ │ └── schema.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── autodetector.pyi │ │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ │ ├── executor.pyi │ │ │ │ │ │ ├── graph.pyi │ │ │ │ │ │ ├── loader.pyi │ │ │ │ │ │ ├── migration.pyi │ │ │ │ │ │ ├── operations │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ ├── fields.pyi │ │ │ │ │ │ │ ├── models.pyi │ │ │ │ │ │ │ ├── special.pyi │ │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ │ ├── optimizer.pyi │ │ │ │ │ │ ├── questioner.pyi │ │ │ │ │ │ ├── recorder.pyi │ │ │ │ │ │ ├── serializer.pyi │ │ │ │ │ │ ├── state.pyi │ │ │ │ │ │ ├── utils.pyi │ │ │ │ │ │ └── writer.pyi │ │ │ │ │ ├── models │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── aggregates.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── constants.pyi │ │ │ │ │ │ ├── constraints.pyi │ │ │ │ │ │ ├── deletion.pyi │ │ │ │ │ │ ├── enums.pyi │ │ │ │ │ │ ├── expressions.pyi │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── composite.pyi │ │ │ │ │ │ │ ├── files.pyi │ │ │ │ │ │ │ ├── generated.pyi │ │ │ │ │ │ │ ├── json.pyi │ │ │ │ │ │ │ ├── mixins.pyi │ │ │ │ │ │ │ ├── proxy.pyi │ │ │ │ │ │ │ ├── related.pyi │ │ │ │ │ │ │ ├── related_descriptors.pyi │ │ │ │ │ │ │ ├── related_lookups.pyi │ │ │ │ │ │ │ └── reverse_related.pyi │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── comparison.pyi │ │ │ │ │ │ │ ├── datetime.pyi │ │ │ │ │ │ │ ├── json.pyi │ │ │ │ │ │ │ ├── math.pyi │ │ │ │ │ │ │ ├── mixins.pyi │ │ │ │ │ │ │ ├── text.pyi │ │ │ │ │ │ │ └── window.pyi │ │ │ │ │ │ ├── indexes.pyi │ │ │ │ │ │ ├── lookups.pyi │ │ │ │ │ │ ├── manager.pyi │ │ │ │ │ │ ├── options.pyi │ │ │ │ │ │ ├── query.pyi │ │ │ │ │ │ ├── query_utils.pyi │ │ │ │ │ │ ├── signals.pyi │ │ │ │ │ │ ├── sql │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── compiler.pyi │ │ │ │ │ │ │ ├── constants.pyi │ │ │ │ │ │ │ ├── datastructures.pyi │ │ │ │ │ │ │ ├── query.pyi │ │ │ │ │ │ │ ├── subqueries.pyi │ │ │ │ │ │ │ └── where.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── transaction.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── dispatch │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── dispatcher.pyi │ │ │ │ │ ├── forms │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── boundfield.pyi │ │ │ │ │ ├── fields.pyi │ │ │ │ │ ├── forms.pyi │ │ │ │ │ ├── formsets.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ ├── renderers.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── widgets.pyi │ │ │ │ │ ├── http │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cookie.pyi │ │ │ │ │ ├── multipartparser.pyi │ │ │ │ │ ├── request.pyi │ │ │ │ │ └── response.pyi │ │ │ │ │ ├── middleware │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cache.pyi │ │ │ │ │ ├── clickjacking.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── csrf.pyi │ │ │ │ │ ├── gzip.pyi │ │ │ │ │ ├── http.pyi │ │ │ │ │ ├── locale.pyi │ │ │ │ │ └── security.pyi │ │ │ │ │ ├── py.typed │ │ │ │ │ ├── shortcuts.pyi │ │ │ │ │ ├── template │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── autoreload.pyi │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── django.pyi │ │ │ │ │ │ ├── dummy.pyi │ │ │ │ │ │ ├── jinja2.pyi │ │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── context.pyi │ │ │ │ │ ├── context_processors.pyi │ │ │ │ │ ├── defaultfilters.pyi │ │ │ │ │ ├── defaulttags.pyi │ │ │ │ │ ├── engine.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── library.pyi │ │ │ │ │ ├── loader.pyi │ │ │ │ │ ├── loader_tags.pyi │ │ │ │ │ ├── loaders │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── app_directories.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── cached.pyi │ │ │ │ │ │ ├── filesystem.pyi │ │ │ │ │ │ └── locmem.pyi │ │ │ │ │ ├── response.pyi │ │ │ │ │ ├── smartif.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── templatetags │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cache.pyi │ │ │ │ │ ├── i18n.pyi │ │ │ │ │ ├── l10n.pyi │ │ │ │ │ ├── static.pyi │ │ │ │ │ └── tz.pyi │ │ │ │ │ ├── test │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── html.pyi │ │ │ │ │ ├── runner.pyi │ │ │ │ │ ├── selenium.pyi │ │ │ │ │ ├── signals.pyi │ │ │ │ │ ├── testcases.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── urls │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── conf.pyi │ │ │ │ │ ├── converters.pyi │ │ │ │ │ ├── exceptions.pyi │ │ │ │ │ ├── resolvers.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _os.pyi │ │ │ │ │ ├── archive.pyi │ │ │ │ │ ├── asyncio.pyi │ │ │ │ │ ├── autoreload.pyi │ │ │ │ │ ├── cache.pyi │ │ │ │ │ ├── choices.pyi │ │ │ │ │ ├── connection.pyi │ │ │ │ │ ├── crypto.pyi │ │ │ │ │ ├── datastructures.pyi │ │ │ │ │ ├── dateformat.pyi │ │ │ │ │ ├── dateparse.pyi │ │ │ │ │ ├── dates.pyi │ │ │ │ │ ├── deconstruct.pyi │ │ │ │ │ ├── decorators.pyi │ │ │ │ │ ├── deprecation.pyi │ │ │ │ │ ├── duration.pyi │ │ │ │ │ ├── encoding.pyi │ │ │ │ │ ├── feedgenerator.pyi │ │ │ │ │ ├── formats.pyi │ │ │ │ │ ├── functional.pyi │ │ │ │ │ ├── hashable.pyi │ │ │ │ │ ├── html.pyi │ │ │ │ │ ├── http.pyi │ │ │ │ │ ├── inspect.pyi │ │ │ │ │ ├── ipv6.pyi │ │ │ │ │ ├── itercompat.pyi │ │ │ │ │ ├── log.pyi │ │ │ │ │ ├── lorem_ipsum.pyi │ │ │ │ │ ├── module_loading.pyi │ │ │ │ │ ├── numberformat.pyi │ │ │ │ │ ├── regex_helper.pyi │ │ │ │ │ ├── safestring.pyi │ │ │ │ │ ├── termcolors.pyi │ │ │ │ │ ├── text.pyi │ │ │ │ │ ├── timesince.pyi │ │ │ │ │ ├── timezone.pyi │ │ │ │ │ ├── translation │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── reloader.pyi │ │ │ │ │ │ ├── template.pyi │ │ │ │ │ │ ├── trans_null.pyi │ │ │ │ │ │ └── trans_real.pyi │ │ │ │ │ ├── tree.pyi │ │ │ │ │ ├── version.pyi │ │ │ │ │ └── xmlutils.pyi │ │ │ │ │ └── views │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── csrf.pyi │ │ │ │ │ ├── debug.pyi │ │ │ │ │ ├── decorators │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cache.pyi │ │ │ │ │ ├── clickjacking.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── csrf.pyi │ │ │ │ │ ├── debug.pyi │ │ │ │ │ ├── gzip.pyi │ │ │ │ │ ├── http.pyi │ │ │ │ │ └── vary.pyi │ │ │ │ │ ├── defaults.pyi │ │ │ │ │ ├── generic │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base.pyi │ │ │ │ │ ├── dates.pyi │ │ │ │ │ ├── detail.pyi │ │ │ │ │ ├── edit.pyi │ │ │ │ │ └── list.pyi │ │ │ │ │ ├── i18n.pyi │ │ │ │ │ └── static.pyi │ │ │ ├── util.rs │ │ │ └── view.rs │ │ ├── enums.rs │ │ ├── flow_branching.rs │ │ ├── flow_looping.rs │ │ ├── generic_basic.rs │ │ ├── generic_legacy.rs │ │ ├── generic_restrictions.rs │ │ ├── generic_sub.rs │ │ ├── imports.rs │ │ ├── incremental.rs │ │ ├── inference.rs │ │ ├── literal.rs │ │ ├── lsp │ │ │ ├── call_hierarchy.rs │ │ │ ├── code_actions.rs │ │ │ ├── completion.rs │ │ │ ├── declaration.rs │ │ │ ├── definition.rs │ │ │ ├── diagnostic.rs │ │ │ ├── document_symbols.rs │ │ │ ├── folding_ranges.rs │ │ │ ├── hover.rs │ │ │ ├── hover_docstring.rs │ │ │ ├── hover_type.rs │ │ │ ├── implementation.rs │ │ │ ├── inlay_hint.rs │ │ │ ├── local_find_refs.rs │ │ │ ├── lsp_interaction │ │ │ │ ├── basic.rs │ │ │ │ ├── call_hierarchy.rs │ │ │ │ ├── completion.rs │ │ │ │ ├── configuration.rs │ │ │ │ ├── definition.rs │ │ │ │ ├── diagnostic.rs │ │ │ │ ├── did_change.rs │ │ │ │ ├── file_watcher.rs │ │ │ │ ├── hover.rs │ │ │ │ ├── implementation.rs │ │ │ │ ├── inlay_hint.rs │ │ │ │ ├── io.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── notebook_completion.rs │ │ │ │ ├── notebook_definition.rs │ │ │ │ ├── notebook_hover.rs │ │ │ │ ├── notebook_inlay_hint.rs │ │ │ │ ├── notebook_references.rs │ │ │ │ ├── notebook_signature_help.rs │ │ │ │ ├── notebook_sync.rs │ │ │ │ ├── notebook_tokens.rs │ │ │ │ ├── object_model.rs │ │ │ │ ├── provide_type.rs │ │ │ │ ├── references.rs │ │ │ │ ├── rename.rs │ │ │ │ ├── test_files │ │ │ │ │ ├── attributes_of_py │ │ │ │ │ │ ├── lib.py │ │ │ │ │ │ ├── lib.pyi │ │ │ │ │ │ ├── lib_with_assignments.py │ │ │ │ │ │ ├── lib_with_assignments.pyi │ │ │ │ │ │ ├── src.py │ │ │ │ │ │ └── src_with_assignments.py │ │ │ │ │ ├── attributes_of_py_docstrings │ │ │ │ │ │ ├── lib.py │ │ │ │ │ │ ├── lib.pyi │ │ │ │ │ │ └── src.py │ │ │ │ │ ├── bad_interpreter_bin │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── site-packages │ │ │ │ │ │ │ └── custom_module.py │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── bar.py │ │ │ │ │ │ ├── foo.py │ │ │ │ │ │ └── foo_relative.py │ │ │ │ │ ├── call_hierarchy_test │ │ │ │ │ │ ├── callee.py │ │ │ │ │ │ └── caller.py │ │ │ │ │ ├── config_with_workspace_larger │ │ │ │ │ │ ├── module_dir │ │ │ │ │ │ │ ├── core.py │ │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ │ └── usage.py │ │ │ │ │ │ └── outside_usage.py │ │ │ │ │ ├── config_with_workspace_smaller │ │ │ │ │ │ ├── core.py │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ ├── subdir │ │ │ │ │ │ │ └── usage_outside_workspace.py │ │ │ │ │ │ └── usage_in_config.py │ │ │ │ │ ├── constructor_priority_references │ │ │ │ │ │ ├── init_priority │ │ │ │ │ │ │ ├── person.py │ │ │ │ │ │ │ └── usage.py │ │ │ │ │ │ ├── metaclass_priority │ │ │ │ │ │ │ ├── singleton_meta.py │ │ │ │ │ │ │ └── usage.py │ │ │ │ │ │ └── new_priority │ │ │ │ │ │ │ ├── singleton.py │ │ │ │ │ │ │ └── usage.py │ │ │ │ │ ├── constructor_references │ │ │ │ │ │ ├── person.py │ │ │ │ │ │ └── usage.py │ │ │ │ │ ├── custom_class_type_test.py │ │ │ │ │ ├── custom_interpreter │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── site-packages │ │ │ │ │ │ │ │ └── custom_module.py │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── foo.py │ │ │ │ │ ├── custom_interpreter_config │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── site-packages │ │ │ │ │ │ │ │ └── custom_module.py │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── foo.py │ │ │ │ │ │ │ └── pyrefly.toml │ │ │ │ │ ├── cycle_class │ │ │ │ │ │ ├── bar.py │ │ │ │ │ │ ├── foo.py │ │ │ │ │ │ └── pyrefly.toml │ │ │ │ │ ├── diagnostics_file_in_excludes │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ ├── type_errors_exclude.py │ │ │ │ │ │ └── type_errors_include.py │ │ │ │ │ ├── diagnostics_file_not_in_includes │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ ├── type_errors_exclude.py │ │ │ │ │ │ └── type_errors_include.py │ │ │ │ │ ├── disable_type_error_in_config │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ └── type_errors.py │ │ │ │ │ ├── duplicate_export_test │ │ │ │ │ │ ├── foo.py │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ └── typing.py │ │ │ │ │ ├── error_docs_test.py │ │ │ │ │ ├── error_missing_imports_mode │ │ │ │ │ │ └── test_file.py │ │ │ │ │ ├── filtering_stdlib_errors │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ └── usr │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── python3.12 │ │ │ │ │ │ │ │ └── stdlib_file.py │ │ │ │ │ │ │ ├── lib64 │ │ │ │ │ │ │ └── python3.12 │ │ │ │ │ │ │ │ └── stdlib_file.py │ │ │ │ │ │ │ └── local │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── python3.12 │ │ │ │ │ │ │ └── stdlib_file.py │ │ │ │ │ │ │ └── python3.8 │ │ │ │ │ │ │ └── stdlib_file.py │ │ │ │ │ ├── filtering_stdlib_errors_with_default │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ └── usr │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── python3.12 │ │ │ │ │ │ │ └── stdlib_file.py │ │ │ │ │ ├── imports_builtins │ │ │ │ │ │ ├── imports_builtins.py │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ └── site-packages │ │ │ │ │ │ │ └── typing.py │ │ │ │ │ ├── imports_builtins_no_config.py │ │ │ │ │ ├── inlay_hint_test.py │ │ │ │ │ ├── interpreter_with_no_site_packages │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── python │ │ │ │ │ ├── marker_file_no_config │ │ │ │ │ │ ├── bar.py │ │ │ │ │ │ ├── foo.py │ │ │ │ │ │ └── pyproject.toml │ │ │ │ │ ├── nested_test │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ └── bar.py │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ └── foo.py │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── foo_relative.py │ │ │ │ │ ├── notebook.py │ │ │ │ │ ├── prefer_pyi_when_missing_in_py │ │ │ │ │ │ ├── foo.py │ │ │ │ │ │ ├── foo.pyi │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ └── pyrefly.toml │ │ │ │ │ ├── primitive_type_test.py │ │ │ │ │ ├── reexport_test │ │ │ │ │ │ ├── base_module.py │ │ │ │ │ │ ├── module_with_reexports.py │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ └── test.py │ │ │ │ │ ├── references_cross_file_method_inheritance │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── child.py │ │ │ │ │ │ ├── child_of_child.py │ │ │ │ │ │ └── usage.py │ │ │ │ │ ├── relative_test │ │ │ │ │ │ └── relative_import.py │ │ │ │ │ ├── rename_editable_package │ │ │ │ │ │ ├── editable_module.py │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ └── user_code.py │ │ │ │ │ ├── rename_third_party │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ ├── user_code.py │ │ │ │ │ │ └── venv_third_party │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── python3.12 │ │ │ │ │ │ │ └── site-packages │ │ │ │ │ │ │ └── third_party_lib.py │ │ │ │ │ ├── stdlib_with_explicit_includes │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ └── usr │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── python3.12 │ │ │ │ │ │ │ └── stdlib_file.py │ │ │ │ │ ├── suppression.py │ │ │ │ │ ├── tests_requiring_config │ │ │ │ │ │ ├── autoimport_provider.py │ │ │ │ │ │ ├── bar.py │ │ │ │ │ │ ├── foo.py │ │ │ │ │ │ ├── pyrefly.toml │ │ │ │ │ │ ├── type_errors.py │ │ │ │ │ │ ├── various_imports.py │ │ │ │ │ │ └── with_synthetic_bindings.py │ │ │ │ │ ├── text_document.py │ │ │ │ │ ├── type_def_inlay_hint_test.py │ │ │ │ │ ├── type_errors.py │ │ │ │ │ ├── unexpected_keyword.py │ │ │ │ │ ├── unreachable_branch.py │ │ │ │ │ ├── unused_import │ │ │ │ │ │ ├── example.py │ │ │ │ │ │ └── from_import.py │ │ │ │ │ ├── unused_parameter │ │ │ │ │ │ ├── example.py │ │ │ │ │ │ └── no_report.py │ │ │ │ │ ├── unused_variable │ │ │ │ │ │ └── example.py │ │ │ │ │ └── utf.py │ │ │ │ ├── type_definition.rs │ │ │ │ ├── unsaved_file.rs │ │ │ │ ├── util.rs │ │ │ │ ├── will_rename_files.rs │ │ │ │ └── workspace_symbol.rs │ │ │ ├── mod.rs │ │ │ ├── rename.rs │ │ │ ├── semantic_tokens.rs │ │ │ └── signature_help.rs │ │ ├── mod.rs │ │ ├── mro.rs │ │ ├── named_tuple.rs │ │ ├── narrow.rs │ │ ├── natural.rs │ │ ├── new_type.rs │ │ ├── operators.rs │ │ ├── overload.rs │ │ ├── paramspec.rs │ │ ├── pattern_match.rs │ │ ├── perf.rs │ │ ├── protocol.rs │ │ ├── pydantic │ │ │ ├── aliases.rs │ │ │ ├── base_settings.rs │ │ │ ├── config.rs │ │ │ ├── extra.rs │ │ │ ├── field.rs │ │ │ ├── mod.rs │ │ │ ├── root_model.rs │ │ │ ├── strictness.rs │ │ │ ├── third-party │ │ │ │ ├── pydantic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _internal │ │ │ │ │ │ └── _model_construction.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── root_model.py │ │ │ │ │ └── types.py │ │ │ │ └── pydantic_settings │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── main.py │ │ │ └── util.rs │ │ ├── pysa │ │ │ ├── call_graph.rs │ │ │ ├── captured_variables.rs │ │ │ ├── classes.rs │ │ │ ├── functions.rs │ │ │ ├── global_variables.rs │ │ │ ├── is_test_module.rs │ │ │ ├── mod.rs │ │ │ ├── types.rs │ │ │ └── utils.rs │ │ ├── redundant_cast.rs │ │ ├── returns.rs │ │ ├── scope.rs │ │ ├── simple.rs │ │ ├── state.rs │ │ ├── subscript_narrow.rs │ │ ├── suppression.rs │ │ ├── sys_info.rs │ │ ├── tsp │ │ │ ├── mod.rs │ │ │ └── tsp_interaction │ │ │ │ ├── get_snapshot.rs │ │ │ │ ├── get_supported_protocol_version.rs │ │ │ │ ├── mod.rs │ │ │ │ └── object_model.rs │ │ ├── tuple.rs │ │ ├── type_alias.rs │ │ ├── type_var_tuple.rs │ │ ├── typed_dict.rs │ │ ├── typing_self.rs │ │ ├── unnecessary_comparison.rs │ │ ├── untyped_def_behaviors.rs │ │ ├── util.rs │ │ ├── var_resolution.rs │ │ ├── variance_inference.rs │ │ ├── with.rs │ │ └── yields.rs │ └── tsp │ │ ├── mod.rs │ │ ├── requests │ │ ├── get_snapshot.rs │ │ ├── get_supported_protocol_version.rs │ │ └── mod.rs │ │ └── server.rs ├── pyproject.toml ├── python │ └── pyrefly │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── py.typed └── rust-toolchain ├── pyrefly_wasm ├── .cargo │ └── config.toml ├── .gitignore ├── Cargo.toml ├── README.md ├── build.sh ├── lib.rs └── rust-toolchain ├── rust-toolchain.toml ├── rustfmt.toml ├── test.py ├── test ├── args.md ├── basic.md ├── config.md ├── errors.md ├── find.md ├── glean │ ├── calls.json │ ├── calls.py │ ├── class.json │ ├── class.py │ ├── func.json │ ├── func.py │ ├── imports.json │ ├── imports.py │ ├── variables.json │ └── variables.py ├── ignores.md ├── interpreter.md ├── notebooks.md └── snippet.md ├── version.bzl ├── website ├── .gitignore ├── .prettierrc ├── LICENSE-DOCUMENTATION ├── README.md ├── babel.config.js ├── blog │ ├── 2025-05-15-pyrefly-intro.md │ ├── 2025-08-19-why-typed-python.md │ ├── 2025-09-15-ide-extension.mdx │ ├── 2025-09-29-typing-numpy.md │ ├── 2025-11-17-pyrefly-beta.mdx │ ├── 2025-12-03-pyrefly-pydantic.md │ ├── authors.yml │ └── blog_imgs │ │ ├── ide-blog-hero.png │ │ ├── ide-settings.png │ │ ├── pydantic-blog.png │ │ ├── pyrefly_intro.webp │ │ ├── release-news.png │ │ └── why-typing-blog.png ├── docs │ ├── IDE-features.mdx │ ├── IDE.mdx │ ├── autotype.mdx │ ├── configuration.mdx │ ├── django.mdx │ ├── error-kinds.mdx │ ├── error-suppressions.mdx │ ├── import-resolution.mdx │ ├── index.mdx │ ├── installation.mdx │ ├── migrating-from-mypy.mdx │ ├── migrating-from-pyright.mdx │ ├── migrating-to-pyrefly.mdx │ ├── pydantic.mdx │ ├── pyrefly-faq.mdx │ ├── python-features-and-peps.mdx │ ├── python-typing-for-beginners.mdx │ └── typing-for-python-developers.mdx ├── docusaurus.config.ts ├── jest.config.ts ├── libs │ └── docusaurus.d.ts ├── package.json ├── scripts │ ├── audit_and_fix_vulnerabilities.sh │ ├── build.sh │ ├── build_wasm_for_test.sh │ ├── build_wasm_for_test_for_sandcastle.sh │ ├── install.sh │ ├── setup_cargo.sh │ └── start.sh ├── sidebars.ts ├── src │ ├── __tests__ │ │ ├── __mocks__ │ │ │ ├── @docusaurus │ │ │ │ ├── theme-common.ts │ │ │ │ └── useBaseUrl.ts │ │ │ ├── @theme │ │ │ │ └── ThemedImage.tsx │ │ │ ├── browserOnlyMock.ts │ │ │ ├── configuredMonacoMock.ts │ │ │ ├── docusaurusContextMock.ts │ │ │ ├── lzStringMock.ts │ │ │ ├── monaco-editor.ts │ │ │ ├── monacoEditorMock.ts │ │ │ ├── pyreflyWasmMock.ts │ │ │ ├── stylexMock.ts │ │ │ ├── themeMock.ts │ │ │ └── usePythonWorkerMock.ts │ │ ├── __snapshots__ │ │ │ ├── landingPage.test.tsx.snap │ │ │ └── sandbox.test.tsx.snap │ │ ├── __test_utils__ │ │ │ └── PyreflyWasmTestUtils.ts │ │ ├── landingPage.test.tsx │ │ ├── pyrefly_wasm.test.ts │ │ ├── sandbox.test.tsx │ │ └── wasm │ │ │ └── pyrefly_wasm_for_testing.js │ ├── components │ │ ├── Banner.tsx │ │ ├── docs-categories.ts │ │ └── landing-page │ │ │ ├── PerformanceComparisonButton.tsx │ │ │ ├── PerformanceComparisonChart.tsx │ │ │ ├── PerformanceComparisonChartSection.tsx │ │ │ ├── PerformanceComparisonChartTimer.tsx │ │ │ ├── PerformanceComparisonDescription.tsx │ │ │ ├── PerformanceComparisonTypes.ts │ │ │ ├── PerformanceDescriptionTooltip.tsx │ │ │ ├── ProgressBar.tsx │ │ │ ├── PyreflyVideo.tsx │ │ │ ├── Tooltip.tsx │ │ │ ├── TypecheckerTooltip.tsx │ │ │ ├── firefly.tsx │ │ │ ├── landingPageCardStyles.tsx │ │ │ ├── landingPageHeader.tsx │ │ │ ├── landingPageSection.tsx │ │ │ ├── pipInstallPyrefly.tsx │ │ │ ├── quoteCard.tsx │ │ │ ├── quotesGrid.tsx │ │ │ ├── typography.tsx │ │ │ ├── whyPyrefly.tsx │ │ │ └── whyPyreflyGridItem.tsx │ ├── css │ │ └── custom.css │ ├── pages │ │ ├── index.tsx │ │ ├── landingPage.tsx │ │ └── sandbox.tsx │ ├── sandbox │ │ ├── CodeSnippet.tsx │ │ ├── DefaultSandboxProgram.ts │ │ ├── DefaultUtilsProgram.ts │ │ ├── MonacoEditorButton.tsx │ │ ├── PyodideStatus.ts │ │ ├── PythonVersionSelector.tsx │ │ ├── RunPythonButton.tsx │ │ ├── Sandbox.tsx │ │ ├── SandboxResults.tsx │ │ ├── configured-monaco.ts │ │ ├── pyrefly_wasm.js │ │ ├── pythonWorker.ts │ │ └── usePythonWorker.ts │ ├── theme │ │ └── prism-include-languages.ts │ ├── types │ │ ├── clsx.d.ts │ │ ├── css-modules.d.ts │ │ ├── json-modules.d.ts │ │ ├── stylex.d.ts │ │ └── theme-ThemedImage.d.ts │ └── utils │ │ ├── DelayedComponent.tsx │ │ ├── LoggingUtils.tsx │ │ └── componentAnimationDelay.tsx ├── static │ ├── .nojekyll │ ├── CNAME │ ├── badge.json │ ├── css │ │ └── code-block-buttons.css │ ├── fonts │ │ ├── Inter_18pt-Bold.ttf │ │ ├── Inter_18pt-BoldItalic.ttf │ │ ├── Inter_18pt-Italic.ttf │ │ ├── Inter_18pt-Regular.ttf │ │ ├── Inter_18pt-SemiBold.ttf │ │ ├── Inter_18pt-SemiBoldItalic.ttf │ │ ├── MaisonNeue-Bold.ttf │ │ ├── MaisonNeue-Bold.woff │ │ ├── MaisonNeue-Bold.woff2 │ │ ├── MaisonNeue-BoldItalic.ttf │ │ ├── MaisonNeue-BoldItalic.woff │ │ ├── MaisonNeue-BoldItalic.woff2 │ │ ├── MaisonNeue-Book.ttf │ │ ├── MaisonNeue-Book.woff │ │ ├── MaisonNeue-Book.woff2 │ │ ├── MaisonNeue-BookItalic.ttf │ │ ├── MaisonNeue-BookItalic.woff │ │ ├── MaisonNeue-BookItalic.woff2 │ │ ├── MaisonNeue-Demi.ttf │ │ ├── MaisonNeue-Demi.woff │ │ ├── MaisonNeue-Demi.woff2 │ │ ├── MaisonNeue-DemiItalic.ttf │ │ ├── MaisonNeue-DemiItalic.woff │ │ ├── MaisonNeue-DemiItalic.woff2 │ │ ├── MaisonNeue-Light.ttf │ │ ├── MaisonNeue-Light.woff │ │ ├── MaisonNeue-Light.woff2 │ │ ├── MaisonNeue-LightItalic.ttf │ │ ├── MaisonNeue-LightItalic.woff │ │ ├── MaisonNeue-LightItalic.woff2 │ │ ├── MaisonNeue-Medium.ttf │ │ ├── MaisonNeue-Medium.woff │ │ ├── MaisonNeue-Medium.woff2 │ │ ├── MaisonNeue-MediumItalic.ttf │ │ ├── MaisonNeue-MediumItalic.woff │ │ ├── MaisonNeue-MediumItalic.woff2 │ │ ├── MaisonNeue-Mono.ttf │ │ ├── MaisonNeue-Mono.woff │ │ ├── MaisonNeue-Mono.woff2 │ │ ├── MaisonNeue-MonoItalic.ttf │ │ ├── MaisonNeue-MonoItalic.woff │ │ └── MaisonNeue-MonoItalic.woff2 │ ├── img │ │ ├── Discord-Symbol-White.svg │ │ ├── Discord-Symbol-dark-mode.svg │ │ ├── Discord-Symbol-light-mode.svg │ │ ├── Pyrefly-Brandmark-Invert.svg │ │ ├── Pyrefly-Brandmark.svg │ │ ├── Pyrefly-Preview-Symbol.png │ │ ├── Pyrefly-Symbol-Dynamic.svg │ │ ├── Pyrefly-Symbol-Invert.svg │ │ ├── Pyrefly-Symbol.svg │ │ ├── copy-icon.svg │ │ ├── icon-github-dark-mode.svg │ │ ├── icon-github-light-mode.svg │ │ ├── icon-github.svg │ │ ├── icon-stackoverflow.svg │ │ └── meta_open_source_logo.svg │ ├── js │ │ ├── code-block-buttons.js │ │ └── dark-mode-favicon.js │ └── videos │ │ ├── IDE-file-rename.mp4 │ │ ├── autocomplete.mp4 │ │ ├── cmd-click-inlay-hint.mp4 │ │ ├── diagnostics.mp4 │ │ ├── document-highlights.mp4 │ │ ├── document-symbols.mp4 │ │ ├── double-click-inlay-hint.mp4 │ │ ├── find-all-references.mp4 │ │ ├── go-to-declaration.mp4 │ │ ├── go-to-definition.mp4 │ │ ├── go-to-implementation.mp4 │ │ ├── go-to-type-definition.mp4 │ │ ├── hover.mp4 │ │ ├── inlay-hints.mp4 │ │ ├── jupyter-notebook.mp4 │ │ ├── move-file.mp4 │ │ ├── openvsx.mp4 │ │ ├── pyrefly-ide-comparison.mov │ │ ├── pyright-ide-comparison.mov │ │ ├── rename.mp4 │ │ ├── semantic-highlighting.mp4 │ │ ├── signature-help.mp4 │ │ ├── typeshed.mp4 │ │ └── workspace-symbols.mp4 ├── static_docs_build_script ├── tsconfig.json └── yarn.lock └── yarn.lock /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.claude/CLAUDE.md: -------------------------------------------------------------------------------- 1 | @../AGENTS.md 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build_binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/build_binaries.yml -------------------------------------------------------------------------------- /.github/workflows/build_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/build_extension.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/deploy_extension.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/deploy_website.yml -------------------------------------------------------------------------------- /.github/workflows/mypy_primer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/mypy_primer.yml -------------------------------------------------------------------------------- /.github/workflows/needs_triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/needs_triage.yml -------------------------------------------------------------------------------- /.github/workflows/publish_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/publish_to_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/pyrefly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/pyrefly.yml -------------------------------------------------------------------------------- /.github/workflows/rollback_website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/rollback_website.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.github/workflows/test_extension.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/README.md -------------------------------------------------------------------------------- /conformance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/conformance/README.md -------------------------------------------------------------------------------- /conformance/conformance_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/conformance/conformance_output.py -------------------------------------------------------------------------------- /conformance/third_party/_enums_member_values.py: -------------------------------------------------------------------------------- 1 | """ 2 | Dummy implementation _enums_member_values stub. 3 | """ 4 | -------------------------------------------------------------------------------- /conformance/third_party/pyrefly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/conformance/third_party/pyrefly.toml -------------------------------------------------------------------------------- /conformance/third_party/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/conformance/third_party/results.json -------------------------------------------------------------------------------- /crates/pyrefly_build/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_build/Cargo.toml -------------------------------------------------------------------------------- /crates/pyrefly_build/src/handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_build/src/handle.rs -------------------------------------------------------------------------------- /crates/pyrefly_build/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_build/src/lib.rs -------------------------------------------------------------------------------- /crates/pyrefly_build/src/query/buck.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_build/src/query/buck.rs -------------------------------------------------------------------------------- /crates/pyrefly_build/src/query/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_build/src/query/mod.rs -------------------------------------------------------------------------------- /crates/pyrefly_bundled/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_bundled/Cargo.toml -------------------------------------------------------------------------------- /crates/pyrefly_bundled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_bundled/README.md -------------------------------------------------------------------------------- /crates/pyrefly_bundled/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_bundled/build.rs -------------------------------------------------------------------------------- /crates/pyrefly_bundled/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_bundled/src/lib.rs -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/boto3-stubs/dynamodb/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/boto3-stubs/ec2/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/boto3-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/boto3-stubs/resources/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/boto3-stubs/s3/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/botocore-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/botocore-stubs/retries/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/assets/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/assets/templates/info_graph_dot.pyi: -------------------------------------------------------------------------------- 1 | content: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/assets/templates/info_graph_html.pyi: -------------------------------------------------------------------------------- 1 | content: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/assets/templates/search_table_html.pyi: -------------------------------------------------------------------------------- 1 | content: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/build_info/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/cli/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/api/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/cache/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/cmd/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/conanfile/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/downloaders/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/envvars/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/graph/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/recorder/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/store/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/tools/android.pyi: -------------------------------------------------------------------------------- 1 | def to_android_abi(arch): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/paths/package_layouts/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/search/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/conf/default_server_conf.pyi: -------------------------------------------------------------------------------- 1 | default_server_conf: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/crypto/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/crypto/jwt/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/rest/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/rest/bottle_plugins/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/rest/controller/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/rest/controller/common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/rest/controller/v1/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/service/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/service/common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/service/mime.pyi: -------------------------------------------------------------------------------- 1 | def get_mime_type(filepath): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/service/v1/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/service/v2/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/store/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/store/url_manager.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/util/misc.pyi: -------------------------------------------------------------------------------- 1 | def make_tuple(value): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/_api.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/_c_internal_utils.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/_preprocess_data.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/_version.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/_libs/window/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/arrays/arrow/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/computation/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/dtypes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/dtypes/cast.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/groupby/categorical.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/indexes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/interchange/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/ops/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/ops/docstrings.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/reshape/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/sparse/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/strings/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/tools/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/io/clipboard/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/io/formats/css.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/io/parsers.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/_distributor_init.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/_lib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/_lib/uarray.pyi: -------------------------------------------------------------------------------- 1 | from ._uarray import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/interpolate/_rbfinterp_pythran.pyi: -------------------------------------------------------------------------------- 1 | __pythran__: tuple[str, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/odr/_add_newdocs.pyi: -------------------------------------------------------------------------------- 1 | # nothin to see here 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/optimize/_bracket.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/optimize/_chandrupatla.pyi: -------------------------------------------------------------------------------- 1 | # nothing to see here 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/optimize/_linprog_doc.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/optimize/_linprog_highs.pyi: -------------------------------------------------------------------------------- 1 | # nothing to see here 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/optimize/_linprog_rs.pyi: -------------------------------------------------------------------------------- 1 | # nothing to see here 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/optimize/_linprog_simplex.pyi: -------------------------------------------------------------------------------- 1 | # nothing to see here 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/optimize/_linprog_util.pyi: -------------------------------------------------------------------------------- 1 | # nothing to see here 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/optimize/_shgo_lib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/optimize/cython_optimize/__init__.pyi: -------------------------------------------------------------------------------- 1 | # nothing to see here 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/signal/_wavelets.pyi: -------------------------------------------------------------------------------- 1 | # nothing to see here 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/sparse/linalg/_dsolve/_add_newdocs.pyi: -------------------------------------------------------------------------------- 1 | # nothing to see here 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/sparse/sparsetools.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/sparse/spfuncs.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/sparse/sputils.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/stats/_unuran/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/stats/biasedurn.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/scipy-stubs/stats/mvn.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/_shared/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/_shared/_dependency_checks.pyi: -------------------------------------------------------------------------------- 1 | has_mpl = ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/scripts/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/scripts/skivi.pyi: -------------------------------------------------------------------------------- 1 | def main(): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/__check_build/_check_build.pyi: -------------------------------------------------------------------------------- 1 | def check_build() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/cluster/_k_means_common.pyi: -------------------------------------------------------------------------------- 1 | CHUNK_SIZE: int = 256 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/datasets/data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/datasets/descr/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/datasets/images/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/ensemble/_hist_gradient_boosting/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/experimental/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/externals/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/externals/_packaging/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/inspection/_pd_utils.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/inspection/_plot/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/metrics/_base.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/metrics/_plot/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/metrics/_plot/base.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/py.typed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/tests/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/utils/_arpack.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/utils/_mask.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/utils/_tags.pyi: -------------------------------------------------------------------------------- 1 | _DEFAULT_TAGS: dict = ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/printing/gtk.pyi: -------------------------------------------------------------------------------- 1 | def print_gtk(x, start_viewer=...) -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/py.typed: -------------------------------------------------------------------------------- 1 | partial -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/solvers/deutils.pyi: -------------------------------------------------------------------------------- 1 | def ode_order(expr, func) -> int: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/utilities/magic.pyi: -------------------------------------------------------------------------------- 1 | def pollute(names, objects) -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/vispy-stubs/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/vispy-stubs/util/eq.pyi: -------------------------------------------------------------------------------- 1 | from numpy import bool_, ndarray 2 | 3 | def eq(a, b): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/vispy-stubs/visuals/glsl/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/__main__.pyi: -------------------------------------------------------------------------------- 1 | def __getattr__(name: str): ... # incomplete module 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/_common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/bz2.pyi: -------------------------------------------------------------------------------- 1 | from bz2 import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/gzip.pyi: -------------------------------------------------------------------------------- 1 | from gzip import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/lzma.pyi: -------------------------------------------------------------------------------- 1 | from lzma import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/zlib.pyi: -------------------------------------------------------------------------------- 1 | from zlib import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/concurrent/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/curses/has_key.pyi: -------------------------------------------------------------------------------- 1 | def has_key(ch: int | str) -> bool: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/curses/panel.pyi: -------------------------------------------------------------------------------- 1 | from _curses_panel import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/dbm/gnu.pyi: -------------------------------------------------------------------------------- 1 | from _gdbm import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/dbm/ndbm.pyi: -------------------------------------------------------------------------------- 1 | from _dbm import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/bdist_packager.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/aliases.pyi: -------------------------------------------------------------------------------- 1 | aliases: dict[str, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/json/tool.pyi: -------------------------------------------------------------------------------- 1 | def main() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/pydoc_data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/urllib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/wsgiref/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/etree/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/etree/cElementTree.pyi: -------------------------------------------------------------------------------- 1 | from xml.etree.ElementTree import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/xmlrpc/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/integrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/oauth2/rfc8693/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/oidc/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Flask-Cors/flask_cors/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Jetson.GPIO/Jetson/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/PyMeeus/pymeeus/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/PyMySQL/pymysql/constants/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/RPi.GPIO/RPi/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/WTForms/wtforms/csrf/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/antlr4-python3-runtime/antlr4/dfa/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/antlr4-python3-runtime/antlr4/error/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/antlr4-python3-runtime/antlr4/xpath/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/auth0-python/auth0/utils.pyi: -------------------------------------------------------------------------------- 1 | def is_async_available() -> bool: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/emitters/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/exceptions/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/streaming/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiohttp/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/botocore/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/bottle/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/flask/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/flask_sqlalchemy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg2/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/boltons/boltons/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/braintree/braintree/test/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/channels/channels/generic/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/channels/channels/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/channels/channels/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/channels/channels/security/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/chevron/chevron/metadata.pyi: -------------------------------------------------------------------------------- 1 | version: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/click-web/click_web/resources/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/colorful/colorful/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/console-menu/consolemenu/validators/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/console-menu/consolemenu/version.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/convertdate/convertdate/data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/dateparser/dateparser/custom_language_detection/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/dateparser/dateparser_data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-filter/django_filters/compat.pyi: -------------------------------------------------------------------------------- 1 | def is_crispy() -> bool: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-import-export/import_export/__init__.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-import-export/import_export/formats/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-import-export/import_export/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-import-export/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-import-export/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/docker/docker/models/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/docker/docker/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/docutils/docutils/utils/math/unichar2tex.pyi: -------------------------------------------------------------------------------- 1 | uni2tex_table: dict[int, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/docutils/docutils/utils/urischemes.pyi: -------------------------------------------------------------------------------- 1 | schemes: dict[str, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8-simplify/flake8_simplify/rules/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/api/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/formatting/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/formatting/_windows_color.pyi: -------------------------------------------------------------------------------- 1 | terminal_supports_color: bool 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/main/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/options/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/plugins/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/geopandas/geopandas/tools/hilbert_curve.pyi: -------------------------------------------------------------------------------- 1 | MAX_LEVEL: int 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gevent/gevent/_ffi/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gevent/gevent/libev/__init__.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gevent/gevent/libuv/__init__.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-channelz/grpc_channelz/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-health-checking/grpc_health/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-health-checking/grpc_health/v1/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-reflection/grpc_reflection/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-status/grpc_status/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gunicorn/gunicorn/app/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gunicorn/gunicorn/instrument/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/html5lib/html5lib/filters/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/hvac/hvac/constants/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/jwcrypto/jwcrypto/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/extend/microsoft/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/extend/novell/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/extend/standard/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/operation/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/operation/unbind.pyi: -------------------------------------------------------------------------------- 1 | def unbind_operation(): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/formatters/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/sasl/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/schemas/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/strategy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/utils/uri.pyi: -------------------------------------------------------------------------------- 1 | def parse_uri(uri): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/libsass/sassutils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/nanoid/nanoid/resources.pyi: -------------------------------------------------------------------------------- 1 | alphabet: str 2 | size: int 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/netaddr/netaddr/compat.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/netaddr/netaddr/contrib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/oauthlib/oauthlib/openid/connect/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/packaging/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/pivot/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/reader/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/worksheet/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/writer/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/opentracing/opentracing/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/opentracing/opentracing/ext/tags.pyi: -------------------------------------------------------------------------------- 1 | from ..tags import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/opentracing/opentracing/harness/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/opentracing/opentracing/scope_managers/constants.pyi: -------------------------------------------------------------------------------- 1 | ACTIVE_ATTR: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/crypto/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/crypto/scrypt/_gen_files.pyi: -------------------------------------------------------------------------------- 1 | def main() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/crypto/scrypt/_salsa.pyi: -------------------------------------------------------------------------------- 1 | def salsa20(input): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/ext/django/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/handlers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/peewee/playhouse/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pika/pika/adapters/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/flask/example/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/orm/__init__.pyi: -------------------------------------------------------------------------------- 1 | from pony.orm.core import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/orm/dbproviders/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/orm/examples/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/orm/integration/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/thirdparty/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/protobuf/google/protobuf/compiler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/protobuf/google/protobuf/internal/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/protobuf/google/protobuf/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/codec/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/codec/ber/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/codec/cer/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/codec/der/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/codec/native/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/compat/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/type/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyflakes/pyflakes/scripts/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyinstaller/PyInstaller/depend/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyinstaller/PyInstaller/lib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyinstaller/PyInstaller/lib/modulegraph/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyinstaller/PyInstaller/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyserial/serial/tools/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyserial/serial/urlhandler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/commctrl.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.commctrl import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/dde.pyi: -------------------------------------------------------------------------------- 1 | from pythonwin.dde import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/mmapfile.pyi: -------------------------------------------------------------------------------- 1 | from win32.mmapfile import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/mmsystem.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.mmsystem import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/ntsecuritycon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.ntsecuritycon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/odbc.pyi: -------------------------------------------------------------------------------- 1 | from win32.odbc import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/perfmon.pyi: -------------------------------------------------------------------------------- 1 | from win32.perfmon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/pythonwin/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/pywintypes.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.pywintypes import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/regutil.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.regutil import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/servicemanager.pyi: -------------------------------------------------------------------------------- 1 | from win32.servicemanager import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/sspicon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.sspicon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/timer.pyi: -------------------------------------------------------------------------------- 1 | from win32.timer import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win2kras.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win2kras import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32/lib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/adsi/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.adsi import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/adb.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.adb import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/util.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.util import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axscript/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/bits/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.bits import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/gen_py/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/ifilter/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.ifilter import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/internet/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.internet import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/mapi/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/mapi/exchange.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi.exchange import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/propsys/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.propsys import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/propsys/pscon.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.propsys.pscon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/server/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/shell/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.shell import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/util.pyi: -------------------------------------------------------------------------------- 1 | def IIDToInterfaceName(iid): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/authorization/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axcontrol/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axdebug/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axscript/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axscript/asputil.pyi: -------------------------------------------------------------------------------- 1 | def iif(cond, t, f): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axscript/client/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axscript/server/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/bits/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/directsound/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/ifilter/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/internet/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/mapi/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/propsys/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/shell/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/taskscheduler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32ui.pyi: -------------------------------------------------------------------------------- 1 | from pythonwin.win32ui import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32uiole.pyi: -------------------------------------------------------------------------------- 1 | from pythonwin.win32uiole import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winerror.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winerror import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winioctlcon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winioctlcon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winnt.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winnt import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winperf.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winperf import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winxpgui.pyi: -------------------------------------------------------------------------------- 1 | from win32.winxpgui import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winxptheme.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winxptheme import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/qrcode/qrcode/exceptions.pyi: -------------------------------------------------------------------------------- 1 | class DataOverflowError(Exception): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/qrcode/qrcode/image/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/qrcode/qrcode/image/styles/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/reportlab/reportlab/graphics/barcode/fourstate.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/reportlab/reportlab/graphics/samples/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/requests/requests/certs.pyi: -------------------------------------------------------------------------------- 1 | # no public data 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/_core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/_marks/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/_stats/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/colors/crayons.pyi: -------------------------------------------------------------------------------- 1 | crayons: dict[str, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/colors/xkcd_rgb.pyi: -------------------------------------------------------------------------------- 1 | xkcd_rgb: dict[str, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/external/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/cmd.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.cmd import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/errors.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.errors import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/spawn.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.spawn import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/setuptools/command/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/setuptools/launch.pyi: -------------------------------------------------------------------------------- 1 | def run() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/setuptools/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/shapely/shapely/algorithms/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/BaseHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/CGIHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/SimpleHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/_dummy_thread.pyi: -------------------------------------------------------------------------------- 1 | from _thread import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/_thread.pyi: -------------------------------------------------------------------------------- 1 | from _thread import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/cPickle.pyi: -------------------------------------------------------------------------------- 1 | from pickle import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/collections_abc.pyi: -------------------------------------------------------------------------------- 1 | from collections.abc import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/copyreg.pyi: -------------------------------------------------------------------------------- 1 | from copyreg import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/email_mime_base.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.base import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/email_mime_multipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.multipart import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/email_mime_text.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.text import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/html_entities.pyi: -------------------------------------------------------------------------------- 1 | from html.entities import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/html_parser.pyi: -------------------------------------------------------------------------------- 1 | from html.parser import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/http_cookiejar.pyi: -------------------------------------------------------------------------------- 1 | from http.cookiejar import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/queue.pyi: -------------------------------------------------------------------------------- 1 | from queue import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/reprlib.pyi: -------------------------------------------------------------------------------- 1 | from reprlib import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/socketserver.pyi: -------------------------------------------------------------------------------- 1 | from socketserver import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter.pyi: -------------------------------------------------------------------------------- 1 | from tkinter import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_commondialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.commondialog import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_constants.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.constants import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_dialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.dialog import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_filedialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.filedialog import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_tkfiledialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.filedialog import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_ttk.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.ttk import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib_error.pyi: -------------------------------------------------------------------------------- 1 | from urllib.error import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib_parse.pyi: -------------------------------------------------------------------------------- 1 | from urllib.parse import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib_request.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.request import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib_response.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.response import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib_robotparser.pyi: -------------------------------------------------------------------------------- 1 | from urllib.robotparser import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tensorflow/tensorflow/core/protobuf/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tensorflow/tensorflow/python/feature_column/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tensorflow/tensorflow/python/trackable/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tqdm/tqdm/_dist_ver.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tqdm/tqdm/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/unidiff/unidiff/__version__.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/unidiff/unidiff/errors.pyi: -------------------------------------------------------------------------------- 1 | class UnidiffParseError(Exception): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/xdgenvpy/xdgenvpy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/xmldiff/xmldiff/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/yt-dlp/yt_dlp/utils/jslib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_bundled/update.py -------------------------------------------------------------------------------- /crates/pyrefly_config/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_config/Cargo.toml -------------------------------------------------------------------------------- /crates/pyrefly_config/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_config/src/args.rs -------------------------------------------------------------------------------- /crates/pyrefly_config/src/base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_config/src/base.rs -------------------------------------------------------------------------------- /crates/pyrefly_config/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_config/src/config.rs -------------------------------------------------------------------------------- /crates/pyrefly_config/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_config/src/error.rs -------------------------------------------------------------------------------- /crates/pyrefly_config/src/file_kind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_config/src/file_kind.rs -------------------------------------------------------------------------------- /crates/pyrefly_config/src/finder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_config/src/finder.rs -------------------------------------------------------------------------------- /crates/pyrefly_config/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_config/src/lib.rs -------------------------------------------------------------------------------- /crates/pyrefly_config/src/pyproject.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_config/src/pyproject.rs -------------------------------------------------------------------------------- /crates/pyrefly_config/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_config/src/util.rs -------------------------------------------------------------------------------- /crates/pyrefly_derive/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /crates/pyrefly_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_derive/Cargo.toml -------------------------------------------------------------------------------- /crates/pyrefly_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_derive/src/lib.rs -------------------------------------------------------------------------------- /crates/pyrefly_derive/src/type_eq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_derive/src/type_eq.rs -------------------------------------------------------------------------------- /crates/pyrefly_derive/src/visit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_derive/src/visit.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/Cargo.toml -------------------------------------------------------------------------------- /crates/pyrefly_python/src/ast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/ast.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/src/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/display.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/src/docstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/docstring.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/src/dunder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/dunder.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/src/folding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/folding.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/src/ignore.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/ignore.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/src/keywords.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/keywords.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/lib.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/src/module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/module.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/src/qname.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/qname.rs -------------------------------------------------------------------------------- /crates/pyrefly_python/src/sys_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_python/src/sys_info.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/Cargo.toml -------------------------------------------------------------------------------- /crates/pyrefly_types/src/alias.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/alias.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/annotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/annotation.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/callable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/callable.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/class.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/display.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/facet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/facet.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/globals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/globals.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/lib.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/lit_int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/lit_int.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/literal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/literal.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/module.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/stdlib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/stdlib.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/tuple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/tuple.rs -------------------------------------------------------------------------------- /crates/pyrefly_types/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_types/src/types.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/Cargo.toml -------------------------------------------------------------------------------- /crates/pyrefly_util/src/arc_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/arc_id.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/args.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/display.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/events.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/gas.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/gas.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/globs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/globs.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/includes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/includes.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/lib.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/lock.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/memory.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/no_hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/no_hash.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/owner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/owner.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/panic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/panic.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/prelude.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/recurser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/recurser.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/suggest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/suggest.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/trace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/trace.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/uniques.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/uniques.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/visit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/visit.rs -------------------------------------------------------------------------------- /crates/pyrefly_util/src/watcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/pyrefly_util/src/watcher.rs -------------------------------------------------------------------------------- /crates/tsp_types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/tsp_types/Cargo.toml -------------------------------------------------------------------------------- /crates/tsp_types/protocol_generator/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /crates/tsp_types/src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/tsp_types/src/common.rs -------------------------------------------------------------------------------- /crates/tsp_types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/tsp_types/src/lib.rs -------------------------------------------------------------------------------- /crates/tsp_types/src/protocol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/tsp_types/src/protocol.rs -------------------------------------------------------------------------------- /crates/tsp_types/tests/get_repr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/tsp_types/tests/get_repr.rs -------------------------------------------------------------------------------- /crates/tsp_types/tests/get_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/tsp_types/tests/get_type.rs -------------------------------------------------------------------------------- /crates/tsp_types/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/crates/tsp_types/tests/mod.rs -------------------------------------------------------------------------------- /debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/debug.html -------------------------------------------------------------------------------- /empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lsp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/.gitignore -------------------------------------------------------------------------------- /lsp/.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/.vscode-test.mjs -------------------------------------------------------------------------------- /lsp/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/.vscodeignore -------------------------------------------------------------------------------- /lsp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/CONTRIBUTING.md -------------------------------------------------------------------------------- /lsp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/LICENSE -------------------------------------------------------------------------------- /lsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/README.md -------------------------------------------------------------------------------- /lsp/esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/esbuild.js -------------------------------------------------------------------------------- /lsp/images/pyrefly-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/images/pyrefly-symbol.png -------------------------------------------------------------------------------- /lsp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/package-lock.json -------------------------------------------------------------------------------- /lsp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/package.json -------------------------------------------------------------------------------- /lsp/src/docstring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/src/docstring.ts -------------------------------------------------------------------------------- /lsp/src/extension-interop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/src/extension-interop.ts -------------------------------------------------------------------------------- /lsp/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/src/extension.ts -------------------------------------------------------------------------------- /lsp/src/status-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/src/status-bar.ts -------------------------------------------------------------------------------- /lsp/src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/src/test/README.md -------------------------------------------------------------------------------- /lsp/src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/src/test/extension.test.ts -------------------------------------------------------------------------------- /lsp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/tsconfig.json -------------------------------------------------------------------------------- /pyrefly/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /pyrefly/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/Cargo.toml -------------------------------------------------------------------------------- /pyrefly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/README.md -------------------------------------------------------------------------------- /pyrefly/bin/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/bin/main.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/answers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/answers.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/answers_solver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/answers_solver.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/attr.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/call.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/callable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/callable.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/classdef.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/classdef.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/dataclass.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/dataclass.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/django.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/django.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/enums.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/new_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/new_type.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/pydantic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/pydantic.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/targs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/targs.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/tparams.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/tparams.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/tuple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/tuple.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/class/typed_dict.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/class/typed_dict.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/debugging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/debugging.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/expr.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/function.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/function.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/narrow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/narrow.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/operators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/operators.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/overload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/overload.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/solve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/solve.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/special_calls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/special_calls.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/specials.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/specials.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/subscript.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/subscript.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/traits.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/types/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/types/pydantic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/types/pydantic.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/types/yields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/types/yields.rs -------------------------------------------------------------------------------- /pyrefly/lib/alt/unwrap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/alt/unwrap.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/base_class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/base_class.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/binding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/binding.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/bindings.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/class.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/django.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/django.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/expr.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/function.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/function.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/narrow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/narrow.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/pattern.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/pattern.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/pydantic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/pydantic.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/scope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/scope.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/stmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/stmt.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/table.rs -------------------------------------------------------------------------------- /pyrefly/lib/binding/target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/binding/target.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/all.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/buck_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/buck_check.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/check.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/dump_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/dump_config.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/files.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/infer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/infer.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/init.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/lsp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/lsp.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/report.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/report.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/tsp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/tsp.rs -------------------------------------------------------------------------------- /pyrefly/lib/commands/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/commands/util.rs -------------------------------------------------------------------------------- /pyrefly/lib/compat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/compat.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/baseline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/baseline.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/collector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/collector.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/context.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/display.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/error.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/expectation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/expectation.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/legacy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/legacy.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/style.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/summarize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/summarize.rs -------------------------------------------------------------------------------- /pyrefly/lib/error/suppress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/error/suppress.rs -------------------------------------------------------------------------------- /pyrefly/lib/export/definitions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/export/definitions.rs -------------------------------------------------------------------------------- /pyrefly/lib/export/deprecation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/export/deprecation.rs -------------------------------------------------------------------------------- /pyrefly/lib/export/exports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/export/exports.rs -------------------------------------------------------------------------------- /pyrefly/lib/export/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/export/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/export/special.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/export/special.rs -------------------------------------------------------------------------------- /pyrefly/lib/graph/calculation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/graph/calculation.rs -------------------------------------------------------------------------------- /pyrefly/lib/graph/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/graph/index.rs -------------------------------------------------------------------------------- /pyrefly/lib/graph/index_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/graph/index_map.rs -------------------------------------------------------------------------------- /pyrefly/lib/graph/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/graph/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lib.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/module_helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/module_helpers.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/non_wasm/lsp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/non_wasm/lsp.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/non_wasm/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/non_wasm/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/non_wasm/queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/non_wasm/queue.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/non_wasm/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/non_wasm/server.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/non_wasm/stdlib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/non_wasm/stdlib.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/wasm/hover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/wasm/hover.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/wasm/inlay_hints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/wasm/inlay_hints.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/wasm/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/wasm/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/lsp/wasm/notebook.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/lsp/wasm/notebook.rs -------------------------------------------------------------------------------- /pyrefly/lib/module/bundled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/module/bundled.rs -------------------------------------------------------------------------------- /pyrefly/lib/module/finder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/module/finder.rs -------------------------------------------------------------------------------- /pyrefly/lib/module/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/module/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/module/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/module/parse.rs -------------------------------------------------------------------------------- /pyrefly/lib/module/third_party.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/module/third_party.rs -------------------------------------------------------------------------------- /pyrefly/lib/module/typeshed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/module/typeshed.rs -------------------------------------------------------------------------------- /pyrefly/lib/playground.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/playground.rs -------------------------------------------------------------------------------- /pyrefly/lib/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/query.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/debug_info.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/glean/convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/glean/convert.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/glean/facts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/glean/facts.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/glean/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/glean/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/pysa/class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/pysa/class.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/pysa/collect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/pysa/collect.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/pysa/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/pysa/context.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/pysa/function.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/pysa/function.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/pysa/location.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/pysa/location.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/pysa/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/pysa/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/pysa/module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/pysa/module.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/pysa/scope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/pysa/scope.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/pysa/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/pysa/types.rs -------------------------------------------------------------------------------- /pyrefly/lib/report/trace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/report/trace.rs -------------------------------------------------------------------------------- /pyrefly/lib/solver/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/solver/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/solver/solver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/solver/solver.rs -------------------------------------------------------------------------------- /pyrefly/lib/solver/subset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/solver/subset.rs -------------------------------------------------------------------------------- /pyrefly/lib/solver/type_order.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/solver/type_order.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/dirty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/dirty.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/epoch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/epoch.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/errors.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/ide.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/ide.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/load.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/load.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/loader.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/lsp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/lsp.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/lsp_attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/lsp_attributes.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/memory.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/notebook.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/notebook.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/require.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/require.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/state.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/steps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/steps.rs -------------------------------------------------------------------------------- /pyrefly/lib/state/subscriber.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/state/subscriber.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/assign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/assign.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/attributes.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/callable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/callable.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/calls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/calls.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/class_keywords.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/class_keywords.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/class_overrides.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/class_overrides.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/class_subtyping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/class_subtyping.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/class_super.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/class_super.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/constructors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/constructors.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/contextual.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/contextual.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/cycles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/cycles.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/dataclasses.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/dataclasses.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/decorators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/decorators.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/descriptors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/descriptors.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/dict.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/dict.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/django/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/django/config.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/django/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/django/enums.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/django/fields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/django/fields.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/django/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/django/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/django/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/django/model.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/admin/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/admin/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/admin/views/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/admindocs/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/auth/handlers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/auth/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/auth/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/contenttypes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/contenttypes/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/contenttypes/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/flatpages/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/flatpages/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/flatpages/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/base/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/mysql/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/oracle/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/postgis/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/spatialite/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/gdal/prototypes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/gdal/raster/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/serializers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/humanize/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/humanize/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/messages/utils.pyi: -------------------------------------------------------------------------------- 1 | def get_level_tags() -> dict[int, str]: ... 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/postgres/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/redirects/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/redirects/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sessions/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sessions/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sessions/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sessions/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sessions/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sites/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sites/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/staticfiles/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/staticfiles/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/staticfiles/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/syndication/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/cache/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/checks/compatibility/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/checks/security/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/handlers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/mail/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/servers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/base/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/dummy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/mysql/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/oracle/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/postgresql/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/sqlite3/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/middleware/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/template/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/template/loaders/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/views/decorators/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/django/util.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/django/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/django/view.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/enums.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/flow_branching.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/flow_branching.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/flow_looping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/flow_looping.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/generic_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/generic_basic.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/generic_legacy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/generic_legacy.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/generic_sub.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/generic_sub.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/imports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/imports.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/incremental.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/incremental.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/inference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/inference.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/literal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/literal.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/completion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/lsp/completion.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/declaration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/lsp/declaration.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/definition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/lsp/definition.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/diagnostic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/lsp/diagnostic.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/hover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/lsp/hover.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/hover_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/lsp/hover_type.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/inlay_hint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/lsp/inlay_hint.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/config_with_workspace_smaller/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search_path = ["."] 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/cycle_class/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search_path = ["."] 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/duplicate_export_test/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search_path = ["./"] 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/prefer_pyi_when_missing_in_py/pyrefly.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/tests_requiring_config/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search_path = ["."] 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/lsp/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/rename.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/lsp/rename.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/mro.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/mro.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/named_tuple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/named_tuple.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/narrow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/narrow.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/natural.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/natural.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/new_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/new_type.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/operators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/operators.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/overload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/overload.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/paramspec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/paramspec.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pattern_match.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pattern_match.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/perf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/perf.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/protocol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/protocol.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pydantic/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pydantic/config.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pydantic/extra.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pydantic/extra.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pydantic/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pydantic/field.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pydantic/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pydantic/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pydantic/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pydantic/util.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pysa/call_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pysa/call_graph.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pysa/classes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pysa/classes.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pysa/functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pysa/functions.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pysa/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pysa/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pysa/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pysa/types.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/pysa/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/pysa/utils.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/redundant_cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/redundant_cast.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/returns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/returns.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/scope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/scope.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/simple.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/state.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/suppression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/suppression.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/sys_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/sys_info.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/tsp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/tsp/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/tuple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/tuple.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/type_alias.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/type_alias.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/type_var_tuple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/type_var_tuple.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/typed_dict.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/typed_dict.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/typing_self.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/typing_self.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/util.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/var_resolution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/var_resolution.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/with.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/with.rs -------------------------------------------------------------------------------- /pyrefly/lib/test/yields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/test/yields.rs -------------------------------------------------------------------------------- /pyrefly/lib/tsp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/tsp/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/tsp/requests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/tsp/requests/mod.rs -------------------------------------------------------------------------------- /pyrefly/lib/tsp/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/lib/tsp/server.rs -------------------------------------------------------------------------------- /pyrefly/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/pyproject.toml -------------------------------------------------------------------------------- /pyrefly/python/pyrefly/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/python/pyrefly/__init__.py -------------------------------------------------------------------------------- /pyrefly/python/pyrefly/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly/python/pyrefly/__main__.py -------------------------------------------------------------------------------- /pyrefly/python/pyrefly/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly-2025-09-14 2 | -------------------------------------------------------------------------------- /pyrefly_wasm/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly_wasm/.cargo/config.toml -------------------------------------------------------------------------------- /pyrefly_wasm/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /pyrefly_wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly_wasm/Cargo.toml -------------------------------------------------------------------------------- /pyrefly_wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly_wasm/README.md -------------------------------------------------------------------------------- /pyrefly_wasm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly_wasm/build.sh -------------------------------------------------------------------------------- /pyrefly_wasm/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/pyrefly_wasm/lib.rs -------------------------------------------------------------------------------- /pyrefly_wasm/rust-toolchain: -------------------------------------------------------------------------------- 1 | ../pyrefly/rust-toolchain -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly-2025-09-14" 3 | -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test.py -------------------------------------------------------------------------------- /test/args.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/args.md -------------------------------------------------------------------------------- /test/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/basic.md -------------------------------------------------------------------------------- /test/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/config.md -------------------------------------------------------------------------------- /test/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/errors.md -------------------------------------------------------------------------------- /test/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/find.md -------------------------------------------------------------------------------- /test/glean/calls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/glean/calls.json -------------------------------------------------------------------------------- /test/glean/calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/glean/calls.py -------------------------------------------------------------------------------- /test/glean/class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/glean/class.json -------------------------------------------------------------------------------- /test/glean/class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/glean/class.py -------------------------------------------------------------------------------- /test/glean/func.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/glean/func.json -------------------------------------------------------------------------------- /test/glean/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/glean/func.py -------------------------------------------------------------------------------- /test/glean/imports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/glean/imports.json -------------------------------------------------------------------------------- /test/glean/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/glean/imports.py -------------------------------------------------------------------------------- /test/glean/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/glean/variables.json -------------------------------------------------------------------------------- /test/glean/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/glean/variables.py -------------------------------------------------------------------------------- /test/ignores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/ignores.md -------------------------------------------------------------------------------- /test/interpreter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/interpreter.md -------------------------------------------------------------------------------- /test/notebooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/notebooks.md -------------------------------------------------------------------------------- /test/snippet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/test/snippet.md -------------------------------------------------------------------------------- /version.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/version.bzl -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/.prettierrc -------------------------------------------------------------------------------- /website/LICENSE-DOCUMENTATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/LICENSE-DOCUMENTATION -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/blog/authors.yml -------------------------------------------------------------------------------- /website/docs/IDE-features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/IDE-features.mdx -------------------------------------------------------------------------------- /website/docs/IDE.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/IDE.mdx -------------------------------------------------------------------------------- /website/docs/autotype.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/autotype.mdx -------------------------------------------------------------------------------- /website/docs/configuration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/configuration.mdx -------------------------------------------------------------------------------- /website/docs/django.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/django.mdx -------------------------------------------------------------------------------- /website/docs/error-kinds.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/error-kinds.mdx -------------------------------------------------------------------------------- /website/docs/error-suppressions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/error-suppressions.mdx -------------------------------------------------------------------------------- /website/docs/import-resolution.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/import-resolution.mdx -------------------------------------------------------------------------------- /website/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/index.mdx -------------------------------------------------------------------------------- /website/docs/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/installation.mdx -------------------------------------------------------------------------------- /website/docs/pydantic.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/pydantic.mdx -------------------------------------------------------------------------------- /website/docs/pyrefly-faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docs/pyrefly-faq.mdx -------------------------------------------------------------------------------- /website/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/docusaurus.config.ts -------------------------------------------------------------------------------- /website/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/jest.config.ts -------------------------------------------------------------------------------- /website/libs/docusaurus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/libs/docusaurus.d.ts -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/package.json -------------------------------------------------------------------------------- /website/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/scripts/build.sh -------------------------------------------------------------------------------- /website/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/scripts/install.sh -------------------------------------------------------------------------------- /website/scripts/setup_cargo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/scripts/setup_cargo.sh -------------------------------------------------------------------------------- /website/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/scripts/start.sh -------------------------------------------------------------------------------- /website/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/sidebars.ts -------------------------------------------------------------------------------- /website/src/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/components/Banner.tsx -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/pages/index.tsx -------------------------------------------------------------------------------- /website/src/pages/landingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/pages/landingPage.tsx -------------------------------------------------------------------------------- /website/src/pages/sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/pages/sandbox.tsx -------------------------------------------------------------------------------- /website/src/sandbox/CodeSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/sandbox/CodeSnippet.tsx -------------------------------------------------------------------------------- /website/src/sandbox/Sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/sandbox/Sandbox.tsx -------------------------------------------------------------------------------- /website/src/sandbox/pyrefly_wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/sandbox/pyrefly_wasm.js -------------------------------------------------------------------------------- /website/src/sandbox/pythonWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/sandbox/pythonWorker.ts -------------------------------------------------------------------------------- /website/src/types/clsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/types/clsx.d.ts -------------------------------------------------------------------------------- /website/src/types/css-modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/types/css-modules.d.ts -------------------------------------------------------------------------------- /website/src/types/json-modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/types/json-modules.d.ts -------------------------------------------------------------------------------- /website/src/types/stylex.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/types/stylex.d.ts -------------------------------------------------------------------------------- /website/src/utils/LoggingUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/src/utils/LoggingUtils.tsx -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | pyrefly.org 2 | -------------------------------------------------------------------------------- /website/static/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/badge.json -------------------------------------------------------------------------------- /website/static/img/copy-icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/icon-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/img/icon-github.svg -------------------------------------------------------------------------------- /website/static/videos/hover.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/hover.mp4 -------------------------------------------------------------------------------- /website/static/videos/move-file.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/move-file.mp4 -------------------------------------------------------------------------------- /website/static/videos/openvsx.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/openvsx.mp4 -------------------------------------------------------------------------------- /website/static/videos/rename.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/rename.mp4 -------------------------------------------------------------------------------- /website/static/videos/typeshed.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/typeshed.mp4 -------------------------------------------------------------------------------- /website/static_docs_build_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static_docs_build_script -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/yarn.lock --------------------------------------------------------------------------------