The response has been limited to 50k tokens of the smallest files in the repo. You can remove this limitation by removing the max tokens filter.
├── .editorconfig
├── .flake8
├── .gitattributes
├── .github
    ├── renovate.json5
    └── workflows
    │   ├── daily.yml
    │   ├── meta_tests.yml
    │   ├── mypy_primer.yml
    │   ├── mypy_primer_comment.yml
    │   ├── stubsabot.yml
    │   ├── stubtest_stdlib.yml
    │   ├── stubtest_third_party.yml
    │   └── tests.yml
├── .gitignore
├── .pre-commit-config.yaml
├── .vscode
    ├── extensions.json
    └── settings.default.json
├── CONTRIBUTING.md
├── LICENSE
├── MAINTAINERS.md
├── README.md
├── lib
    ├── pyproject.toml
    └── ts_utils
    │   ├── __init__.py
    │   ├── metadata.py
    │   ├── mypy.py
    │   ├── paths.py
    │   ├── py.typed
    │   ├── requirements.py
    │   └── utils.py
├── pyproject.toml
├── pyrightconfig.json
├── pyrightconfig.scripts_and_tests.json
├── pyrightconfig.stricter.json
├── pyrightconfig.testcases.json
├── requirements-tests.txt
├── scripts
    ├── create_baseline_stubs.py
    ├── install_all_third_party_dependencies.py
    ├── stubsabot.py
    └── sync_protobuf
    │   ├── _utils.py
    │   ├── google_protobuf.py
    │   ├── s2clientprotocol.py
    │   └── tensorflow.py
├── stdlib
    ├── @tests
    │   ├── stubtest_allowlists
    │   │   ├── common.txt
    │   │   ├── darwin-py310.txt
    │   │   ├── darwin-py311.txt
    │   │   ├── darwin-py312.txt
    │   │   ├── darwin-py313.txt
    │   │   ├── darwin-py314.txt
    │   │   ├── darwin-py39.txt
    │   │   ├── darwin.txt
    │   │   ├── linux-py310.txt
    │   │   ├── linux-py311.txt
    │   │   ├── linux-py312.txt
    │   │   ├── linux-py313.txt
    │   │   ├── linux-py39.txt
    │   │   ├── linux.txt
    │   │   ├── py310.txt
    │   │   ├── py311.txt
    │   │   ├── py312.txt
    │   │   ├── py313.txt
    │   │   ├── py314.txt
    │   │   ├── py39.txt
    │   │   ├── win32-py310.txt
    │   │   ├── win32-py311.txt
    │   │   ├── win32-py312.txt
    │   │   ├── win32-py313.txt
    │   │   ├── win32-py314.txt
    │   │   ├── win32-py39.txt
    │   │   └── win32.txt
    │   └── test_cases
    │   │   ├── asyncio
    │   │       ├── check_coroutines.py
    │   │       ├── check_gather.py
    │   │       ├── check_task.py
    │   │       └── check_task_factory.py
    │   │   ├── builtins
    │   │       ├── check_dict.py
    │   │       ├── check_exception_group-py311.py
    │   │       ├── check_iteration.py
    │   │       ├── check_list.py
    │   │       ├── check_memoryview.py
    │   │       ├── check_object.py
    │   │       ├── check_pow.py
    │   │       ├── check_reversed.py
    │   │       ├── check_round.py
    │   │       ├── check_slice.py
    │   │       ├── check_sum.py
    │   │       ├── check_tuple.py
    │   │       └── check_zip.py
    │   │   ├── check_codecs.py
    │   │   ├── check_concurrent_futures.py
    │   │   ├── check_configparser.py
    │   │   ├── check_contextlib.py
    │   │   ├── check_copy.py
    │   │   ├── check_dataclasses.py
    │   │   ├── check_enum.py
    │   │   ├── check_functools.py
    │   │   ├── check_importlib.py
    │   │   ├── check_importlib_metadata.py
    │   │   ├── check_importlib_resources.py
    │   │   ├── check_io.py
    │   │   ├── check_logging.py
    │   │   ├── check_math.py
    │   │   ├── check_os_path.py
    │   │   ├── check_pathlib.py
    │   │   ├── check_platform.py
    │   │   ├── check_re.py
    │   │   ├── check_sqlite3.py
    │   │   ├── check_tarfile.py
    │   │   ├── check_tempfile.py
    │   │   ├── check_threading.py
    │   │   ├── check_tkinter.py
    │   │   ├── check_types.py
    │   │   ├── check_unittest.py
    │   │   ├── check_xml.py
    │   │   ├── check_zipfile.py
    │   │   ├── collections
    │   │       └── check_defaultdict.py
    │   │   ├── ctypes
    │   │       ├── check_CDLL.py
    │   │       └── check_pointer.py
    │   │   ├── email
    │   │       ├── check_message.py
    │   │       ├── check_mime.py
    │   │       └── check_parser.py
    │   │   ├── itertools
    │   │       └── check_itertools_recipes.py
    │   │   ├── multiprocessing
    │   │       ├── check_ctypes.py
    │   │       └── check_pipe_connections.py
    │   │   ├── typing
    │   │       ├── check_MutableMapping.py
    │   │       ├── check_all.py
    │   │       ├── check_regression_issue_9296.py
    │   │       └── check_typing_io.py
    │   │   └── urllib
    │   │       └── check_parse.py
    ├── VERSIONS
    ├── __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
    │   ├── README.md
    │   ├── __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
    ├── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── deprecated
    │   │   ├── __init__.pyi
    │   │   ├── classic.pyi
    │   │   └── sphinx.pyi
    ├── ExifRead
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── exifread
    │   │   ├── __init__.pyi
    │   │   ├── _types.pyi
    │   │   ├── classes.pyi
    │   │   ├── exceptions.pyi
    │   │   ├── exif_log.pyi
    │   │   ├── heic.pyi
    │   │   ├── jpeg.pyi
    │   │   ├── tags
    │   │       ├── __init__.pyi
    │   │       ├── exif.pyi
    │   │       └── makernote
    │   │       │   ├── __init__.pyi
    │   │       │   ├── apple.pyi
    │   │       │   ├── canon.pyi
    │   │       │   ├── casio.pyi
    │   │       │   ├── fujifilm.pyi
    │   │       │   ├── nikon.pyi
    │   │       │   └── olympus.pyi
    │   │   └── utils.pyi
    ├── Flask-Cors
    │   ├── METADATA.toml
    │   └── flask_cors
    │   │   ├── __init__.pyi
    │   │   ├── core.pyi
    │   │   ├── decorator.pyi
    │   │   ├── extension.pyi
    │   │   └── version.pyi
    ├── Flask-Migrate
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── flask_migrate
    │   │   └── __init__.pyi
    ├── Flask-SocketIO
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── flask_socketio
    │   │   ├── __init__.pyi
    │   │   ├── namespace.pyi
    │   │   └── test_client.pyi
    ├── JACK-Client
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── jack
    │   │   └── __init__.pyi
    ├── Jetson.GPIO
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── Jetson
    │   │   ├── GPIO
    │   │   │   ├── __init__.pyi
    │   │   │   ├── gpio.pyi
    │   │   │   ├── gpio_cdev.pyi
    │   │   │   ├── gpio_event.pyi
    │   │   │   └── gpio_pin_data.pyi
    │   │   └── __init__.pyi
    │   └── METADATA.toml
    ├── Markdown
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── pyautogui
    │   │   └── __init__.pyi
    ├── PyMySQL
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── stubtest_allowlist_linux.txt
    │   ├── METADATA.toml
    │   └── pyscreeze
    │   │   └── __init__.pyi
    ├── PyYAML
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── RPi
    │   │   ├── GPIO
    │   │       └── __init__.pyi
    │   │   └── __init__.pyi
    ├── Send2Trash
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── send2trash
    │   │   ├── __init__.pyi
    │   │   ├── __main__.pyi
    │   │   ├── exceptions.pyi
    │   │   └── util.pyi
    ├── TgCrypto
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── tgcrypto
    │   │   └── __init__.pyi
    ├── WTForms
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   ├── check_choices.py
    │   │   │   ├── check_filters.py
    │   │   │   ├── check_form.py
    │   │   │   ├── check_validators.py
    │   │   │   └── check_widgets.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   ├── check_cachecontrol.py
    │   │   │   └── check_wsgify.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_darwin.txt
    │   │   └── stubtest_allowlist_linux.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   │       ├── 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
    ├── beautifulsoup4
    │   ├── METADATA.toml
    │   └── bs4
    │   │   ├── __init__.pyi
    │   │   ├── builder
    │   │       ├── __init__.pyi
    │   │       ├── _html5lib.pyi
    │   │       ├── _htmlparser.pyi
    │   │       └── _lxml.pyi
    │   │   ├── dammit.pyi
    │   │   ├── diagnose.pyi
    │   │   ├── element.pyi
    │   │   └── formatter.pyi
    ├── binaryornot
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── binaryornot
    │   │   ├── __init__.pyi
    │   │   ├── check.pyi
    │   │   └── helpers.pyi
    ├── bleach
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── bleach
    │   │   ├── __init__.pyi
    │   │   ├── callbacks.pyi
    │   │   ├── css_sanitizer.pyi
    │   │   ├── html5lib_shim.pyi
    │   │   ├── linkifier.pyi
    │   │   ├── parse_shim.pyi
    │   │   └── sanitizer.pyi
    ├── boltons
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   │   ├── 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
    │   │   ├── resource.pyi
    │   │   ├── resource_collection.pyi
    │   │   ├── revoked_payment_method_metadata.pyi
    │   │   ├── risk_data.pyi
    │   │   ├── samsung_pay_card.pyi
    │   │   ├── search.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
    │   │   ├── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── cachetools
    │   │   ├── __init__.pyi
    │   │   ├── func.pyi
    │   │   └── keys.pyi
    ├── capturer
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── capturer.pyi
    ├── cffi
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_darwin.txt
    │   │   └── stubtest_allowlist_linux.txt
    │   ├── METADATA.toml
    │   ├── _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
    ├── chevron
    │   ├── METADATA.toml
    │   └── chevron
    │   │   ├── __init__.pyi
    │   │   ├── main.pyi
    │   │   ├── metadata.pyi
    │   │   ├── renderer.pyi
    │   │   └── tokenizer.pyi
    ├── click-default-group
    │   ├── METADATA.toml
    │   └── click_default_group.pyi
    ├── click-log
    │   ├── METADATA.toml
    │   └── click_log
    │   │   ├── __init__.pyi
    │   │   ├── core.pyi
    │   │   └── options.pyi
    ├── click-spinner
    │   ├── METADATA.toml
    │   └── click_spinner
    │   │   ├── __init__.pyi
    │   │   └── _version.pyi
    ├── click-web
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── stubtest_allowlist_linux.txt
    │   ├── METADATA.toml
    │   └── colorama
    │   │   ├── __init__.pyi
    │   │   ├── ansi.pyi
    │   │   ├── ansitowin32.pyi
    │   │   ├── initialise.pyi
    │   │   ├── win32.pyi
    │   │   └── winterm.pyi
    ├── console-menu
    │   ├── METADATA.toml
    │   └── 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
    ├── croniter
    │   ├── METADATA.toml
    │   └── croniter
    │   │   ├── __init__.pyi
    │   │   └── croniter.pyi
    ├── dateparser
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   ├── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── decorator.pyi
    ├── defusedxml
    │   ├── METADATA.toml
    │   └── defusedxml
    │   │   ├── ElementTree.pyi
    │   │   ├── __init__.pyi
    │   │   ├── cElementTree.pyi
    │   │   ├── common.pyi
    │   │   ├── expatbuilder.pyi
    │   │   ├── expatreader.pyi
    │   │   ├── lxml.pyi
    │   │   ├── minidom.pyi
    │   │   ├── pulldom.pyi
    │   │   ├── sax.pyi
    │   │   └── xmlrpc.pyi
    ├── dirhash
    │   ├── METADATA.toml
    │   └── dirhash
    │   │   ├── __init__.pyi
    │   │   └── cli.pyi
    ├── django-import-export
    │   ├── METADATA.toml
    │   ├── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── dockerfile_parse
    │   │   ├── __init__.pyi
    │   │   ├── constants.pyi
    │   │   ├── parser.pyi
    │   │   └── util.pyi
    ├── docutils
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── docutils
    │   │   ├── __init__.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
    │   │       ├── 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
    │   │   ├── utils
    │   │       ├── __init__.pyi
    │   │       ├── code_analyzer.pyi
    │   │       ├── error_reporting.pyi
    │   │       ├── math
    │   │       │   ├── __init__.pyi
    │   │       │   ├── latex2mathml.pyi
    │   │       │   ├── math2html.pyi
    │   │       │   ├── mathalphabet2unichar.pyi
    │   │       │   ├── mathml_elements.pyi
    │   │       │   ├── tex2mathml_extern.pyi
    │   │       │   ├── tex2unichar.pyi
    │   │       │   └── unichar2tex.pyi
    │   │       ├── punctuation_chars.pyi
    │   │       ├── roman.pyi
    │   │       ├── smartquotes.pyi
    │   │       └── urischemes.pyi
    │   │   └── writers
    │   │       ├── __init__.pyi
    │   │       ├── docutils_xml.pyi
    │   │       ├── html4css1.pyi
    │   │       ├── html5_polyglot.pyi
    │   │       ├── latex2e.pyi
    │   │       ├── manpage.pyi
    │   │       ├── null.pyi
    │   │       ├── odf_odt.pyi
    │   │       ├── pep_html.pyi
    │   │       ├── pseudoxml.pyi
    │   │       ├── s5_html.pyi
    │   │       └── xetex.pyi
    ├── editdistance
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── editdistance
    │   │   └── __init__.pyi
    ├── entrypoints
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── entrypoints.pyi
    ├── fanstatic
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── fanstatic
    │   │   ├── __init__.pyi
    │   │   ├── checksum.pyi
    │   │   ├── compiler.pyi
    │   │   ├── config.pyi
    │   │   ├── core.pyi
    │   │   ├── inclusion.pyi
    │   │   ├── injector.pyi
    │   │   ├── publisher.pyi
    │   │   ├── registry.pyi
    │   │   └── wsgi.pyi
    ├── first
    │   ├── METADATA.toml
    │   └── first.pyi
    ├── flake8-bugbear
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── bugbear.pyi
    ├── flake8-builtins
    │   ├── METADATA.toml
    │   └── flake8_builtins.pyi
    ├── flake8-docstrings
    │   ├── METADATA.toml
    │   └── flake8_docstrings.pyi
    ├── flake8-rst-docstrings
    │   ├── METADATA.toml
    │   └── flake8_rst_docstrings.pyi
    ├── flake8-simplify
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── flake8_typing_imports.pyi
    ├── flake8
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   │   ├── printing.pyi
    │   │   ├── prompt.pyi
    │   │   ├── types.pyi
    │   │   ├── unwinder.pyi
    │   │   └── xmethod.pyi
    ├── geopandas
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_darwin.txt
    │   │   ├── stubtest_allowlist_linux.txt
    │   │   └── stubtest_allowlist_win32.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   └── check_greenlet.py
    │   ├── METADATA.toml
    │   └── greenlet
    │   │   ├── __init__.pyi
    │   │   └── _greenlet.pyi
    ├── grpcio-channelz
    │   ├── METADATA.toml
    │   └── grpc_channelz
    │   │   ├── __init__.pyi
    │   │   └── v1
    │   │       ├── __init__.pyi
    │   │       ├── _async.pyi
    │   │       ├── _servicer.pyi
    │   │       ├── channelz.pyi
    │   │       ├── channelz_pb2.pyi
    │   │       └── channelz_pb2_grpc.pyi
    ├── grpcio-health-checking
    │   ├── METADATA.toml
    │   └── grpc_health
    │   │   ├── __init__.pyi
    │   │   └── v1
    │   │       ├── __init__.pyi
    │   │       ├── health.pyi
    │   │       ├── health_pb2.pyi
    │   │       └── health_pb2_grpc.pyi
    ├── grpcio-reflection
    │   ├── @tests
    │   │   └── test_cases
    │   │   │   ├── check_reflection.py
    │   │   │   └── check_reflection_aio.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── grpc_status
    │   │   ├── __init__.pyi
    │   │   ├── _async.pyi
    │   │   └── rpc_status.pyi
    ├── grpcio
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   ├── check_aio.py
    │   │   │   ├── check_aio_multi_callable.py
    │   │   │   ├── check_grpc.py
    │   │   │   ├── check_handler_inheritance.py
    │   │   │   ├── check_multi_callable.py
    │   │   │   ├── check_register.py
    │   │   │   └── check_server_interceptor.py
    │   ├── METADATA.toml
    │   └── grpc
    │   │   ├── __init__.pyi
    │   │   └── aio
    │   │       └── __init__.pyi
    ├── hdbcli
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── hdbcli
    │   │   ├── __init__.pyi
    │   │   ├── dbapi.pyi
    │   │   └── resultrow.pyi
    ├── hnswlib
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── hnswlib.pyi
    ├── html5lib
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── httplib2
    │   │   ├── __init__.pyi
    │   │   ├── auth.pyi
    │   │   ├── certs.pyi
    │   │   ├── error.pyi
    │   │   ├── iri2uri.pyi
    │   │   └── socks.pyi
    ├── hvac
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── ibm_db.pyi
    ├── icalendar
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   └── check_cal.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── inifile.pyi
    ├── jmespath
    │   ├── METADATA.toml
    │   └── jmespath
    │   │   ├── __init__.pyi
    │   │   ├── ast.pyi
    │   │   ├── compat.pyi
    │   │   ├── exceptions.pyi
    │   │   ├── functions.pyi
    │   │   ├── lexer.pyi
    │   │   ├── parser.pyi
    │   │   └── visitor.pyi
    ├── jsonnet
    │   ├── METADATA.toml
    │   └── _jsonnet.pyi
    ├── jsonschema
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── jwcrypto
    │   │   ├── __init__.pyi
    │   │   ├── common.pyi
    │   │   ├── jwa.pyi
    │   │   ├── jwe.pyi
    │   │   ├── jwk.pyi
    │   │   ├── jws.pyi
    │   │   └── jwt.pyi
    ├── keyboard
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_darwin.txt
    │   │   └── stubtest_allowlist_linux.txt
    │   ├── METADATA.toml
    │   └── keyboard
    │   │   ├── __init__.pyi
    │   │   ├── _canonical_names.pyi
    │   │   ├── _generic.pyi
    │   │   ├── _keyboard_event.pyi
    │   │   ├── _mouse_event.pyi
    │   │   └── mouse.pyi
    ├── ldap3
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   ├── sass.pyi
    │   └── sassutils
    │   │   ├── __init__.pyi
    │   │   ├── builder.pyi
    │   │   ├── distutils.pyi
    │   │   └── wsgi.pyi
    ├── lupa
    │   ├── METADATA.toml
    │   └── lupa
    │   │   ├── __init__.pyi
    │   │   ├── lua51.pyi
    │   │   ├── lua52.pyi
    │   │   ├── lua53.pyi
    │   │   ├── lua54.pyi
    │   │   ├── luajit20.pyi
    │   │   ├── luajit21.pyi
    │   │   └── version.pyi
    ├── lzstring
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── lzstring
    │   │   └── __init__.pyi
    ├── m3u8
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── m3u8
    │   │   ├── __init__.pyi
    │   │   ├── httpclient.pyi
    │   │   ├── mixins.pyi
    │   │   ├── model.pyi
    │   │   ├── parser.pyi
    │   │   ├── protocol.pyi
    │   │   ├── version_matching.pyi
    │   │   └── version_matching_rules.pyi
    ├── mock
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── mock
    │   │   ├── __init__.pyi
    │   │   ├── backports.pyi
    │   │   └── mock.pyi
    ├── mypy-extensions
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── mypy_extensions.pyi
    ├── mysqlclient
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── nanoid
    │   │   ├── __init__.pyi
    │   │   ├── algorithm.pyi
    │   │   ├── generate.pyi
    │   │   ├── method.pyi
    │   │   ├── non_secure_generate.pyi
    │   │   └── resources.pyi
    ├── nanoleafapi
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── nanoleafapi
    │   │   ├── __init__.pyi
    │   │   ├── digital_twin.pyi
    │   │   ├── discovery.pyi
    │   │   └── nanoleaf.pyi
    ├── netaddr
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── netifaces.pyi
    ├── networkx
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   └── check_dispatch_decorator.py
    │   ├── METADATA.toml
    │   └── networkx
    │   │   ├── __init__.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
    │   │       ├── 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
    │   │       │   ├── 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
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── objgraph.pyi
    ├── olefile
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── olefile
    │   │   ├── __init__.pyi
    │   │   └── olefile.pyi
    ├── openpyxl
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   ├── check_base_descriptors.py
    │   │   │   └── check_nested_descriptors.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_darwin.txt
    │   │   ├── stubtest_allowlist_linux.txt
    │   │   └── stubtest_allowlist_win32.txt
    │   ├── METADATA.toml
    │   └── paramiko
    │   │   ├── __init__.pyi
    │   │   ├── _version.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
    │   │   ├── dsskey.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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── parsimonious
    │   │   ├── __init__.pyi
    │   │   ├── exceptions.pyi
    │   │   ├── expressions.pyi
    │   │   ├── grammar.pyi
    │   │   ├── nodes.pyi
    │   │   └── utils.pyi
    ├── passlib
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_win32.txt
    │   │   └── test_cases
    │   │   │   └── check_bcrypt_using_rounds.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── passpy
    │   │   ├── __init__.pyi
    │   │   ├── exceptions.pyi
    │   │   ├── store.pyi
    │   │   └── util.pyi
    ├── peewee
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   ├── peewee.pyi
    │   └── playhouse
    │   │   ├── __init__.pyi
    │   │   └── flask_utils.pyi
    ├── pep8-naming
    │   ├── METADATA.toml
    │   └── pep8ext_naming.pyi
    ├── pexpect
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── polib.pyi
    ├── portpicker
    │   ├── METADATA.toml
    │   └── portpicker.pyi
    ├── protobuf
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   └── check_struct.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_darwin.txt
    │   │   ├── stubtest_allowlist_linux.txt
    │   │   └── stubtest_allowlist_win32.txt
    │   ├── METADATA.toml
    │   └── psutil
    │   │   ├── __init__.pyi
    │   │   ├── _common.pyi
    │   │   ├── _psaix.pyi
    │   │   ├── _psbsd.pyi
    │   │   ├── _pslinux.pyi
    │   │   ├── _psosx.pyi
    │   │   ├── _psposix.pyi
    │   │   ├── _pssunos.pyi
    │   │   ├── _psutil_linux.pyi
    │   │   ├── _psutil_osx.pyi
    │   │   ├── _psutil_posix.pyi
    │   │   ├── _psutil_windows.pyi
    │   │   └── _pswindows.pyi
    ├── psycopg2
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   ├── check_connect.py
    │   │   │   └── check_extensions.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── pyrfc3339
    │   │   ├── __init__.pyi
    │   │   ├── generator.pyi
    │   │   ├── parser.pyi
    │   │   └── utils.pyi
    ├── pyasn1
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── pyaudio.pyi
    ├── pycocotools
    │   ├── METADATA.toml
    │   └── pycocotools
    │   │   ├── __init__.pyi
    │   │   ├── coco.pyi
    │   │   ├── cocoeval.pyi
    │   │   └── mask.pyi
    ├── pycurl
    │   ├── METADATA.toml
    │   └── pycurl.pyi
    ├── pyfarmhash
    │   ├── METADATA.toml
    │   └── farmhash.pyi
    ├── pyflakes
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── pyflakes
    │   │   ├── __init__.pyi
    │   │   ├── __main__.pyi
    │   │   ├── api.pyi
    │   │   ├── checker.pyi
    │   │   ├── messages.pyi
    │   │   ├── reporter.pyi
    │   │   └── scripts
    │   │       ├── __init__.pyi
    │   │       └── pyflakes.pyi
    ├── pyinstaller
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_darwin.txt
    │   │   ├── stubtest_allowlist_linux.txt
    │   │   ├── stubtest_allowlist_win32.txt
    │   │   └── test_cases
    │   │   │   └── check_versioninfo.py
    │   ├── METADATA.toml
    │   ├── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── jks
    │   │   ├── __init__.pyi
    │   │   ├── bks.pyi
    │   │   ├── jks.pyi
    │   │   ├── rfc2898.pyi
    │   │   ├── rfc7292.pyi
    │   │   ├── sun_crypto.pyi
    │   │   └── util.pyi
    ├── pynput
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_linux.txt
    │   │   └── stubtest_allowlist_win32.txt
    │   ├── METADATA.toml
    │   └── pynput
    │   │   ├── __init__.pyi
    │   │   ├── _info.pyi
    │   │   ├── _util.pyi
    │   │   ├── keyboard
    │   │       ├── __init__.pyi
    │   │       ├── _base.pyi
    │   │       └── _dummy.pyi
    │   │   └── mouse
    │   │       ├── __init__.pyi
    │   │       ├── _base.pyi
    │   │       └── _dummy.pyi
    ├── pyperclip
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── pyperclip
    │   │   └── __init__.pyi
    ├── pyserial
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_darwin.txt
    │   │   ├── stubtest_allowlist_linux.txt
    │   │   └── stubtest_allowlist_win32.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── pysftp
    │   │   ├── __init__.pyi
    │   │   ├── exceptions.pyi
    │   │   └── helpers.pyi
    ├── pytest-lazy-fixture
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── pytest_lazyfixture.pyi
    ├── python-crontab
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   ├── cronlog.pyi
    │   ├── crontab.pyi
    │   └── crontabs.pyi
    ├── python-dateutil
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_darwin.txt
    │   │   ├── stubtest_allowlist_linux.txt
    │   │   └── test_cases
    │   │   │   ├── check_inheritance.py
    │   │   │   └── check_relativedelta.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── python_http_client
    │   │   ├── __init__.pyi
    │   │   ├── client.pyi
    │   │   └── exceptions.pyi
    ├── python-jenkins
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── jenkins
    │   │   ├── __init__.pyi
    │   │   ├── plugins.pyi
    │   │   └── version.pyi
    ├── python-jose
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── nmap
    │   │   ├── __init__.pyi
    │   │   └── nmap.pyi
    ├── python-xlib
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── pytz
    │   │   ├── __init__.pyi
    │   │   ├── exceptions.pyi
    │   │   ├── lazy.pyi
    │   │   ├── reference.pyi
    │   │   ├── tzfile.pyi
    │   │   └── tzinfo.pyi
    ├── pywin32
    │   ├── @tests
    │   │   └── stubtest_allowlist_win32.txt
    │   ├── METADATA.toml
    │   ├── _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
    │   │   │   ├── policy.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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   └── check_IniFile.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── qrbill
    │   │   ├── __init__.pyi
    │   │   └── bill.pyi
    ├── qrcode
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── ratelimit
    │   │   ├── __init__.pyi
    │   │   ├── decorators.pyi
    │   │   └── exception.pyi
    ├── regex
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   └── check_finditer.py
    │   ├── METADATA.toml
    │   └── regex
    │   │   ├── __init__.pyi
    │   │   ├── _regex.pyi
    │   │   ├── _regex_core.pyi
    │   │   └── regex.pyi
    ├── reportlab
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   └── check_tables.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   └── check_post.py
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── retry
    │   │   ├── __init__.pyi
    │   │   └── api.pyi
    ├── rfc3339-validator
    │   ├── METADATA.toml
    │   └── rfc3339_validator.pyi
    ├── s2clientprotocol
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   ├── check_distutils.py
    │   │   │   ├── check_extension.py
    │   │   │   └── check_protocols.py
    │   ├── METADATA.toml
    │   ├── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── shapely
    │   │   ├── __init__.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
    ├── simplejson
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   └── test_cases
    │   │   │   └── check_simplejson.py
    │   ├── METADATA.toml
    │   └── simplejson
    │   │   ├── __init__.pyi
    │   │   ├── decoder.pyi
    │   │   ├── encoder.pyi
    │   │   ├── errors.pyi
    │   │   ├── raw_json.pyi
    │   │   └── scanner.pyi
    ├── singledispatch
    │   ├── METADATA.toml
    │   └── singledispatch.pyi
    ├── six
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── slumber
    │   │   ├── __init__.pyi
    │   │   ├── exceptions.pyi
    │   │   ├── serialize.pyi
    │   │   └── utils.pyi
    ├── str2bool
    │   ├── METADATA.toml
    │   └── str2bool
    │   │   └── __init__.pyi
    ├── tabulate
    │   ├── METADATA.toml
    │   └── tabulate
    │   │   ├── __init__.pyi
    │   │   └── version.pyi
    ├── tensorflow
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── toml
    │   │   ├── __init__.pyi
    │   │   ├── decoder.pyi
    │   │   ├── encoder.pyi
    │   │   ├── ordered.pyi
    │   │   └── tz.pyi
    ├── toposort
    │   ├── METADATA.toml
    │   └── toposort.pyi
    ├── tqdm
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── translationstring
    │   │   └── __init__.pyi
    ├── ttkthemes
    │   ├── METADATA.toml
    │   └── ttkthemes
    │   │   ├── __init__.pyi
    │   │   ├── _imgops.pyi
    │   │   ├── _utils.pyi
    │   │   ├── _widget.pyi
    │   │   ├── themed_style.pyi
    │   │   └── themed_tk.pyi
    ├── uWSGI
    │   ├── @tests
    │   │   ├── stubtest_allowlist.txt
    │   │   ├── stubtest_allowlist_darwin.txt
    │   │   └── uwsgi.ini
    │   ├── METADATA.toml
    │   ├── uwsgi.pyi
    │   └── uwsgidecorators.pyi
    ├── ujson
    │   ├── METADATA.toml
    │   └── ujson.pyi
    ├── unidiff
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── unidiff
    │   │   ├── __init__.pyi
    │   │   ├── __version__.pyi
    │   │   ├── constants.pyi
    │   │   ├── errors.pyi
    │   │   └── patch.pyi
    ├── untangle
    │   ├── METADATA.toml
    │   └── untangle.pyi
    ├── usersettings
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── usersettings.pyi
    ├── vobject
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── vobject
    │   │   ├── __init__.pyi
    │   │   ├── base.pyi
    │   │   ├── behavior.pyi
    │   │   ├── change_tz.pyi
    │   │   ├── hcalendar.pyi
    │   │   ├── icalendar.pyi
    │   │   ├── ics_diff.pyi
    │   │   ├── vcard.pyi
    │   │   └── win32tz.pyi
    ├── waitress
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── watchpoints
    │   │   ├── __init__.pyi
    │   │   ├── ast_monkey.pyi
    │   │   ├── util.pyi
    │   │   ├── watch.pyi
    │   │   ├── watch_element.pyi
    │   │   └── watch_print.pyi
    ├── whatthepatch
    │   ├── METADATA.toml
    │   └── whatthepatch
    │   │   ├── __init__.pyi
    │   │   ├── apply.pyi
    │   │   ├── exceptions.pyi
    │   │   ├── patch.pyi
    │   │   └── snippets.pyi
    ├── workalendar
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── 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
    │   ├── METADATA.toml
    │   └── wurlitzer.pyi
    ├── xdgenvpy
    │   ├── @tests
    │   │   └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── xdgenvpy
    │   │   ├── __init__.pyi
    │   │   ├── _defaults.pyi
    │   │   └── xdgenv.pyi
    ├── xlrd
    │   ├── METADATA.toml
    │   └── xlrd
    │   │   ├── __init__.pyi
    │   │   ├── biffh.pyi
    │   │   ├── book.pyi
    │   │   ├── compdoc.pyi
    │   │   ├── formatting.pyi
    │   │   ├── formula.pyi
    │   │   ├── info.pyi
    │   │   ├── sheet.pyi
    │   │   ├── timemachine.pyi
    │   │   └── xldate.pyi
    ├── xmltodict
    │   ├── METADATA.toml
    │   └── xmltodict.pyi
    ├── zstd
    │   ├── METADATA.toml
    │   └── zstd.pyi
    └── zxcvbn
    │   ├── @tests
    │       └── stubtest_allowlist.txt
    │   ├── METADATA.toml
    │   └── zxcvbn
    │       ├── __init__.pyi
    │       ├── adjacency_graphs.pyi
    │       ├── feedback.pyi
    │       ├── frequency_lists.pyi
    │       ├── matching.pyi
    │       ├── scoring.pyi
    │       └── time_estimates.pyi
└── tests
    ├── README.md
    ├── REGRESSION.md
    ├── check_typeshed_structure.py
    ├── get_external_apt_dependencies.py
    ├── get_external_stub_requirements.py
    ├── get_stubtest_system_requirements.py
    ├── mypy_test.py
    ├── pyright_exclude_list.txt
    ├── pyright_test.py
    ├── pytype_exclude_list.txt
    ├── pytype_test.py
    ├── regr_test.py
    ├── runtests.py
    ├── stubtest_stdlib.py
    ├── stubtest_third_party.py
    └── typecheck_typeshed.py


/lib/ts_utils/__init__.py:
--------------------------------------------------------------------------------
1 | """Utilities for typeshed infrastructure scripts."""
2 | 


--------------------------------------------------------------------------------
/lib/ts_utils/py.typed:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/lib/ts_utils/py.typed


--------------------------------------------------------------------------------
/stdlib/@tests/stubtest_allowlists/darwin-py313.txt:
--------------------------------------------------------------------------------
1 | # =======
2 | # >= 3.13
3 | # =======
4 | 
5 | (mmap.MAP_32BIT)?  # Exists locally on MacOS but not on GitHub
6 | 


--------------------------------------------------------------------------------
/stdlib/@tests/stubtest_allowlists/darwin-py314.txt:
--------------------------------------------------------------------------------
1 | # =======
2 | # >= 3.13
3 | # =======
4 | 
5 | (mmap.MAP_32BIT)?  # Exists locally on MacOS but not on GitHub
6 | 


--------------------------------------------------------------------------------
/stdlib/@tests/stubtest_allowlists/linux-py313.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/@tests/stubtest_allowlists/linux-py313.txt


--------------------------------------------------------------------------------
/stdlib/@tests/test_cases/email/check_mime.py:
--------------------------------------------------------------------------------
1 | from email.mime.text import MIMEText
2 | from email.policy import SMTP
3 | 
4 | msg = MIMEText("", policy=SMTP)
5 | 


--------------------------------------------------------------------------------
/stdlib/__main__.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stdlib/_bootlocale.pyi:
--------------------------------------------------------------------------------
1 | def getpreferredencoding(do_setlocale: bool = True) -> str: ...
2 | 


--------------------------------------------------------------------------------
/stdlib/antigravity.pyi:
--------------------------------------------------------------------------------
1 | from _typeshed import ReadableBuffer
2 | 
3 | def geohash(latitude: float, longitude: float, datedow: ReadableBuffer) -> None: ...
4 | 


--------------------------------------------------------------------------------
/stdlib/asyncio/log.pyi:
--------------------------------------------------------------------------------
1 | import logging
2 | 
3 | logger: logging.Logger
4 | 


--------------------------------------------------------------------------------
/stdlib/bisect.pyi:
--------------------------------------------------------------------------------
1 | from _bisect import *
2 | 
3 | bisect = bisect_right
4 | insort = insort_right
5 | 


--------------------------------------------------------------------------------
/stdlib/collections/abc.pyi:
--------------------------------------------------------------------------------
1 | from _collections_abc import *
2 | from _collections_abc import __all__ as __all__
3 | 


--------------------------------------------------------------------------------
/stdlib/compression/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/compression/__init__.pyi


--------------------------------------------------------------------------------
/stdlib/compression/_common/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/compression/_common/__init__.pyi


--------------------------------------------------------------------------------
/stdlib/compression/bz2.pyi:
--------------------------------------------------------------------------------
1 | from bz2 import *
2 | 


--------------------------------------------------------------------------------
/stdlib/compression/gzip.pyi:
--------------------------------------------------------------------------------
1 | from gzip import *
2 | 


--------------------------------------------------------------------------------
/stdlib/compression/lzma.pyi:
--------------------------------------------------------------------------------
1 | from lzma import *
2 | 


--------------------------------------------------------------------------------
/stdlib/compression/zlib.pyi:
--------------------------------------------------------------------------------
1 | from zlib import *
2 | 


--------------------------------------------------------------------------------
/stdlib/concurrent/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/concurrent/__init__.pyi


--------------------------------------------------------------------------------
/stdlib/ctypes/macholib/__init__.pyi:
--------------------------------------------------------------------------------
1 | __version__: str
2 | 


--------------------------------------------------------------------------------
/stdlib/curses/has_key.pyi:
--------------------------------------------------------------------------------
1 | def has_key(ch: int | str) -> bool: ...
2 | 


--------------------------------------------------------------------------------
/stdlib/curses/panel.pyi:
--------------------------------------------------------------------------------
1 | from _curses_panel import *
2 | 


--------------------------------------------------------------------------------
/stdlib/dbm/gnu.pyi:
--------------------------------------------------------------------------------
1 | from _gdbm import *
2 | 


--------------------------------------------------------------------------------
/stdlib/dbm/ndbm.pyi:
--------------------------------------------------------------------------------
1 | from _dbm import *
2 | 


--------------------------------------------------------------------------------
/stdlib/distutils/bcppcompiler.pyi:
--------------------------------------------------------------------------------
1 | from distutils.ccompiler import CCompiler
2 | 
3 | class BCPPCompiler(CCompiler): ...
4 | 


--------------------------------------------------------------------------------
/stdlib/distutils/command/bdist_packager.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/distutils/command/bdist_packager.pyi


--------------------------------------------------------------------------------
/stdlib/distutils/debug.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | DEBUG: Final[str | None]
4 | 


--------------------------------------------------------------------------------
/stdlib/distutils/msvccompiler.pyi:
--------------------------------------------------------------------------------
1 | from distutils.ccompiler import CCompiler
2 | 
3 | class MSVCCompiler(CCompiler): ...
4 | 


--------------------------------------------------------------------------------
/stdlib/distutils/unixccompiler.pyi:
--------------------------------------------------------------------------------
1 | from distutils.ccompiler import CCompiler
2 | 
3 | class UnixCCompiler(CCompiler): ...
4 | 


--------------------------------------------------------------------------------
/stdlib/email/mime/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/email/mime/__init__.pyi


--------------------------------------------------------------------------------
/stdlib/email/mime/nonmultipart.pyi:
--------------------------------------------------------------------------------
1 | from email.mime.base import MIMEBase
2 | 
3 | __all__ = ["MIMENonMultipart"]
4 | 
5 | class MIMENonMultipart(MIMEBase): ...
6 | 


--------------------------------------------------------------------------------
/stdlib/encodings/aliases.pyi:
--------------------------------------------------------------------------------
1 | aliases: dict[str, str]
2 | 


--------------------------------------------------------------------------------
/stdlib/importlib/_bootstrap.pyi:
--------------------------------------------------------------------------------
1 | from _frozen_importlib import *
2 | from _frozen_importlib import __import__ as __import__, _init_module_attrs as _init_module_attrs
3 | 


--------------------------------------------------------------------------------
/stdlib/importlib/_bootstrap_external.pyi:
--------------------------------------------------------------------------------
1 | from _frozen_importlib_external import *
2 | from _frozen_importlib_external import _NamespaceLoader as _NamespaceLoader
3 | 


--------------------------------------------------------------------------------
/stdlib/importlib/metadata/diagnose.pyi:
--------------------------------------------------------------------------------
1 | def inspect(path: str) -> None: ...
2 | def run() -> None: ...
3 | 


--------------------------------------------------------------------------------
/stdlib/json/tool.pyi:
--------------------------------------------------------------------------------
1 | def main() -> None: ...
2 | 


--------------------------------------------------------------------------------
/stdlib/lib2to3/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/lib2to3/__init__.pyi


--------------------------------------------------------------------------------
/stdlib/lib2to3/fixes/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/lib2to3/fixes/__init__.pyi


--------------------------------------------------------------------------------
/stdlib/pydoc_data/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/pydoc_data/__init__.pyi


--------------------------------------------------------------------------------
/stdlib/pydoc_data/topics.pyi:
--------------------------------------------------------------------------------
1 | topics: dict[str, str]
2 | 


--------------------------------------------------------------------------------
/stdlib/sqlite3/dump.pyi:
--------------------------------------------------------------------------------
1 | # This file is intentionally empty. The runtime module contains only
2 | # private functions.
3 | 


--------------------------------------------------------------------------------
/stdlib/struct.pyi:
--------------------------------------------------------------------------------
1 | from _struct import *
2 | 
3 | __all__ = ["calcsize", "pack", "pack_into", "unpack", "unpack_from", "iter_unpack", "Struct", "error"]
4 | 
5 | class error(Exception): ...
6 | 


--------------------------------------------------------------------------------
/stdlib/this.pyi:
--------------------------------------------------------------------------------
1 | s: str
2 | d: dict[str, str]
3 | 


--------------------------------------------------------------------------------
/stdlib/urllib/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/urllib/__init__.pyi


--------------------------------------------------------------------------------
/stdlib/wsgiref/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/wsgiref/__init__.pyi


--------------------------------------------------------------------------------
/stdlib/xml/etree/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/xml/etree/__init__.pyi


--------------------------------------------------------------------------------
/stdlib/xml/etree/cElementTree.pyi:
--------------------------------------------------------------------------------
1 | from xml.etree.ElementTree import *
2 | 


--------------------------------------------------------------------------------
/stdlib/xml/parsers/__init__.pyi:
--------------------------------------------------------------------------------
1 | from xml.parsers import expat as expat
2 | 


--------------------------------------------------------------------------------
/stdlib/xml/parsers/expat/errors.pyi:
--------------------------------------------------------------------------------
1 | from pyexpat.errors import *
2 | 


--------------------------------------------------------------------------------
/stdlib/xml/parsers/expat/model.pyi:
--------------------------------------------------------------------------------
1 | from pyexpat.model import *
2 | 


--------------------------------------------------------------------------------
/stdlib/xmlrpc/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stdlib/xmlrpc/__init__.pyi


--------------------------------------------------------------------------------
/stubs/Authlib/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "~= 1.6.0"
2 | upstream_repository = "https://github.com/lepture/authlib"
3 | requires = ["cryptography"]
4 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/common/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/Authlib/authlib/common/__init__.pyi


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/integrations/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/Authlib/authlib/integrations/__init__.pyi


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/jose/drafts/__init__.pyi:
--------------------------------------------------------------------------------
1 | __all__ = ["register_jwe_draft"]
2 | 
3 | def register_jwe_draft(cls) -> None: ...
4 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/jose/jwk.pyi:
--------------------------------------------------------------------------------
1 | def loads(obj, kid=None): ...
2 | def dumps(key, kty=None, **params): ...
3 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/jose/rfc7517/_cryptography_key.pyi:
--------------------------------------------------------------------------------
1 | def load_pem_key(raw, ssh_type=None, key_type=None, password=None): ...
2 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/jose/rfc7518/util.pyi:
--------------------------------------------------------------------------------
1 | def encode_int(num, bits): ...
2 | def decode_int(b): ...
3 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oauth1/errors.pyi:
--------------------------------------------------------------------------------
1 | from authlib.oauth1.rfc5849.errors import *
2 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oauth1/rfc5849/rsa.pyi:
--------------------------------------------------------------------------------
1 | def sign_sha1(msg, rsa_private_key): ...
2 | def verify_sha1(sig, msg, rsa_public_key): ...
3 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oauth1/rfc5849/util.pyi:
--------------------------------------------------------------------------------
1 | def escape(s): ...
2 | def unescape(s): ...
3 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oauth2/rfc7009/parameters.pyi:
--------------------------------------------------------------------------------
1 | def prepare_revoke_token_request(token, token_type_hint=None, body=None, headers=None): ...
2 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oauth2/rfc7521/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .client import AssertionClient as AssertionClient
2 | 
3 | __all__ = ["AssertionClient"]
4 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oauth2/rfc7592/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .endpoint import ClientConfigurationEndpoint as ClientConfigurationEndpoint
2 | 
3 | __all__ = ["ClientConfigurationEndpoint"]
4 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oauth2/rfc8414/well_known.pyi:
--------------------------------------------------------------------------------
1 | def get_well_known_url(issuer, external: bool = False, suffix: str = "oauth-authorization-server"): ...
2 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oauth2/rfc8693/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/Authlib/authlib/oauth2/rfc8693/__init__.pyi


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oauth2/rfc9207/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .parameter import IssuerParameter as IssuerParameter
2 | 
3 | __all__ = ["IssuerParameter"]
4 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oidc/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/Authlib/authlib/oidc/__init__.pyi


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oidc/core/util.pyi:
--------------------------------------------------------------------------------
1 | def create_half_hash(s: str, alg: str) -> str: ...
2 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oidc/discovery/well_known.pyi:
--------------------------------------------------------------------------------
1 | def get_well_known_url(issuer, external: bool = False): ...
2 | 


--------------------------------------------------------------------------------
/stubs/Authlib/authlib/oidc/registration/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .claims import ClientMetadataClaims as ClientMetadataClaims
2 | 
3 | __all__ = ["ClientMetadataClaims"]
4 | 


--------------------------------------------------------------------------------
/stubs/Deprecated/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "~=1.2.15"
2 | upstream_repository = "https://github.com/tantale/deprecated"
3 | requires = []
4 | 


--------------------------------------------------------------------------------
/stubs/Deprecated/deprecated/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .classic import deprecated as deprecated
2 | 
3 | __credits__: str
4 | __date__: str
5 | 


--------------------------------------------------------------------------------
/stubs/ExifRead/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # Stub-only module.
2 | exifread._types
3 | 


--------------------------------------------------------------------------------
/stubs/ExifRead/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.0.*"
2 | upstream_repository = "https://github.com/ianare/exif-py"
3 | obsolete_since = "3.1.0" # Released on 2025-04-25
4 | 


--------------------------------------------------------------------------------
/stubs/ExifRead/exifread/exceptions.pyi:
--------------------------------------------------------------------------------
1 | class InvalidExif(Exception): ...
2 | class ExifNotFound(Exception): ...
3 | 


--------------------------------------------------------------------------------
/stubs/ExifRead/exifread/tags/makernote/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ExifRead/exifread/tags/makernote/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ExifRead/exifread/tags/makernote/apple.pyi:
--------------------------------------------------------------------------------
1 | from exifread._types import TagDict
2 | 
3 | TAGS: TagDict
4 | 


--------------------------------------------------------------------------------
/stubs/ExifRead/exifread/tags/makernote/casio.pyi:
--------------------------------------------------------------------------------
1 | from exifread._types import TagDict
2 | 
3 | TAGS: TagDict
4 | 


--------------------------------------------------------------------------------
/stubs/ExifRead/exifread/tags/makernote/fujifilm.pyi:
--------------------------------------------------------------------------------
1 | from exifread._types import TagDict
2 | 
3 | TAGS: TagDict
4 | 


--------------------------------------------------------------------------------
/stubs/ExifRead/exifread/tags/makernote/nikon.pyi:
--------------------------------------------------------------------------------
1 | from exifread._types import TagDict
2 | 
3 | def ev_bias(seq: list[int]) -> str: ...
4 | 
5 | TAGS_NEW: TagDict
6 | TAGS_OLD: TagDict
7 | 


--------------------------------------------------------------------------------
/stubs/ExifRead/exifread/tags/makernote/olympus.pyi:
--------------------------------------------------------------------------------
1 | from exifread._types import TagDict
2 | 
3 | def special_mode(val: bytes) -> str: ...
4 | 
5 | TAGS: TagDict
6 | TAG_0x2020: TagDict
7 | 


--------------------------------------------------------------------------------
/stubs/Flask-Cors/flask_cors/version.pyi:
--------------------------------------------------------------------------------
1 | __version__: str
2 | 


--------------------------------------------------------------------------------
/stubs/Flask-Migrate/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # Flask-Migrate users don't need to interact with this undocumented module from within  python
2 | flask_migrate.cli
3 | 


--------------------------------------------------------------------------------
/stubs/Flask-SocketIO/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "5.5.*"
2 | requires = ["Flask>=0.9"]
3 | upstream_repository = "https://github.com/miguelgrinberg/flask-socketio"
4 | 


--------------------------------------------------------------------------------
/stubs/JACK-Client/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # The available constants differ based on the local environment.
2 | (jack\.METADATA_.*)?
3 | 


--------------------------------------------------------------------------------
/stubs/Jetson.GPIO/Jetson/GPIO/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .gpio import *
2 | 
3 | VERSION: str = ...
4 | 


--------------------------------------------------------------------------------
/stubs/Jetson.GPIO/Jetson/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/Jetson.GPIO/Jetson/__init__.pyi


--------------------------------------------------------------------------------
/stubs/Jetson.GPIO/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.1.*"
2 | upstream_repository = "https://github.com/NVIDIA/jetson-gpio"
3 | 


--------------------------------------------------------------------------------
/stubs/Markdown/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.8.*"
2 | upstream_repository = "https://github.com/Python-Markdown/markdown"
3 | 


--------------------------------------------------------------------------------
/stubs/Markdown/markdown/__meta__.pyi:
--------------------------------------------------------------------------------
1 | __version_info__: tuple[int, int, int, str, int]
2 | __version__: str
3 | 


--------------------------------------------------------------------------------
/stubs/PyAutoGUI/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | pyautogui.__main__
2 | 


--------------------------------------------------------------------------------
/stubs/PyAutoGUI/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.9.*"
2 | upstream_repository = "https://github.com/asweigart/pyautogui"
3 | requires = ["types-PyScreeze"]
4 | 


--------------------------------------------------------------------------------
/stubs/PyMySQL/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.1.*"
2 | upstream_repository = "https://github.com/PyMySQL/PyMySQL"
3 | 


--------------------------------------------------------------------------------
/stubs/PyMySQL/pymysql/constants/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/PyMySQL/pymysql/constants/__init__.pyi


--------------------------------------------------------------------------------
/stubs/PyScreeze/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # present but unimplemented
2 | pyscreeze.screenshotWindow
3 | 


--------------------------------------------------------------------------------
/stubs/PyScreeze/@tests/stubtest_allowlist_linux.txt:
--------------------------------------------------------------------------------
1 | # temp variable used to define scrotExists by checking if the command "scrot" exists
2 | pyscreeze.whichProc
3 | 


--------------------------------------------------------------------------------
/stubs/PyYAML/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "6.0.*"
2 | upstream_repository = "https://github.com/yaml/pyyaml"
3 | 


--------------------------------------------------------------------------------
/stubs/Pygments/pygments/formatters/_mapping.pyi:
--------------------------------------------------------------------------------
1 | from typing import Any
2 | 
3 | FORMATTERS: Any
4 | 


--------------------------------------------------------------------------------
/stubs/Pygments/pygments/lexers/jsx.pyi:
--------------------------------------------------------------------------------
1 | from .javascript import JavascriptLexer
2 | 
3 | __all__ = ["JsxLexer"]
4 | 
5 | class JsxLexer(JavascriptLexer): ...
6 | 


--------------------------------------------------------------------------------
/stubs/Pygments/pygments/lexers/lean.pyi:
--------------------------------------------------------------------------------
1 | from ..lexer import RegexLexer
2 | 
3 | __all__ = ["Lean3Lexer"]
4 | 
5 | class Lean3Lexer(RegexLexer): ...
6 | 
7 | LeanLexer = Lean3Lexer
8 | 


--------------------------------------------------------------------------------
/stubs/Pygments/pygments/lexers/vyper.pyi:
--------------------------------------------------------------------------------
1 | from ..lexer import RegexLexer
2 | 
3 | __all__ = ["VyperLexer"]
4 | 
5 | class VyperLexer(RegexLexer): ...
6 | 


--------------------------------------------------------------------------------
/stubs/Pygments/pygments/modeline.pyi:
--------------------------------------------------------------------------------
1 | def get_filetype_from_buffer(buf, max_lines: int = 5): ...
2 | 


--------------------------------------------------------------------------------
/stubs/RPi.GPIO/RPi/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/RPi.GPIO/RPi/__init__.pyi


--------------------------------------------------------------------------------
/stubs/Send2Trash/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # Modules that are not meant to be imported by users
2 | send2trash.mac
3 | send2trash.compat
4 | 


--------------------------------------------------------------------------------
/stubs/Send2Trash/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.8.*"
2 | upstream_repository = "https://github.com/arsenetar/send2trash"
3 | 


--------------------------------------------------------------------------------
/stubs/Send2Trash/send2trash/__main__.pyi:
--------------------------------------------------------------------------------
1 | from collections.abc import Iterable
2 | 
3 | def main(args: Iterable[str] | None = None) -> None: ...
4 | 


--------------------------------------------------------------------------------
/stubs/TgCrypto/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.2.*"
2 | upstream_repository = "https://github.com/pyrogram/tgcrypto"
3 | 


--------------------------------------------------------------------------------
/stubs/WTForms/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "~= 3.2.1"
2 | upstream_repository = "https://github.com/pallets-eco/wtforms"
3 | requires = ["MarkupSafe"]
4 | 


--------------------------------------------------------------------------------
/stubs/WTForms/wtforms/csrf/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/WTForms/wtforms/csrf/__init__.pyi


--------------------------------------------------------------------------------
/stubs/WebOb/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.8.*"
2 | upstream_repository = "https://github.com/Pylons/webob"
3 | 


--------------------------------------------------------------------------------
/stubs/aiofiles/@tests/stubtest_allowlist_darwin.txt:
--------------------------------------------------------------------------------
1 | # This function gets the wrong signature from functools.wraps()
2 | aiofiles.os.sendfile
3 | 


--------------------------------------------------------------------------------
/stubs/aiofiles/@tests/stubtest_allowlist_linux.txt:
--------------------------------------------------------------------------------
1 | # This function gets the wrong signature from functools.wraps()
2 | aiofiles.os.sendfile
3 | 


--------------------------------------------------------------------------------
/stubs/antlr4-python3-runtime/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "4.13.*"
2 | upstream_repository = "https://github.com/antlr/antlr4"
3 | 
4 | [tool.stubtest]
5 | platforms = ["linux", "win32"]
6 | 


--------------------------------------------------------------------------------
/stubs/antlr4-python3-runtime/antlr4/Utils.pyi:
--------------------------------------------------------------------------------
1 | def str_list(val) -> str: ...
2 | def escapeWhitespace(s: str, escapeSpaces: bool): ...
3 | 


--------------------------------------------------------------------------------
/stubs/antlr4-python3-runtime/antlr4/_pygrun.pyi:
--------------------------------------------------------------------------------
1 | from antlr4 import *
2 | 
3 | def beautify_lisp_string(in_string): ...
4 | def main() -> None: ...
5 | 


--------------------------------------------------------------------------------
/stubs/antlr4-python3-runtime/antlr4/atn/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/antlr4-python3-runtime/antlr4/atn/__init__.pyi


--------------------------------------------------------------------------------
/stubs/antlr4-python3-runtime/antlr4/dfa/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/antlr4-python3-runtime/antlr4/dfa/__init__.pyi


--------------------------------------------------------------------------------
/stubs/assertpy/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.1.*"
2 | upstream_repository = "https://github.com/assertpy/assertpy"
3 | 


--------------------------------------------------------------------------------
/stubs/assertpy/assertpy/helpers.pyi:
--------------------------------------------------------------------------------
1 | __tracebackhide__: bool
2 | 
3 | class HelpersMixin: ...
4 | 


--------------------------------------------------------------------------------
/stubs/auth0-python/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "4.10.*"
2 | upstream_repository = "https://github.com/auth0/auth0-python"
3 | requires = ["cryptography", "types-requests"]
4 | 


--------------------------------------------------------------------------------
/stubs/auth0-python/auth0/utils.pyi:
--------------------------------------------------------------------------------
1 | def is_async_available() -> bool: ...
2 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.14.*"
2 | upstream_repository = "https://github.com/aws/aws-xray-sdk-python"
3 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .sdk_config import SDKConfig
2 | 
3 | global_sdk_config: SDKConfig
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/stacktrace.pyi:
--------------------------------------------------------------------------------
1 | import traceback
2 | 
3 | def get_stacktrace(limit: int | None = None) -> list[traceback.FrameSummary]: ...
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/aws-xray-sdk/aws_xray_sdk/ext/__init__.pyi


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiobotocore/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch
2 | 
3 | __all__ = ["patch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiobotocore/patch.pyi:
--------------------------------------------------------------------------------
1 | def patch() -> None: ...
2 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiohttp/middleware.pyi:
--------------------------------------------------------------------------------
1 | async def middleware(request, handler): ...
2 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/botocore/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch
2 | 
3 | __all__ = ["patch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/botocore/patch.pyi:
--------------------------------------------------------------------------------
1 | def patch() -> None: ...
2 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/django/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | default_app_config: Final = "aws_xray_sdk.ext.django.apps.XRayConfig"
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/django/templates.pyi:
--------------------------------------------------------------------------------
1 | from logging import Logger
2 | 
3 | log: Logger
4 | 
5 | def patch_template() -> None: ...
6 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/httpx/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch
2 | 
3 | __all__ = ["patch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/mysql/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch
2 | 
3 | __all__ = ["patch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/pg8000/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch, unpatch as unpatch
2 | 
3 | __all__ = ["patch", "unpatch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/pg8000/patch.pyi:
--------------------------------------------------------------------------------
1 | def patch() -> None: ...
2 | def unpatch() -> None: ...
3 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg2/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch
2 | 
3 | __all__ = ["patch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg2/patch.pyi:
--------------------------------------------------------------------------------
1 | def patch() -> None: ...
2 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/pymongo/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch
2 | 
3 | __all__ = ["patch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/pymysql/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch, unpatch as unpatch
2 | 
3 | __all__ = ["patch", "unpatch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/pymysql/patch.pyi:
--------------------------------------------------------------------------------
1 | def patch() -> None: ...
2 | def sanitize_db_ver(raw: tuple[str]) -> str: ...
3 | def unpatch() -> None: ...
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/pynamodb/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch
2 | 
3 | __all__ = ["patch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/requests/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch
2 | 
3 | __all__ = ["patch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy_core/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch, unpatch as unpatch
2 | 
3 | __all__ = ["patch", "unpatch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy_core/patch.pyi:
--------------------------------------------------------------------------------
1 | def patch() -> None: ...
2 | def unpatch() -> None: ...
3 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlite3/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .patch import patch as patch
2 | 
3 | __all__ = ["patch"]
4 | 


--------------------------------------------------------------------------------
/stubs/aws-xray-sdk/aws_xray_sdk/version.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | VERSION: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/binaryornot/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | binaryornot\..+?\.logger
2 | 


--------------------------------------------------------------------------------
/stubs/binaryornot/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.4.*"
2 | upstream_repository = "https://github.com/binaryornot/binaryornot"
3 | 


--------------------------------------------------------------------------------
/stubs/binaryornot/binaryornot/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __author__: Final[str]
4 | __email__: Final[str]
5 | __version__: Final[str]
6 | 


--------------------------------------------------------------------------------
/stubs/binaryornot/binaryornot/check.pyi:
--------------------------------------------------------------------------------
1 | from _typeshed import StrOrBytesPath
2 | 
3 | def is_binary(filename: StrOrBytesPath) -> bool: ...
4 | 


--------------------------------------------------------------------------------
/stubs/bleach/bleach/parse_shim.pyi:
--------------------------------------------------------------------------------
1 | from urllib import parse as parse
2 | 


--------------------------------------------------------------------------------
/stubs/boltons/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | boltons.funcutils.CachedInstancePartial.__partialmethod__
2 | boltons.funcutils.InstancePartial.__partialmethod__
3 | 


--------------------------------------------------------------------------------
/stubs/boltons/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "25.0.*"
2 | upstream_repository = "https://github.com/mahmoud/boltons"
3 | 


--------------------------------------------------------------------------------
/stubs/boltons/boltons/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/boltons/boltons/__init__.pyi


--------------------------------------------------------------------------------
/stubs/boltons/boltons/easterutils.pyi:
--------------------------------------------------------------------------------
1 | from typing import NoReturn
2 | 
3 | def gobs_program() -> NoReturn: ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | .*\.AttributeGetter.__repr__  # has an extra argument, but also a million things inherit from it
2 | 


--------------------------------------------------------------------------------
/stubs/braintree/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "4.37.*"
2 | upstream_repository = "https://github.com/braintree/braintree_python"
3 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/ach_mandate.pyi:
--------------------------------------------------------------------------------
1 | from braintree.resource import Resource
2 | 
3 | class AchMandate(Resource):
4 |     def __init__(self, gateway, attributes) -> None: ...
5 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/add_on.pyi:
--------------------------------------------------------------------------------
1 | from braintree.modification import Modification
2 | 
3 | class AddOn(Modification):
4 |     @staticmethod
5 |     def all() -> list[AddOn]: ...
6 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/apple_pay_options.pyi:
--------------------------------------------------------------------------------
1 | from braintree.attribute_getter import AttributeGetter
2 | 
3 | class ApplePayOptions(AttributeGetter): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/bin_data.pyi:
--------------------------------------------------------------------------------
1 | from braintree.attribute_getter import AttributeGetter
2 | 
3 | class BinData(AttributeGetter): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/blik_alias.pyi:
--------------------------------------------------------------------------------
1 | from braintree.resource import Resource
2 | 
3 | class BlikAlias(Resource): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/descriptor.pyi:
--------------------------------------------------------------------------------
1 | from braintree.resource import Resource
2 | 
3 | class Descriptor(Resource):
4 |     def __init__(self, gateway, attributes) -> None: ...
5 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/authentication_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.exceptions.braintree_error import BraintreeError
2 | 
3 | class AuthenticationError(BraintreeError): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/authorization_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.exceptions.braintree_error import BraintreeError
2 | 
3 | class AuthorizationError(BraintreeError): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/braintree_error.pyi:
--------------------------------------------------------------------------------
1 | class BraintreeError(Exception): ...
2 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/configuration_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.exceptions.unexpected_error import UnexpectedError
2 | 
3 | class ConfigurationError(UnexpectedError): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/gateway_timeout_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.exceptions.braintree_error import BraintreeError
2 | 
3 | class GatewayTimeoutError(BraintreeError): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/http/connection_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.exceptions.unexpected_error import UnexpectedError
2 | 
3 | class ConnectionError(UnexpectedError): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/not_found_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.exceptions.braintree_error import BraintreeError
2 | 
3 | class NotFoundError(BraintreeError): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/request_timeout_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.exceptions.braintree_error import BraintreeError
2 | 
3 | class RequestTimeoutError(BraintreeError): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/server_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.exceptions.braintree_error import BraintreeError
2 | 
3 | class ServerError(BraintreeError): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/unexpected_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.exceptions.braintree_error import BraintreeError
2 | 
3 | class UnexpectedError(BraintreeError): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/exceptions/upgrade_required_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.exceptions.braintree_error import BraintreeError
2 | 
3 | class UpgradeRequiredError(BraintreeError): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/facilitated_details.pyi:
--------------------------------------------------------------------------------
1 | from braintree.attribute_getter import AttributeGetter
2 | 
3 | class FacilitatedDetails(AttributeGetter): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/facilitator_details.pyi:
--------------------------------------------------------------------------------
1 | from braintree.attribute_getter import AttributeGetter
2 | 
3 | class FacilitatorDetails(AttributeGetter): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/graphql/enums/recommendations.pyi:
--------------------------------------------------------------------------------
1 | from enum import Enum
2 | 
3 | class Recommendations(Enum):
4 |     PAYMENT_RECOMMENDATIONS = "PAYMENT_RECOMMENDATIONS"
5 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/graphql/unions/__init__.pyi:
--------------------------------------------------------------------------------
1 | from braintree.graphql.unions.customer_recommendations import CustomerRecommendations as CustomerRecommendations
2 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/iban_bank_account.pyi:
--------------------------------------------------------------------------------
1 | from braintree.resource import Resource
2 | 
3 | class IbanBankAccount(Resource): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/ids_search.pyi:
--------------------------------------------------------------------------------
1 | from braintree.search import Search
2 | 
3 | class IdsSearch:
4 |     ids: Search.MultipleValueNodeBuilder
5 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/liability_shift.pyi:
--------------------------------------------------------------------------------
1 | from braintree.attribute_getter import AttributeGetter
2 | 
3 | class LiabilityShift(AttributeGetter): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/local_payment.pyi:
--------------------------------------------------------------------------------
1 | from braintree.resource import Resource
2 | 
3 | class LocalPayment(Resource): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/merchant_account/__init__.pyi:
--------------------------------------------------------------------------------
1 | from braintree.merchant_account.merchant_account import MerchantAccount as MerchantAccount
2 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/oauth_credentials.pyi:
--------------------------------------------------------------------------------
1 | from braintree.resource import Resource
2 | 
3 | class OAuthCredentials(Resource): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/paypal_here.pyi:
--------------------------------------------------------------------------------
1 | from braintree.resource import Resource
2 | 
3 | class PayPalHere(Resource):
4 |     def __init__(self, gateway, attributes) -> None: ...
5 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/subscription_details.pyi:
--------------------------------------------------------------------------------
1 | from braintree.attribute_getter import AttributeGetter
2 | 
3 | class SubscriptionDetails(AttributeGetter): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/test/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/braintree/braintree/test/__init__.pyi


--------------------------------------------------------------------------------
/stubs/braintree/braintree/three_d_secure_info.pyi:
--------------------------------------------------------------------------------
1 | from braintree.attribute_getter import AttributeGetter
2 | 
3 | class ThreeDSecureInfo(AttributeGetter): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/transaction_review.pyi:
--------------------------------------------------------------------------------
1 | from braintree.resource import Resource
2 | 
3 | class TransactionReview(Resource):
4 |     def __init__(self, attributes) -> None: ...
5 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/unknown_payment_method.pyi:
--------------------------------------------------------------------------------
1 | from braintree.resource import Resource
2 | 
3 | class UnknownPaymentMethod(Resource):
4 |     def image_url(self) -> str: ...
5 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/util/datetime_parser.pyi:
--------------------------------------------------------------------------------
1 | from datetime import datetime
2 | 
3 | def parse_datetime(timestamp: str) -> datetime: ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/util/experimental.pyi:
--------------------------------------------------------------------------------
1 | from typing import TypeVar
2 | 
3 | _T = TypeVar("_T")
4 | 
5 | def Experimental(cls: _T) -> _T: ...
6 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/validation_error.pyi:
--------------------------------------------------------------------------------
1 | from braintree.attribute_getter import AttributeGetter
2 | 
3 | class ValidationError(AttributeGetter): ...
4 | 


--------------------------------------------------------------------------------
/stubs/braintree/braintree/version.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | Version: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/cachetools/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "6.0.*"
2 | upstream_repository = "https://github.com/tkem/cachetools"
3 | 


--------------------------------------------------------------------------------
/stubs/capturer/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # Tests should not be part of the stubs
2 | capturer.tests.*
3 | 


--------------------------------------------------------------------------------
/stubs/capturer/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.0.*"
2 | upstream_repository = "https://github.com/xolox/python-capturer"
3 | 


--------------------------------------------------------------------------------
/stubs/cffi/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # added dynamically and not detected by stubtest
2 | cffi.(api.)?FFI.CData
3 | cffi.(api.)?FFI.CType
4 | cffi.(api.)?FFI.buffer
5 | 


--------------------------------------------------------------------------------
/stubs/cffi/@tests/stubtest_allowlist_darwin.txt:
--------------------------------------------------------------------------------
1 | # Technically exists on all OSs, but crashes on all but Windows. So we hide it in stubs
2 | cffi.(api.)?FFI.getwinerror
3 | 


--------------------------------------------------------------------------------
/stubs/cffi/@tests/stubtest_allowlist_linux.txt:
--------------------------------------------------------------------------------
1 | # Technically exists on all OSs, but crashes on all but Windows. So we hide it in stubs
2 | cffi.(api.)?FFI.getwinerror
3 | 


--------------------------------------------------------------------------------
/stubs/cffi/cffi/lock.pyi:
--------------------------------------------------------------------------------
1 | from _thread import allocate_lock as allocate_lock
2 | 


--------------------------------------------------------------------------------
/stubs/chevron/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.14.*"
2 | upstream_repository = "https://github.com/noahmorrison/chevron"
3 | 
4 | [tool.stubtest]
5 | 


--------------------------------------------------------------------------------
/stubs/chevron/chevron/metadata.pyi:
--------------------------------------------------------------------------------
1 | version: str
2 | 


--------------------------------------------------------------------------------
/stubs/click-log/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.4.*"
2 | requires = ["click>=8.0.0"]
3 | upstream_repository = "https://github.com/click-contrib/click-log"
4 | 


--------------------------------------------------------------------------------
/stubs/click-spinner/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.1.*"
2 | upstream_repository = "https://github.com/click-contrib/click-spinner"
3 | 


--------------------------------------------------------------------------------
/stubs/click-web/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.8.*"
2 | requires = ["click>=8.0.0", "Flask>=2.3.2"]
3 | upstream_repository = "https://github.com/fredrik-corneliusson/click-web"
4 | 


--------------------------------------------------------------------------------
/stubs/click-web/click_web/exceptions.pyi:
--------------------------------------------------------------------------------
1 | class ClickWebException(Exception): ...
2 | class CommandNotFound(ClickWebException): ...
3 | 


--------------------------------------------------------------------------------
/stubs/click-web/click_web/resources/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/click-web/click_web/resources/__init__.pyi


--------------------------------------------------------------------------------
/stubs/colorama/@tests/stubtest_allowlist_linux.txt:
--------------------------------------------------------------------------------
1 | # These are only available on Windows:
2 | colorama.winterm.WinColor
3 | colorama.winterm.WinStyle
4 | colorama.winterm.WinTerm
5 | 


--------------------------------------------------------------------------------
/stubs/colorama/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.4.*"
2 | upstream_repository = "https://github.com/tartley/colorama"
3 | 
4 | [tool.stubtest]
5 | platforms = ["linux", "win32"]
6 | 


--------------------------------------------------------------------------------
/stubs/console-menu/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.8.*"
2 | upstream_repository = "https://github.com/aegirhall/console-menu"
3 | 


--------------------------------------------------------------------------------
/stubs/console-menu/consolemenu/version.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/console-menu/consolemenu/version.pyi


--------------------------------------------------------------------------------
/stubs/croniter/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "6.0.0"
2 | upstream_repository = "https://github.com/pallets-eco/croniter"
3 | 


--------------------------------------------------------------------------------
/stubs/dateparser/dateparser/custom_language_detection/fasttext.pyi:
--------------------------------------------------------------------------------
1 | def detect_languages(text: str, confidence_threshold: float) -> list[str]: ...
2 | 


--------------------------------------------------------------------------------
/stubs/dateparser/dateparser/custom_language_detection/langdetect.pyi:
--------------------------------------------------------------------------------
1 | def detect_languages(text: str, confidence_threshold: float) -> list[str]: ...
2 | 


--------------------------------------------------------------------------------
/stubs/dateparser/dateparser/custom_language_detection/language_mapping.pyi:
--------------------------------------------------------------------------------
1 | def map_languages(language_codes: list[str]) -> list[str]: ...
2 | 


--------------------------------------------------------------------------------
/stubs/dateparser/dateparser/data/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .languages_info import language_locale_dict as language_locale_dict, language_order as language_order
2 | 


--------------------------------------------------------------------------------
/stubs/dateparser/dateparser/languages/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .loader import default_loader as default_loader
2 | from .locale import Locale as Locale
3 | 


--------------------------------------------------------------------------------
/stubs/dateparser/dateparser/timezones.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | timezone_info_list: Final[list[dict[str, list[str | tuple[str, str | int]]]]]
4 | 


--------------------------------------------------------------------------------
/stubs/dateparser/dateparser_data/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/dateparser/dateparser_data/__init__.pyi


--------------------------------------------------------------------------------
/stubs/dateparser/dateparser_data/settings.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | default_parsers: Final[list[str]]
4 | settings: Final[dict[str, str | bool | list[str] | float | int]]
5 | 


--------------------------------------------------------------------------------
/stubs/decorator/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "5.2.*"
2 | upstream_repository = "https://github.com/micheles/decorator"
3 | 


--------------------------------------------------------------------------------
/stubs/defusedxml/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.7.*"
2 | upstream_repository = "https://github.com/tiran/defusedxml"
3 | 
4 | [tool.stubtest]
5 | stubtest_requirements = ["lxml"]
6 | 


--------------------------------------------------------------------------------
/stubs/dirhash/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.5.*"
2 | upstream_repository = "https://github.com/andhus/dirhash-python"
3 | 


--------------------------------------------------------------------------------
/stubs/django-import-export/import_export/__init__.pyi:
--------------------------------------------------------------------------------
1 | __version__: str
2 | 


--------------------------------------------------------------------------------
/stubs/django-import-export/import_export/signals.pyi:
--------------------------------------------------------------------------------
1 | from django.dispatch import Signal
2 | 
3 | post_export: Signal
4 | post_import: Signal
5 | 


--------------------------------------------------------------------------------
/stubs/django-import-export/management/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/django-import-export/management/__init__.pyi


--------------------------------------------------------------------------------
/stubs/django-import-export/management/commands/export.pyi:
--------------------------------------------------------------------------------
1 | from django.core.management.base import BaseCommand
2 | 
3 | class Command(BaseCommand): ...
4 | 


--------------------------------------------------------------------------------
/stubs/django-import-export/management/commands/import.pyi:
--------------------------------------------------------------------------------
1 | from django.core.management.base import BaseCommand
2 | 
3 | class Command(BaseCommand): ...
4 | 


--------------------------------------------------------------------------------
/stubs/docker/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "7.1.*"
2 | upstream_repository = "https://github.com/docker/docker-py"
3 | requires = ["types-requests", "urllib3>=2"]
4 | 


--------------------------------------------------------------------------------
/stubs/docker/docker/api/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .client import APIClient as APIClient
2 | 


--------------------------------------------------------------------------------
/stubs/docker/docker/context/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .api import ContextAPI as ContextAPI
2 | from .context import Context as Context
3 | 


--------------------------------------------------------------------------------
/stubs/docker/docker/credentials/constants.pyi:
--------------------------------------------------------------------------------
1 | PROGRAM_PREFIX: str
2 | DEFAULT_LINUX_STORE: str
3 | DEFAULT_OSX_STORE: str
4 | DEFAULT_WIN32_STORE: str
5 | 


--------------------------------------------------------------------------------
/stubs/docker/docker/credentials/utils.pyi:
--------------------------------------------------------------------------------
1 | def create_environment_dict(overrides): ...
2 | 


--------------------------------------------------------------------------------
/stubs/docker/docker/models/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/docker/docker/models/__init__.pyi


--------------------------------------------------------------------------------
/stubs/docker/docker/transport/basehttpadapter.pyi:
--------------------------------------------------------------------------------
1 | import requests.adapters
2 | 
3 | class BaseHTTPAdapter(requests.adapters.HTTPAdapter):
4 |     def close(self) -> None: ...
5 | 


--------------------------------------------------------------------------------
/stubs/docker/docker/version.pyi:
--------------------------------------------------------------------------------
1 | __version__: str
2 | 


--------------------------------------------------------------------------------
/stubs/dockerfile-parse/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.0.*"
2 | upstream_repository = "https://github.com/containerbuildsystem/dockerfile-parse"
3 | 


--------------------------------------------------------------------------------
/stubs/dockerfile-parse/dockerfile_parse/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | from .parser import DockerfileParser as DockerfileParser
4 | 
5 | __version__: Final[str]
6 | 


--------------------------------------------------------------------------------
/stubs/dockerfile-parse/dockerfile_parse/constants.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | DOCKERFILE_FILENAME: Final = "Dockerfile"
4 | COMMENT_INSTRUCTION: Final = "COMMENT"
5 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/utils/math/unichar2tex.pyi:
--------------------------------------------------------------------------------
1 | uni2tex_table: dict[int, str]
2 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/utils/urischemes.pyi:
--------------------------------------------------------------------------------
1 | schemes: dict[str, str]
2 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/writers/docutils_xml.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/writers/html4css1.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/writers/html5_polyglot.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/writers/null.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/writers/odf_odt.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/writers/pep_html.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/writers/pseudoxml.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/writers/s5_html.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/docutils/docutils/writers/xetex.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/editdistance/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # Not public API -- the submodule is an implementation detail due to it being a cythonized package
2 | editdistance.bycython
3 | 


--------------------------------------------------------------------------------
/stubs/editdistance/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.8.*"
2 | upstream_repository = "https://github.com/roy-ht/editdistance"
3 | 


--------------------------------------------------------------------------------
/stubs/entrypoints/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # staticmethod weirdness:
2 | entrypoints.CaseSensitiveConfigParser.optionxform
3 | 


--------------------------------------------------------------------------------
/stubs/entrypoints/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.4.*"
2 | upstream_repository = "https://github.com/takluyver/entrypoints"
3 | 


--------------------------------------------------------------------------------
/stubs/fanstatic/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.5.*"
2 | upstream_repository = "https://github.com/zopefoundation/fanstatic"
3 | requires = ["types-setuptools", "types-WebOb"]
4 | 


--------------------------------------------------------------------------------
/stubs/first/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.0.*"
2 | upstream_repository = "https://github.com/hynek/first"
3 | 


--------------------------------------------------------------------------------
/stubs/flake8-bugbear/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "24.12.12"
2 | upstream_repository = "https://github.com/PyCQA/flake8-bugbear"
3 | 


--------------------------------------------------------------------------------
/stubs/flake8-builtins/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.5.*"
2 | upstream_repository = "https://github.com/gforcada/flake8-builtins"
3 | requires = ["types-flake8"]
4 | 


--------------------------------------------------------------------------------
/stubs/flake8-docstrings/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.7.*"
2 | upstream_repository = "https://github.com/pycqa/flake8-docstrings"
3 | requires = ["types-flake8"]
4 | 


--------------------------------------------------------------------------------
/stubs/flake8-rst-docstrings/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.3.*"
2 | upstream_repository = "https://github.com/peterjc/flake8-rst-docstrings"
3 | 


--------------------------------------------------------------------------------
/stubs/flake8-simplify/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.22.*"
2 | upstream_repository = "https://github.com/MartinThoma/flake8-simplify"
3 | 


--------------------------------------------------------------------------------
/stubs/flake8-simplify/flake8_simplify/constants.pyi:
--------------------------------------------------------------------------------
1 | BOOL_CONST_TYPES: tuple[type, ...]
2 | AST_CONST_TYPES: tuple[type, ...]
3 | STR_TYPES: tuple[type, ...]
4 | 


--------------------------------------------------------------------------------
/stubs/flake8-simplify/flake8_simplify/rules/ast_classdef.pyi:
--------------------------------------------------------------------------------
1 | import ast
2 | 
3 | def get_sim120(node: ast.ClassDef) -> list[tuple[int, int, str]]: ...
4 | 


--------------------------------------------------------------------------------
/stubs/flake8-simplify/flake8_simplify/rules/ast_expr.pyi:
--------------------------------------------------------------------------------
1 | import ast
2 | 
3 | def get_sim112(node: ast.Expr) -> list[tuple[int, int, str]]: ...
4 | 


--------------------------------------------------------------------------------
/stubs/flake8-simplify/flake8_simplify/rules/ast_subscript.pyi:
--------------------------------------------------------------------------------
1 | import ast
2 | 
3 | def get_sim907(node: ast.Subscript) -> list[tuple[int, int, str]]: ...
4 | 


--------------------------------------------------------------------------------
/stubs/flake8-simplify/flake8_simplify/rules/ast_with.pyi:
--------------------------------------------------------------------------------
1 | import ast
2 | 
3 | def get_sim117(node: ast.With) -> list[tuple[int, int, str]]: ...
4 | 


--------------------------------------------------------------------------------
/stubs/flake8-typing-imports/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.16.*"
2 | upstream_repository = "https://github.com/asottile/flake8-typing-imports"
3 | 


--------------------------------------------------------------------------------
/stubs/flake8/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | flake8.__main__
2 | 


--------------------------------------------------------------------------------
/stubs/flake8/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "7.3.*"
2 | upstream_repository = "https://github.com/pycqa/flake8"
3 | requires = ["types-pyflakes"]
4 | 


--------------------------------------------------------------------------------
/stubs/flake8/flake8/api/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/flake8/flake8/api/__init__.pyi


--------------------------------------------------------------------------------
/stubs/flake8/flake8/formatting/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/flake8/flake8/formatting/__init__.pyi


--------------------------------------------------------------------------------
/stubs/flake8/flake8/formatting/_windows_color.pyi:
--------------------------------------------------------------------------------
1 | terminal_supports_color: bool
2 | 


--------------------------------------------------------------------------------
/stubs/flake8/flake8/main/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/flake8/flake8/main/__init__.pyi


--------------------------------------------------------------------------------
/stubs/flake8/flake8/main/cli.pyi:
--------------------------------------------------------------------------------
1 | from collections.abc import Sequence
2 | 
3 | def main(argv: Sequence[str] | None = None) -> int: ...
4 | 


--------------------------------------------------------------------------------
/stubs/flake8/flake8/main/debug.pyi:
--------------------------------------------------------------------------------
1 | from typing import Any
2 | 
3 | from ..plugins.finder import Plugins
4 | 
5 | def information(version: str, plugins: Plugins) -> dict[str, Any]: ...
6 | 


--------------------------------------------------------------------------------
/stubs/flake8/flake8/options/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/flake8/flake8/options/__init__.pyi


--------------------------------------------------------------------------------
/stubs/flake8/flake8/plugins/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/flake8/flake8/plugins/__init__.pyi


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/breakpoint.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/bt.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/disassemble.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/evaluate.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/events.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/frames.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/io.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/launch.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/locations.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/memory.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/modules.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/next.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/pause.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/scopes.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/server.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/sources.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/startup.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/state.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/threads.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/typecheck.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/dap/varref.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/gdb/gdb/prompt.pyi:
--------------------------------------------------------------------------------
1 | def substitute_prompt(prompt: str) -> str: ...
2 | 


--------------------------------------------------------------------------------
/stubs/geopandas/geopandas/io/__init__.pyi:
--------------------------------------------------------------------------------
1 | from . import arrow as arrow, file as file, sql as sql
2 | 


--------------------------------------------------------------------------------
/stubs/geopandas/geopandas/tools/_show_versions.pyi:
--------------------------------------------------------------------------------
1 | def show_versions() -> None: ...
2 | 


--------------------------------------------------------------------------------
/stubs/geopandas/geopandas/tools/hilbert_curve.pyi:
--------------------------------------------------------------------------------
1 | MAX_LEVEL: int
2 | 


--------------------------------------------------------------------------------
/stubs/gevent/gevent/_ffi/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/gevent/gevent/_ffi/__init__.pyi


--------------------------------------------------------------------------------
/stubs/gevent/gevent/ares.pyi:
--------------------------------------------------------------------------------
1 | from gevent.resolver.cares import *
2 | 
3 | __all__ = ["channel"]
4 | 


--------------------------------------------------------------------------------
/stubs/gevent/gevent/libev/__init__.pyi:
--------------------------------------------------------------------------------
1 | __all__: list[str] = []
2 | 


--------------------------------------------------------------------------------
/stubs/gevent/gevent/libuv/__init__.pyi:
--------------------------------------------------------------------------------
1 | __all__: list[str] = []
2 | 


--------------------------------------------------------------------------------
/stubs/gevent/gevent/resolver_ares.pyi:
--------------------------------------------------------------------------------
1 | from gevent.resolver.ares import *
2 | 
3 | __all__ = ["Resolver"]
4 | 


--------------------------------------------------------------------------------
/stubs/gevent/gevent/resolver_thread.pyi:
--------------------------------------------------------------------------------
1 | from gevent.resolver.thread import *
2 | from gevent.resolver.thread import __all__ as __all__
3 | 


--------------------------------------------------------------------------------
/stubs/gevent/gevent/time.pyi:
--------------------------------------------------------------------------------
1 | from gevent.hub import sleep as sleep
2 | 
3 | __all__ = ["sleep"]
4 | 


--------------------------------------------------------------------------------
/stubs/gevent/gevent/win32util.pyi:
--------------------------------------------------------------------------------
1 | from collections.abc import Callable
2 | 
3 | formatError: Callable[[object], str]
4 | 
5 | __all__ = ["formatError"]
6 | 


--------------------------------------------------------------------------------
/stubs/google-cloud-ndb/google/cloud/ndb/_batch.pyi:
--------------------------------------------------------------------------------
1 | from _typeshed import Incomplete
2 | 
3 | def get_batch(batch_cls, options: Incomplete | None = ...): ...
4 | 


--------------------------------------------------------------------------------
/stubs/google-cloud-ndb/google/cloud/ndb/_datastore_api.pyi:
--------------------------------------------------------------------------------
1 | from typing import Literal
2 | 
3 | EVENTUAL: Literal[2]
4 | EVENTUAL_CONSISTENCY: Literal[2]
5 | STRONG: Literal[1]
6 | 


--------------------------------------------------------------------------------
/stubs/google-cloud-ndb/google/cloud/ndb/django_middleware.pyi:
--------------------------------------------------------------------------------
1 | class NdbDjangoMiddleware:
2 |     def __init__(self, *args, **kwargs) -> None: ...
3 | 


--------------------------------------------------------------------------------
/stubs/google-cloud-ndb/google/cloud/ndb/version.pyi:
--------------------------------------------------------------------------------
1 | __version__: str
2 | 


--------------------------------------------------------------------------------
/stubs/greenlet/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.2.*"
2 | upstream_repository = "https://github.com/python-greenlet/greenlet"
3 | 


--------------------------------------------------------------------------------
/stubs/grpcio-channelz/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.*"
2 | upstream_repository = "https://github.com/grpc/grpc"
3 | requires = ["types-grpcio", "types-protobuf"]
4 | 


--------------------------------------------------------------------------------
/stubs/grpcio-channelz/grpc_channelz/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/grpcio-channelz/grpc_channelz/__init__.pyi


--------------------------------------------------------------------------------
/stubs/grpcio-health-checking/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.*"
2 | upstream_repository = "https://github.com/grpc/grpc"
3 | requires = ["types-grpcio", "types-protobuf"]
4 | 


--------------------------------------------------------------------------------
/stubs/grpcio-reflection/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.*"
2 | upstream_repository = "https://github.com/grpc/grpc"
3 | requires = ["types-grpcio", "types-protobuf"]
4 | 


--------------------------------------------------------------------------------
/stubs/grpcio-status/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.*"
2 | upstream_repository = "https://github.com/grpc/grpc"
3 | requires = ["types-grpcio"]
4 | 


--------------------------------------------------------------------------------
/stubs/grpcio-status/grpc_status/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/grpcio-status/grpc_status/__init__.pyi


--------------------------------------------------------------------------------
/stubs/grpcio-status/grpc_status/_async.pyi:
--------------------------------------------------------------------------------
1 | from _typeshed import Incomplete
2 | 
3 | async def from_call(call) -> Incomplete | None: ...
4 | 
5 | __all__ = ["from_call"]
6 | 


--------------------------------------------------------------------------------
/stubs/grpcio/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.*"
2 | upstream_repository = "https://github.com/grpc/grpc"
3 | partial_stub = true
4 | 
5 | [tool.stubtest]
6 | ignore_missing_stub = true
7 | 


--------------------------------------------------------------------------------
/stubs/hdbcli/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.24.*"
2 | # upstream_repository = closed-source
3 | 


--------------------------------------------------------------------------------
/stubs/hdbcli/hdbcli/__init__.pyi:
--------------------------------------------------------------------------------
1 | from . import dbapi as dbapi
2 | 
3 | __version__: str
4 | 
5 | __all__ = ["dbapi"]
6 | 


--------------------------------------------------------------------------------
/stubs/html5lib/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.1.*"
2 | upstream_repository = "https://github.com/html5lib/html5lib-python"
3 | 
4 | [tool.stubtest]
5 | extras = ["all"]
6 | 


--------------------------------------------------------------------------------
/stubs/html5lib/html5lib/_trie/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .py import Trie as Trie
2 | 
3 | __all__ = ["Trie"]
4 | 


--------------------------------------------------------------------------------
/stubs/html5lib/html5lib/filters/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/html5lib/html5lib/filters/__init__.pyi


--------------------------------------------------------------------------------
/stubs/html5lib/html5lib/filters/alphabeticalattributes.pyi:
--------------------------------------------------------------------------------
1 | from . import base
2 | 
3 | class Filter(base.Filter):
4 |     def __iter__(self): ...
5 | 


--------------------------------------------------------------------------------
/stubs/html5lib/html5lib/treeadapters/__init__.pyi:
--------------------------------------------------------------------------------
1 | from . import genshi as genshi, sax as sax
2 | 
3 | __all__ = ["sax", "genshi"]
4 | 


--------------------------------------------------------------------------------
/stubs/html5lib/html5lib/treeadapters/genshi.pyi:
--------------------------------------------------------------------------------
1 | def to_genshi(walker) -> None: ...
2 | 


--------------------------------------------------------------------------------
/stubs/httplib2/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # __getattr__() replaced with actual field in stub
2 | httplib2.Response.dict
3 | 


--------------------------------------------------------------------------------
/stubs/httplib2/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.22.*"
2 | upstream_repository = "https://github.com/httplib2/httplib2"
3 | 


--------------------------------------------------------------------------------
/stubs/hvac/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.3.*"
2 | upstream_repository = "https://github.com/hvac/hvac"
3 | requires = ["types-requests"]
4 | 


--------------------------------------------------------------------------------
/stubs/hvac/hvac/__init__.pyi:
--------------------------------------------------------------------------------
1 | from hvac.v1 import Client as Client
2 | 
3 | __all__ = ("Client",)
4 | 


--------------------------------------------------------------------------------
/stubs/hvac/hvac/constants/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/hvac/hvac/constants/__init__.pyi


--------------------------------------------------------------------------------
/stubs/hvac/hvac/constants/approle.pyi:
--------------------------------------------------------------------------------
1 | from collections.abc import Iterable
2 | 
3 | DEFAULT_MOUNT_POINT: str
4 | ALLOWED_TOKEN_TYPES: Iterable[str]
5 | 


--------------------------------------------------------------------------------
/stubs/hvac/hvac/constants/azure.pyi:
--------------------------------------------------------------------------------
1 | from collections.abc import Iterable
2 | 
3 | VALID_ENVIRONMENTS: Iterable[str]
4 | 


--------------------------------------------------------------------------------
/stubs/ibm-db/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.2.6"
2 | upstream_repository = "https://github.com/ibmdb/python-ibmdb"
3 | 


--------------------------------------------------------------------------------
/stubs/icalendar/icalendar/timezone/windows_to_olson.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | WINDOWS_TO_OLSON: Final[dict[str, str]]
4 | 


--------------------------------------------------------------------------------
/stubs/inifile/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.4.*"
2 | upstream_repository = "https://github.com/mitsuhiko/python-inifile"
3 | 


--------------------------------------------------------------------------------
/stubs/jmespath/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.0.*"
2 | upstream_repository = "https://github.com/jmespath/jmespath.py"
3 | 


--------------------------------------------------------------------------------
/stubs/jsonnet/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.21.*"
2 | upstream_repository = "https://github.com/google/jsonnet"
3 | 


--------------------------------------------------------------------------------
/stubs/jwcrypto/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.5.*"
2 | upstream_repository = "https://github.com/latchset/jwcrypto"
3 | requires = ["cryptography"]
4 | 


--------------------------------------------------------------------------------
/stubs/jwcrypto/jwcrypto/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/jwcrypto/jwcrypto/__init__.pyi


--------------------------------------------------------------------------------
/stubs/keyboard/@tests/stubtest_allowlist_darwin.txt:
--------------------------------------------------------------------------------
1 | # Defaults don't align with possible values
2 | keyboard.mouse.on_button
3 | keyboard.mouse.wait
4 | 


--------------------------------------------------------------------------------
/stubs/keyboard/@tests/stubtest_allowlist_linux.txt:
--------------------------------------------------------------------------------
1 | # Defaults don't align with possible values
2 | keyboard.mouse.on_button
3 | keyboard.mouse.wait
4 | 


--------------------------------------------------------------------------------
/stubs/ldap3/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | ldap3.utils.ordDict # file is available only in Python 2.6
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/core/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/core/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/extend/microsoft/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/extend/microsoft/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/extend/microsoft/addMembersToGroups.pyi:
--------------------------------------------------------------------------------
1 | def ad_add_members_to_groups(connection, members_dn, groups_dn, fix: bool = True, raise_error: bool = False): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/extend/microsoft/modifyPassword.pyi:
--------------------------------------------------------------------------------
1 | def ad_modify_password(connection, user_dn, new_password, old_password, controls=None): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/extend/microsoft/removeMembersFromGroups.pyi:
--------------------------------------------------------------------------------
1 | def ad_remove_members_from_groups(connection, members_dn, groups_dn, fix, raise_error: bool = False): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/extend/microsoft/unlockAccount.pyi:
--------------------------------------------------------------------------------
1 | def ad_unlock_account(connection, user_dn, controls=None): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/extend/novell/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/extend/novell/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/extend/novell/addMembersToGroups.pyi:
--------------------------------------------------------------------------------
1 | def edir_add_members_to_groups(connection, members_dn, groups_dn, fix, transaction): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/extend/novell/checkGroupsMemberships.pyi:
--------------------------------------------------------------------------------
1 | def edir_check_groups_memberships(connection, members_dn, groups_dn, fix, transaction): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/extend/novell/removeMembersFromGroups.pyi:
--------------------------------------------------------------------------------
1 | def edir_remove_members_from_groups(connection, members_dn, groups_dn, fix, transaction): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/extend/standard/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/extend/standard/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/operation/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/operation/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/operation/abandon.pyi:
--------------------------------------------------------------------------------
1 | def abandon_operation(msg_id): ...
2 | def abandon_request_to_dict(request): ...
3 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/operation/delete.pyi:
--------------------------------------------------------------------------------
1 | def delete_operation(dn): ...
2 | def delete_request_to_dict(request): ...
3 | def delete_response_to_dict(response): ...
4 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/operation/unbind.pyi:
--------------------------------------------------------------------------------
1 | def unbind_operation(): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/protocol/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/controls.pyi:
--------------------------------------------------------------------------------
1 | def build_control(oid, criticality, value, encode_control_value: bool = True): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/formatters/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/protocol/formatters/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/rfc4527.pyi:
--------------------------------------------------------------------------------
1 | def pre_read_control(attributes, criticality: bool = False): ...
2 | def post_read_control(attributes, criticality: bool = False): ...
3 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/sasl/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/protocol/sasl/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/sasl/external.pyi:
--------------------------------------------------------------------------------
1 | def sasl_external(connection, controls): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/sasl/plain.pyi:
--------------------------------------------------------------------------------
1 | def sasl_plain(connection, controls): ...
2 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/schemas/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/protocol/schemas/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/schemas/ad2012R2.pyi:
--------------------------------------------------------------------------------
1 | ad_2012_r2_schema: str
2 | ad_2012_r2_dsa_info: str
3 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/schemas/ds389.pyi:
--------------------------------------------------------------------------------
1 | ds389_1_3_3_schema: str
2 | ds389_1_3_3_dsa_info: str
3 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/schemas/edir888.pyi:
--------------------------------------------------------------------------------
1 | edir_8_8_8_schema: str
2 | edir_8_8_8_dsa_info: str
3 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/schemas/edir914.pyi:
--------------------------------------------------------------------------------
1 | edir_9_1_4_schema: str
2 | edir_9_1_4_dsa_info: str
3 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/protocol/schemas/slapd24.pyi:
--------------------------------------------------------------------------------
1 | slapd_2_4_schema: str
2 | slapd_2_4_dsa_info: str
3 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/strategy/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/strategy/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/utils/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/ldap3/ldap3/utils/__init__.pyi


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/utils/port_validators.pyi:
--------------------------------------------------------------------------------
1 | def check_port(port): ...
2 | def check_port_and_port_list(port, port_list): ...
3 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/utils/repr.pyi:
--------------------------------------------------------------------------------
1 | from typing import Any
2 | 
3 | repr_encoding: Any
4 | 
5 | def to_stdout_encoding(value): ...
6 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/utils/tls_backport.pyi:
--------------------------------------------------------------------------------
1 | class CertificateError(ValueError): ...
2 | 
3 | def match_hostname(cert, hostname): ...
4 | 


--------------------------------------------------------------------------------
/stubs/ldap3/ldap3/utils/uri.pyi:
--------------------------------------------------------------------------------
1 | def parse_uri(uri): ...
2 | 


--------------------------------------------------------------------------------
/stubs/libsass/sassutils/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/libsass/sassutils/__init__.pyi


--------------------------------------------------------------------------------
/stubs/lupa/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.5.*"
2 | upstream_repository = "https://github.com/scoder/lupa"
3 | 


--------------------------------------------------------------------------------
/stubs/lupa/lupa/version.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/lzstring/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.0.*"
2 | upstream_repository = "https://github.com/gkovacs/lz-string-python"
3 | 


--------------------------------------------------------------------------------
/stubs/m3u8/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "6.0.*"
2 | upstream_repository = "https://github.com/globocom/m3u8"
3 | 


--------------------------------------------------------------------------------
/stubs/mock/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "5.2.*"
2 | upstream_repository = "https://github.com/testing-cabal/mock"
3 | 


--------------------------------------------------------------------------------
/stubs/mypy-extensions/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.1.*"
2 | upstream_repository = "https://github.com/python/mypy_extensions"
3 | 


--------------------------------------------------------------------------------
/stubs/mysqlclient/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | MySQLdb.Connection
2 | 


--------------------------------------------------------------------------------
/stubs/mysqlclient/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.2.*"
2 | upstream_repository = "https://github.com/PyMySQL/mysqlclient"
3 | 
4 | [tool.stubtest]
5 | apt_dependencies = ["libmariadb-dev"]
6 | 


--------------------------------------------------------------------------------
/stubs/mysqlclient/MySQLdb/release.pyi:
--------------------------------------------------------------------------------
1 | version_info: tuple[int, int, int, str, int]
2 | 


--------------------------------------------------------------------------------
/stubs/nanoid/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.0.0"
2 | upstream_repository = "https://github.com/puyuan/py-nanoid"
3 | 


--------------------------------------------------------------------------------
/stubs/nanoid/nanoid/algorithm.pyi:
--------------------------------------------------------------------------------
1 | def algorithm_generate(random_bytes: int) -> bytearray: ...
2 | 


--------------------------------------------------------------------------------
/stubs/nanoid/nanoid/resources.pyi:
--------------------------------------------------------------------------------
1 | alphabet: str
2 | size: int
3 | 


--------------------------------------------------------------------------------
/stubs/nanoleafapi/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | nanoleafapi.test_nanoleaf
2 | 


--------------------------------------------------------------------------------
/stubs/nanoleafapi/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.1.*"
2 | upstream_repository = "https://github.com/MylesMor/nanoleafapi"
3 | 


--------------------------------------------------------------------------------
/stubs/nanoleafapi/nanoleafapi/discovery.pyi:
--------------------------------------------------------------------------------
1 | def discover_devices(timeout: int = 30, debug: bool = False) -> dict[str | None, str]: ...
2 | 


--------------------------------------------------------------------------------
/stubs/netaddr/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.3.*"
2 | upstream_repository = "https://github.com/drkjam/netaddr"
3 | 


--------------------------------------------------------------------------------
/stubs/netaddr/netaddr/compat.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/netaddr/netaddr/compat.pyi


--------------------------------------------------------------------------------
/stubs/netaddr/netaddr/contrib/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/netaddr/netaddr/contrib/__init__.pyi


--------------------------------------------------------------------------------
/stubs/netifaces/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.11.*"
2 | upstream_repository = "https://github.com/al45tair/netifaces"
3 | 


--------------------------------------------------------------------------------
/stubs/networkx/networkx/algorithms/link_analysis/__init__.pyi:
--------------------------------------------------------------------------------
1 | from networkx.algorithms.link_analysis.hits_alg import *
2 | from networkx.algorithms.link_analysis.pagerank_alg import *
3 | 


--------------------------------------------------------------------------------
/stubs/oauthlib/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.3.*"
2 | upstream_repository = "https://github.com/oauthlib/oauthlib"
3 | 


--------------------------------------------------------------------------------
/stubs/oauthlib/oauthlib/oauth2/rfc8628/clients/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .device import DeviceClient as DeviceClient
2 | 


--------------------------------------------------------------------------------
/stubs/oauthlib/oauthlib/oauth2/rfc8628/grant_types/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .device_code import DeviceCodeGrant as DeviceCodeGrant
2 | 


--------------------------------------------------------------------------------
/stubs/oauthlib/oauthlib/openid/connect/core/endpoints/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .pre_configured import Server as Server
2 | from .userinfo import UserInfoEndpoint as UserInfoEndpoint
3 | 


--------------------------------------------------------------------------------
/stubs/objgraph/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.6.*"
2 | upstream_repository = "https://github.com/mgedmin/objgraph"
3 | 


--------------------------------------------------------------------------------
/stubs/olefile/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | olefile.olefile2.*
2 | 


--------------------------------------------------------------------------------
/stubs/olefile/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.47.*"
2 | upstream_repository = "https://github.com/decalage2/olefile"
3 | 


--------------------------------------------------------------------------------
/stubs/olefile/olefile/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .olefile import *
2 | from .olefile import __all__ as __all__, __author__ as __author__, __date__ as __date__, __version__ as __version__
3 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.1.5"
2 | upstream_repository = "https://foss.heptapod.net/openpyxl/openpyxl"
3 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/chart/reader.pyi:
--------------------------------------------------------------------------------
1 | def read_chart(chartspace): ...
2 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/chartsheet/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .chartsheet import Chartsheet as Chartsheet
2 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/comments/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .comments import Comment as Comment
2 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/compat/abc.pyi:
--------------------------------------------------------------------------------
1 | from abc import ABC as ABC
2 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/compat/product.pyi:
--------------------------------------------------------------------------------
1 | def product(sequence): ...
2 | 
3 | prod = product
4 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/compat/strings.pyi:
--------------------------------------------------------------------------------
1 | import sys
2 | from typing import Final
3 | 
4 | VER: Final[sys._version_info]
5 | 
6 | def safe_string(value: object) -> str: ...
7 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/drawing/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .drawing import Drawing as Drawing
2 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/formatting/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .rule import Rule as Rule
2 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/formula/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .tokenizer import Tokenizer as Tokenizer
2 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/packaging/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/openpyxl/openpyxl/packaging/__init__.pyi


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/pivot/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/openpyxl/openpyxl/pivot/__init__.pyi


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/reader/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/openpyxl/openpyxl/reader/__init__.pyi


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/utils/escape.pyi:
--------------------------------------------------------------------------------
1 | def escape(value: str) -> str: ...
2 | def unescape(value: str) -> str: ...
3 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/utils/formulas.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | FORMULAE: Final[frozenset[str]]
4 | 
5 | def validate(formula: str) -> None: ...
6 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/utils/protection.pyi:
--------------------------------------------------------------------------------
1 | def hash_password(plaintext_password: str = "") -> str: ...
2 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/workbook/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .workbook import Workbook as Workbook
2 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/workbook/external_link/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .external import ExternalLink as ExternalLink
2 | 


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/worksheet/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/openpyxl/openpyxl/worksheet/__init__.pyi


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/writer/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/openpyxl/openpyxl/writer/__init__.pyi


--------------------------------------------------------------------------------
/stubs/openpyxl/openpyxl/writer/theme.pyi:
--------------------------------------------------------------------------------
1 | theme_xml: str
2 | 
3 | def write_theme(): ...
4 | 


--------------------------------------------------------------------------------
/stubs/opentracing/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.4.*"
2 | upstream_repository = "https://github.com/opentracing/opentracing-python"
3 | 


--------------------------------------------------------------------------------
/stubs/opentracing/opentracing/ext/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/opentracing/opentracing/ext/__init__.pyi


--------------------------------------------------------------------------------
/stubs/opentracing/opentracing/ext/tags.pyi:
--------------------------------------------------------------------------------
1 | from ..tags import *
2 | 


--------------------------------------------------------------------------------
/stubs/opentracing/opentracing/harness/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/opentracing/opentracing/harness/__init__.pyi


--------------------------------------------------------------------------------
/stubs/opentracing/opentracing/mocktracer/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .propagator import Propagator as Propagator
2 | from .tracer import MockTracer as MockTracer
3 | 


--------------------------------------------------------------------------------
/stubs/opentracing/opentracing/scope_managers/constants.pyi:
--------------------------------------------------------------------------------
1 | ACTIVE_ATTR: str
2 | 


--------------------------------------------------------------------------------
/stubs/paramiko/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | paramiko.util.SupportsClose
2 | 


--------------------------------------------------------------------------------
/stubs/paramiko/@tests/stubtest_allowlist_darwin.txt:
--------------------------------------------------------------------------------
1 | paramiko._winapi
2 | paramiko.win_openssh.*
3 | paramiko.win_pageant
4 | 


--------------------------------------------------------------------------------
/stubs/paramiko/@tests/stubtest_allowlist_linux.txt:
--------------------------------------------------------------------------------
1 | paramiko._winapi
2 | paramiko.win_openssh.*
3 | paramiko.win_pageant
4 | 


--------------------------------------------------------------------------------
/stubs/paramiko/@tests/stubtest_allowlist_win32.txt:
--------------------------------------------------------------------------------
1 | # Type-checkers don't support architecture checks. So we have to Union
2 | paramiko.win_pageant.ULONG_PTR
3 | 


--------------------------------------------------------------------------------
/stubs/paramiko/paramiko/_version.pyi:
--------------------------------------------------------------------------------
1 | __version_info__: tuple[int, int, int]
2 | __version__: str
3 | 


--------------------------------------------------------------------------------
/stubs/parsimonious/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.10.*"
2 | upstream_repository = "https://github.com/erikrose/parsimonious"
3 | 


--------------------------------------------------------------------------------
/stubs/passlib/@tests/stubtest_allowlist_win32.txt:
--------------------------------------------------------------------------------
1 | # Only exists if crypt is present
2 | passlib.hosts.host_context
3 | 


--------------------------------------------------------------------------------
/stubs/passlib/@tests/test_cases/check_bcrypt_using_rounds.py:
--------------------------------------------------------------------------------
1 | from passlib.hash import bcrypt
2 | 
3 | bcrypt.using(rounds=13).hash("password")
4 | 


--------------------------------------------------------------------------------
/stubs/passlib/passlib/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/passlib/passlib/crypto/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/passlib/passlib/crypto/__init__.pyi


--------------------------------------------------------------------------------
/stubs/passlib/passlib/crypto/scrypt/_gen_files.pyi:
--------------------------------------------------------------------------------
1 | def main() -> None: ...
2 | 


--------------------------------------------------------------------------------
/stubs/passlib/passlib/crypto/scrypt/_salsa.pyi:
--------------------------------------------------------------------------------
1 | def salsa20(input): ...
2 | 


--------------------------------------------------------------------------------
/stubs/passlib/passlib/ext/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/passlib/passlib/ext/__init__.pyi


--------------------------------------------------------------------------------
/stubs/passlib/passlib/ext/django/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/passlib/passlib/ext/django/__init__.pyi


--------------------------------------------------------------------------------
/stubs/passlib/passlib/ext/django/models.pyi:
--------------------------------------------------------------------------------
1 | from typing import Any
2 | 
3 | password_context: Any
4 | 


--------------------------------------------------------------------------------
/stubs/passlib/passlib/handlers/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/passlib/passlib/handlers/__init__.pyi


--------------------------------------------------------------------------------
/stubs/passlib/passlib/utils/md4.pyi:
--------------------------------------------------------------------------------
1 | from typing import Any
2 | 
3 | md4: Any
4 | 
5 | __all__ = ["md4"]
6 | 


--------------------------------------------------------------------------------
/stubs/passpy/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | passpy.__main__
2 | 
3 | # Uses `git` dependency:
4 | passpy.git
5 | # Uses `gpg` dependency:
6 | passpy.gpg
7 | 


--------------------------------------------------------------------------------
/stubs/passpy/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.0.*"
2 | upstream_repository = "https://github.com/bfrascher/passpy"
3 | 


--------------------------------------------------------------------------------
/stubs/passpy/passpy/exceptions.pyi:
--------------------------------------------------------------------------------
1 | class StoreNotInitialisedError(FileNotFoundError): ...
2 | class RecursiveCopyMoveError(OSError): ...
3 | 


--------------------------------------------------------------------------------
/stubs/peewee/playhouse/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/peewee/playhouse/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pep8-naming/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.15.*"
2 | upstream_repository = "https://github.com/PyCQA/pep8-naming"
3 | 


--------------------------------------------------------------------------------
/stubs/pexpect/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | # python2 shim
2 | pexpect.utils.InterruptedError
3 | 


--------------------------------------------------------------------------------
/stubs/pexpect/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "4.9.*"
2 | upstream_repository = "https://github.com/pexpect/pexpect"
3 | 


--------------------------------------------------------------------------------
/stubs/pika/pika/adapters/utils/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pika/pika/adapters/utils/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pika/pika/delivery_mode.pyi:
--------------------------------------------------------------------------------
1 | from enum import Enum
2 | 
3 | class DeliveryMode(Enum):
4 |     Transient = 1
5 |     Persistent = 2
6 | 


--------------------------------------------------------------------------------
/stubs/polib/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.2.*"
2 | upstream_repository = "https://github.com/izimobil/polib"
3 | 


--------------------------------------------------------------------------------
/stubs/portpicker/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.6.*"
2 | upstream_repository = "https://github.com/google/python_portpicker"
3 | 


--------------------------------------------------------------------------------
/stubs/protobuf/google/protobuf/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/protobuf/google/protobuf/internal/api_implementation.pyi:
--------------------------------------------------------------------------------
1 | def Type() -> str: ...
2 | def Version() -> int: ...
3 | def IsPythonDefaultSerializationDeterministic() -> bool: ...
4 | 


--------------------------------------------------------------------------------
/stubs/protobuf/google/protobuf/reflection.pyi:
--------------------------------------------------------------------------------
1 | class GeneratedProtocolMessageType(type):
2 |     def __new__(cls, name, bases, dictionary): ...
3 | 


--------------------------------------------------------------------------------
/stubs/protobuf/google/protobuf/util/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/protobuf/google/protobuf/util/__init__.pyi


--------------------------------------------------------------------------------
/stubs/psutil/@tests/stubtest_allowlist_darwin.txt:
--------------------------------------------------------------------------------
1 | psutil._pslinux
2 | psutil._psutil_linux
3 | psutil._psutil_windows
4 | psutil._pswindows
5 | 


--------------------------------------------------------------------------------
/stubs/psutil/@tests/stubtest_allowlist_linux.txt:
--------------------------------------------------------------------------------
1 | psutil._psosx
2 | psutil._psutil_windows
3 | psutil._psutil_osx
4 | psutil._pswindows
5 | 


--------------------------------------------------------------------------------
/stubs/psutil/@tests/stubtest_allowlist_win32.txt:
--------------------------------------------------------------------------------
1 | psutil._pslinux
2 | psutil._psosx
3 | 
4 | psutil._psutil_linux
5 | psutil._psutil_osx
6 | psutil._psutil_posix
7 | 


--------------------------------------------------------------------------------
/stubs/psutil/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "7.0.*"
2 | upstream_repository = "https://github.com/giampaolo/psutil"
3 | 
4 | [tool.stubtest]
5 | platforms = ["darwin", "linux", "win32"]
6 | 


--------------------------------------------------------------------------------
/stubs/psycopg2/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "~= 2.9.10"
2 | upstream_repository = "https://github.com/psycopg/psycopg2"
3 | partial_stub = false
4 | 


--------------------------------------------------------------------------------
/stubs/pyRFC3339/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "~=2.0.1"
2 | upstream_repository = "https://github.com/kurtraschke/pyRFC3339"
3 | 


--------------------------------------------------------------------------------
/stubs/pyRFC3339/pyrfc3339/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .generator import generate as generate
2 | from .parser import parse as parse
3 | 
4 | __all__ = ["generate", "parse"]
5 | 


--------------------------------------------------------------------------------
/stubs/pyRFC3339/pyrfc3339/parser.pyi:
--------------------------------------------------------------------------------
1 | from datetime import datetime
2 | 
3 | def parse(timestamp: str, utc: bool = False, produce_naive: bool = False) -> datetime: ...
4 | 


--------------------------------------------------------------------------------
/stubs/pyRFC3339/pyrfc3339/utils.pyi:
--------------------------------------------------------------------------------
1 | def format_timezone(utcoffset: int) -> str: ...
2 | 


--------------------------------------------------------------------------------
/stubs/pyasn1/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.6.*"
2 | upstream_repository = "https://github.com/pyasn1/pyasn1"
3 | 


--------------------------------------------------------------------------------
/stubs/pyasn1/pyasn1/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/pyasn1/pyasn1/codec/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyasn1/pyasn1/codec/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyasn1/pyasn1/codec/ber/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyasn1/pyasn1/codec/ber/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyasn1/pyasn1/codec/cer/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyasn1/pyasn1/codec/cer/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyasn1/pyasn1/codec/der/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyasn1/pyasn1/codec/der/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyasn1/pyasn1/codec/native/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyasn1/pyasn1/codec/native/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyasn1/pyasn1/compat/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyasn1/pyasn1/compat/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyasn1/pyasn1/compat/integer.pyi:
--------------------------------------------------------------------------------
1 | def to_bytes(value: int, signed: bool = False, length: int = 0) -> bytes: ...
2 | 


--------------------------------------------------------------------------------
/stubs/pyasn1/pyasn1/type/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyasn1/pyasn1/type/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyasn1/pyasn1/type/error.pyi:
--------------------------------------------------------------------------------
1 | from pyasn1.error import PyAsn1Error
2 | 
3 | class ValueConstraintError(PyAsn1Error): ...
4 | 


--------------------------------------------------------------------------------
/stubs/pycocotools/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.0.*"
2 | upstream_repository = "https://github.com/ppwwyyxx/cocoapi"
3 | requires = ["numpy>=2.0.0rc1"]
4 | 


--------------------------------------------------------------------------------
/stubs/pycurl/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "7.45.6"
2 | upstream_repository = "https://github.com/pycurl/pycurl"
3 | 
4 | [tool.stubtest]
5 | platforms = ["darwin", "linux", "win32"]
6 | 


--------------------------------------------------------------------------------
/stubs/pyfarmhash/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.4.*"
2 | upstream_repository = "https://github.com/veelion/python-farmhash"
3 | 


--------------------------------------------------------------------------------
/stubs/pyflakes/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.4.*"
2 | upstream_repository = "https://github.com/PyCQA/pyflakes"
3 | 


--------------------------------------------------------------------------------
/stubs/pyflakes/pyflakes/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/pyflakes/pyflakes/__main__.pyi:
--------------------------------------------------------------------------------
1 | from pyflakes.api import main as main
2 | 


--------------------------------------------------------------------------------
/stubs/pyflakes/pyflakes/scripts/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyflakes/pyflakes/scripts/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyinstaller/@tests/stubtest_allowlist_darwin.txt:
--------------------------------------------------------------------------------
1 | # Module can't be imported at runtime on non-win32 platforms
2 | PyInstaller.utils.win32.versioninfo
3 | 


--------------------------------------------------------------------------------
/stubs/pyinstaller/@tests/stubtest_allowlist_linux.txt:
--------------------------------------------------------------------------------
1 | # Module can't be imported at runtime on non-win32 platforms
2 | PyInstaller.utils.win32.versioninfo
3 | 


--------------------------------------------------------------------------------
/stubs/pyinstaller/@tests/stubtest_allowlist_win32.txt:
--------------------------------------------------------------------------------
1 | PyInstaller\.utils\.win32\.versioninfo\.\w+?
2 | 


--------------------------------------------------------------------------------
/stubs/pyinstaller/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "6.14.*"
2 | upstream_repository = "https://github.com/pyinstaller/pyinstaller"
3 | 


--------------------------------------------------------------------------------
/stubs/pyinstaller/PyInstaller/depend/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyinstaller/PyInstaller/depend/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyinstaller/PyInstaller/lib/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyinstaller/PyInstaller/lib/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyinstaller/PyInstaller/utils/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyinstaller/PyInstaller/utils/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyjks/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "20.0.*"
2 | upstream_repository = "https://github.com/kurtbrose/pyjks"
3 | requires = ["types-pyasn1"]
4 | 


--------------------------------------------------------------------------------
/stubs/pynput/@tests/stubtest_allowlist_win32.txt:
--------------------------------------------------------------------------------
1 | # These __init__ methods have *args, **kwargs arguments on some platforms, but not others
2 | pynput.keyboard.Controller.__init__
3 | 


--------------------------------------------------------------------------------
/stubs/pynput/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "~=1.8.1"
2 | upstream_repository = "https://github.com/moses-palmer/pynput"
3 | 
4 | [tool.stubtest]
5 | platforms = ["darwin", "linux", "win32"]
6 | 


--------------------------------------------------------------------------------
/stubs/pynput/pynput/__init__.pyi:
--------------------------------------------------------------------------------
1 | from . import keyboard as keyboard, mouse as mouse
2 | 


--------------------------------------------------------------------------------
/stubs/pynput/pynput/_info.pyi:
--------------------------------------------------------------------------------
1 | __author__: str
2 | __version__: tuple[int, int, int]
3 | 


--------------------------------------------------------------------------------
/stubs/pynput/pynput/keyboard/_dummy.pyi:
--------------------------------------------------------------------------------
1 | from ._base import Controller as Controller, Key as Key, KeyCode as KeyCode, Listener as Listener
2 | 


--------------------------------------------------------------------------------
/stubs/pynput/pynput/mouse/_dummy.pyi:
--------------------------------------------------------------------------------
1 | from ._base import Button as Button, Controller as Controller, Listener as Listener
2 | 


--------------------------------------------------------------------------------
/stubs/pyperclip/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | pyperclip.__main__
2 | 


--------------------------------------------------------------------------------
/stubs/pyserial/serial/__main__.pyi:
--------------------------------------------------------------------------------
1 | from serial.tools import miniterm as miniterm
2 | 


--------------------------------------------------------------------------------
/stubs/pyserial/serial/tools/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyserial/serial/tools/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyserial/serial/urlhandler/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pyserial/serial/urlhandler/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pyserial/serial/urlhandler/protocol_alt.pyi:
--------------------------------------------------------------------------------
1 | from serial import Serial
2 | 
3 | def serial_class_for_url(url: str) -> tuple[str, Serial]: ...
4 | 


--------------------------------------------------------------------------------
/stubs/pyserial/serial/urlhandler/protocol_hwgrep.pyi:
--------------------------------------------------------------------------------
1 | import serial
2 | 
3 | class Serial(serial.Serial):
4 |     def from_url(self, url: str) -> str: ...
5 | 


--------------------------------------------------------------------------------
/stubs/pyserial/serial/urlhandler/protocol_rfc2217.pyi:
--------------------------------------------------------------------------------
1 | from serial.rfc2217 import Serial as Serial
2 | 


--------------------------------------------------------------------------------
/stubs/pysftp/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.2.*"
2 | upstream_repository = "https://bitbucket.org/dundeemt/pysftp"
3 | requires = ["types-paramiko"]
4 | 


--------------------------------------------------------------------------------
/stubs/pytest-lazy-fixture/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.6.*"
2 | upstream_repository = "https://github.com/tvorog/pytest-lazy-fixture"
3 | 


--------------------------------------------------------------------------------
/stubs/python-crontab/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.2.*"
2 | upstream_repository = "https://gitlab.com/doctormo/python-crontab"
3 | requires = ["types-croniter"]
4 | 


--------------------------------------------------------------------------------
/stubs/python-dateutil/@tests/stubtest_allowlist_darwin.txt:
--------------------------------------------------------------------------------
1 | # Cannot import these Windows packages at stubtest runtime:
2 | dateutil.tzwin
3 | dateutil.tz.win
4 | 


--------------------------------------------------------------------------------
/stubs/python-dateutil/@tests/stubtest_allowlist_linux.txt:
--------------------------------------------------------------------------------
1 | # Cannot import these Windows packages at stubtest runtime:
2 | dateutil.tzwin
3 | dateutil.tz.win
4 | 


--------------------------------------------------------------------------------
/stubs/python-dateutil/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.9.*"
2 | upstream_repository = "https://github.com/dateutil/dateutil"
3 | 


--------------------------------------------------------------------------------
/stubs/python-dateutil/dateutil/tzwin.pyi:
--------------------------------------------------------------------------------
1 | import sys
2 | 
3 | if sys.platform == "win32":
4 |     from .tz.win import tzres as tzres, tzwin as tzwin, tzwinlocal as tzwinlocal
5 | 


--------------------------------------------------------------------------------
/stubs/python-http-client/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | python_http_client.version_file
2 | 


--------------------------------------------------------------------------------
/stubs/python-http-client/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.3.7"
2 | upstream_repository = "https://github.com/sendgrid/python-http-client"
3 | 


--------------------------------------------------------------------------------
/stubs/python-jenkins/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.8.*"
2 | upstream_repository = "https://opendev.org/jjb/python-jenkins"
3 | requires = ["types-requests"]
4 | 


--------------------------------------------------------------------------------
/stubs/python-jenkins/jenkins/version.pyi:
--------------------------------------------------------------------------------
1 | from _typeshed import Incomplete
2 | 
3 | version_info: Incomplete  # pbr.version.VersionInfo
4 | 


--------------------------------------------------------------------------------
/stubs/python-nmap/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | nmap.test_nmap
2 | 


--------------------------------------------------------------------------------
/stubs/python-nmap/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.7.*"
2 | upstream_repository = "https://bitbucket.org/xael/python-nmap"
3 | 


--------------------------------------------------------------------------------
/stubs/python-nmap/nmap/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .nmap import *
2 | from .nmap import __author__ as __author__, __last_modification__ as __last_modification__, __version__ as __version__
3 | 


--------------------------------------------------------------------------------
/stubs/python-xlib/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.33.*"
2 | upstream_repository = "https://github.com/python-xlib/python-xlib"
3 | 


--------------------------------------------------------------------------------
/stubs/python-xlib/Xlib/support/__init__.pyi:
--------------------------------------------------------------------------------
1 | from Xlib.support import connect as connect, lock as lock
2 | 
3 | __all__ = ["lock", "connect"]
4 | 


--------------------------------------------------------------------------------
/stubs/pytz/pytz/tzfile.pyi:
--------------------------------------------------------------------------------
1 | from typing import IO
2 | 
3 | from pytz.tzinfo import DstTzInfo
4 | 
5 | def build_tzinfo(zone: str, fp: IO[bytes]) -> DstTzInfo: ...
6 | 


--------------------------------------------------------------------------------
/stubs/pywin32/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "310.*"
2 | upstream_repository = "https://github.com/mhammond/pywin32"
3 | 
4 | [tool.stubtest]
5 | platforms = ["win32"]
6 | 


--------------------------------------------------------------------------------
/stubs/pywin32/commctrl.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.commctrl import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/dde.pyi:
--------------------------------------------------------------------------------
1 | from pythonwin.dde import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/mmapfile.pyi:
--------------------------------------------------------------------------------
1 | from win32.mmapfile import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/mmsystem.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.mmsystem import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/ntsecuritycon.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.ntsecuritycon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/odbc.pyi:
--------------------------------------------------------------------------------
1 | from win32.odbc import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/perfmon.pyi:
--------------------------------------------------------------------------------
1 | from win32.perfmon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/pythonwin/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/pythonwin/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/pywintypes.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.pywintypes import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/regutil.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.regutil import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/servicemanager.pyi:
--------------------------------------------------------------------------------
1 | from win32.servicemanager import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/sspicon.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.sspicon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/timer.pyi:
--------------------------------------------------------------------------------
1 | from win32.timer import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win2kras.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win2kras import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32/lib/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32/lib/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32api.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32api import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32clipboard.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32clipboard import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/adsi/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.adsi import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/adsi/adsi.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.adsi.adsi import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/adsi/adsicon.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.adsi.adsicon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/authorization/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.authorization import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/authorization/authorization.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.authorization.authorization import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axcontrol/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axcontrol import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axcontrol/axcontrol.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axcontrol.axcontrol import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/adb.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug.adb import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/axdebug.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug.axdebug import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/codecontainer.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug.codecontainer import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/contexts.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug.contexts import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/debugger.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug.debugger import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/documents.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug.documents import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/expressions.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug.expressions import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/gateways.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug.gateways import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/stackframe.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug.stackframe import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axdebug/util.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axdebug.util import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axscript/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axscript import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axscript/asputil.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axscript.asputil import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axscript/axscript.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axscript.axscript import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axscript/client/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axscript.client import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axscript/client/debug.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axscript.client.debug import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axscript/client/error.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axscript.client.error import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axscript/client/framework.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axscript.client.framework import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axscript/server/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axscript.server import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/axscript/server/axsite.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.axscript.server.axsite import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/bits/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.bits import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/bits/bits.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.bits.bits import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/directsound/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.directsound import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/directsound/directsound.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.directsound.directsound import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/gen_py/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32com/gen_py/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/ifilter/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.ifilter import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/ifilter/ifilter.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.ifilter.ifilter import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/ifilter/ifiltercon.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.ifilter.ifiltercon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/internet/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.internet import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/internet/inetcon.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.internet.inetcon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/internet/internet.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.internet.internet import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/mapi/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.mapi import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/mapi/emsabtags.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.mapi.emsabtags import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/mapi/exchange.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.mapi.exchange import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/mapi/mapi.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.mapi.mapi import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/mapi/mapitags.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.mapi.mapitags import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/mapi/mapiutil.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.mapi.mapiutil import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/propsys/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.propsys import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/propsys/propsys.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.propsys.propsys import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/propsys/pscon.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.propsys.pscon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/server/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32com/server/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/shell/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.shell import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/shell/shell.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.shell.shell import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/shell/shellcon.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.shell.shellcon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/taskscheduler/__init__.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.taskscheduler import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/taskscheduler/taskscheduler.pyi:
--------------------------------------------------------------------------------
1 | from win32comext.taskscheduler.taskscheduler import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32com/util.pyi:
--------------------------------------------------------------------------------
1 | def IIDToInterfaceName(iid): ...
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/authorization/authorization.pyi:
--------------------------------------------------------------------------------
1 | import _win32typing
2 | 
3 | def EditSecurity(hwndOwner, psi): ...
4 | 
5 | IID_ISecurityInformation: _win32typing.PyIID
6 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/axcontrol/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/axcontrol/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/axdebug/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/axdebug/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/axscript/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/axscript/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/axscript/asputil.pyi:
--------------------------------------------------------------------------------
1 | def iif(cond, t, f): ...
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/bits/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/bits/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/directsound/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/directsound/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/ifilter/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/ifilter/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/internet/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/internet/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/mapi/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/mapi/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/propsys/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/propsys/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32comext/shell/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/pywin32/win32comext/shell/__init__.pyi


--------------------------------------------------------------------------------
/stubs/pywin32/win32con.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win32con import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32console.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32console import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32cred.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32cred import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32crypt.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32crypt import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32cryptcon.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win32cryptcon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32event.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32event import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32evtlog.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32evtlog import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32evtlogutil.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win32evtlogutil import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32file.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32file import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32gui.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32gui import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32gui_struct.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win32gui_struct import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32help.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32help import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32inet.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32inet import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32inetcon.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win32inetcon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32job.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32job import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32lz.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32lz import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32net.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32net import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32netcon.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win32netcon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32pdh.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32pdh import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32pdhquery.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win32pdhquery import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32pipe.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32pipe import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32print.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32print import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32process.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32process import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32profile.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32profile import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32ras.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32ras import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32security.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32security import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32service.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32service import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32serviceutil.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win32serviceutil import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32timezone.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win32timezone import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32trace.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32trace import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32transaction.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32transaction import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32ts.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32ts import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32ui.pyi:
--------------------------------------------------------------------------------
1 | from pythonwin.win32ui import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32uiole.pyi:
--------------------------------------------------------------------------------
1 | from pythonwin.win32uiole import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32verstamp.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.win32verstamp import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/win32wnet.pyi:
--------------------------------------------------------------------------------
1 | from win32.win32wnet import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/winerror.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.winerror import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/winioctlcon.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.winioctlcon import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/winnt.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.winnt import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/winperf.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.winperf import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/winxpgui.pyi:
--------------------------------------------------------------------------------
1 | from win32.winxpgui import *
2 | 


--------------------------------------------------------------------------------
/stubs/pywin32/winxptheme.pyi:
--------------------------------------------------------------------------------
1 | from win32.lib.winxptheme import *
2 | 


--------------------------------------------------------------------------------
/stubs/pyxdg/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.28.*"
2 | upstream_repository = "https://github.com/takluyver/pyxdg"
3 | 


--------------------------------------------------------------------------------
/stubs/pyxdg/xdg/util.pyi:
--------------------------------------------------------------------------------
1 | from shutil import which as which
2 | from typing import Literal
3 | 
4 | PY3: Literal[True]
5 | 
6 | def u(s: str) -> str: ...
7 | 


--------------------------------------------------------------------------------
/stubs/qrbill/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.1.*"
2 | upstream_repository = "https://github.com/claudep/swiss-qr-bill"
3 | requires = ["types-qrcode"]
4 | 


--------------------------------------------------------------------------------
/stubs/qrbill/qrbill/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .bill import QRBill as QRBill
2 | 


--------------------------------------------------------------------------------
/stubs/qrcode/qrcode/LUT.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | rsPoly_LUT: Final[dict[int, list[int]]]
4 | 


--------------------------------------------------------------------------------
/stubs/qrcode/qrcode/exceptions.pyi:
--------------------------------------------------------------------------------
1 | class DataOverflowError(Exception): ...
2 | 


--------------------------------------------------------------------------------
/stubs/qrcode/qrcode/image/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/qrcode/qrcode/image/__init__.pyi


--------------------------------------------------------------------------------
/stubs/qrcode/qrcode/image/styles/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/qrcode/qrcode/image/styles/__init__.pyi


--------------------------------------------------------------------------------
/stubs/qrcode/qrcode/release.pyi:
--------------------------------------------------------------------------------
1 | def update_manpage(data: dict[str, str]) -> None: ...
2 | 


--------------------------------------------------------------------------------
/stubs/ratelimit/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.2.*"
2 | upstream_repository = "https://github.com/tomasbasham/ratelimit"
3 | 


--------------------------------------------------------------------------------
/stubs/regex/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2024.11.6"
2 | upstream_repository = "https://github.com/mrabarnett/mrab-regex"
3 | 


--------------------------------------------------------------------------------
/stubs/regex/regex/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .regex import *
2 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/graphics/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/graphics/charts/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/graphics/samples/runall.pyi:
--------------------------------------------------------------------------------
1 | def moduleClasses(mod): ...
2 | def getclass(f): ...
3 | def run(format, VERBOSE: int = 0) -> None: ...
4 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/graphics/widgets/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/lib/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | RL_DEBUG: Final[bool]  # initalized based on env
5 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/lib/extformat.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 
5 | def dictformat(_format, L={}, G={}): ...
6 | def magicformat(format): ...
7 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/lib/geomutils.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 
5 | def normalizeTRBL(p): ...
6 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/lib/pygments2xpre.pyi:
--------------------------------------------------------------------------------
1 | def pygments2xpre(s, language: str = "python"): ...
2 | 
3 | __all__ = ("pygments2xpre",)
4 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/pdfbase/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/pdfgen/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/reportlab/reportlab/pdfgen/pdfgeom.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 
5 | def bezierArc(x1, y1, x2, y2, startAng: int = 0, extent: int = 90): ...
6 | 


--------------------------------------------------------------------------------
/stubs/requests-oauthlib/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.0.*"
2 | upstream_repository = "https://github.com/requests/requests-oauthlib"
3 | requires = ["types-oauthlib", "types-requests"]
4 | 


--------------------------------------------------------------------------------
/stubs/requests/requests/certs.pyi:
--------------------------------------------------------------------------------
1 | # no public data
2 | 


--------------------------------------------------------------------------------
/stubs/requests/requests/hooks.pyi:
--------------------------------------------------------------------------------
1 | from typing import Any
2 | 
3 | HOOKS: Any
4 | 
5 | def default_hooks(): ...
6 | def dispatch_hook(key, hooks, hook_data, **kwargs): ...
7 | 


--------------------------------------------------------------------------------
/stubs/requests/requests/status_codes.pyi:
--------------------------------------------------------------------------------
1 | from typing import Any
2 | 
3 | codes: Any
4 | 


--------------------------------------------------------------------------------
/stubs/retry/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | retry.compat
2 | retry.tests
3 | retry.tests.test_retry
4 | 


--------------------------------------------------------------------------------
/stubs/retry/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.9.*"
2 | upstream_repository = "https://github.com/invl/retry"
3 | 


--------------------------------------------------------------------------------
/stubs/retry/retry/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .api import retry as retry
2 | 
3 | __all__ = ["retry"]
4 | 


--------------------------------------------------------------------------------
/stubs/rfc3339-validator/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.1.*"
2 | upstream_repository = "https://github.com/naimetti/rfc3339-validator"
3 | 


--------------------------------------------------------------------------------
/stubs/seaborn/seaborn/_core/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/seaborn/seaborn/_core/__init__.pyi


--------------------------------------------------------------------------------
/stubs/seaborn/seaborn/_core/exceptions.pyi:
--------------------------------------------------------------------------------
1 | class PlotSpecError(RuntimeError): ...
2 | 


--------------------------------------------------------------------------------
/stubs/seaborn/seaborn/_marks/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/seaborn/seaborn/_marks/__init__.pyi


--------------------------------------------------------------------------------
/stubs/seaborn/seaborn/_stats/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/seaborn/seaborn/_stats/__init__.pyi


--------------------------------------------------------------------------------
/stubs/seaborn/seaborn/colors/__init__.pyi:
--------------------------------------------------------------------------------
1 | from .crayons import crayons as crayons
2 | from .xkcd_rgb import xkcd_rgb as xkcd_rgb
3 | 


--------------------------------------------------------------------------------
/stubs/seaborn/seaborn/colors/crayons.pyi:
--------------------------------------------------------------------------------
1 | crayons: dict[str, str]
2 | 


--------------------------------------------------------------------------------
/stubs/seaborn/seaborn/colors/xkcd_rgb.pyi:
--------------------------------------------------------------------------------
1 | xkcd_rgb: dict[str, str]
2 | 


--------------------------------------------------------------------------------
/stubs/seaborn/seaborn/external/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/seaborn/seaborn/external/__init__.pyi


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/_modified.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils._modified import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/_msvccompiler.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils._msvccompiler import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/archive_util.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.archive_util import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/cmd.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.cmd import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/bdist.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.bdist import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/bdist_rpm.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.bdist_rpm import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/build.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.build import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/build_clib.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.build_clib import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/build_ext.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.build_ext import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/build_py.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.build_py import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/install.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.install import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/install_data.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.install_data import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/install_lib.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.install_lib import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/install_scripts.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.install_scripts import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/command/sdist.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.command.sdist import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/compat/__init__.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.compat import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/compilers/C/base.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.compilers.C.base import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/compilers/C/errors.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.compilers.C.errors import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/compilers/C/msvc.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.compilers.C.msvc import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/compilers/C/unix.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.compilers.C.unix import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/dep_util.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.dep_util import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/dist.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.dist import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/errors.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.errors import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/extension.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.extension import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/filelist.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.filelist import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/spawn.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.spawn import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/sysconfig.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.sysconfig import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/unixccompiler.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.unixccompiler import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/distutils/util.pyi:
--------------------------------------------------------------------------------
1 | from setuptools._distutils.util import *
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/_distutils/__init__.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | 


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/_distutils/_msvccompiler.pyi:
--------------------------------------------------------------------------------
1 | from .compilers.C import msvc
2 | 
3 | __all__ = ["MSVCCompiler"]
4 | 
5 | MSVCCompiler = msvc.Compiler
6 | 


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/_distutils/dep_util.pyi:
--------------------------------------------------------------------------------
1 | from ._modified import newer as newer, newer_group as newer_group, newer_pairwise as newer_pairwise
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/_distutils/unixccompiler.pyi:
--------------------------------------------------------------------------------
1 | from .compilers.C import unix
2 | 
3 | UnixCCompiler = unix.Compiler
4 | 


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/command/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/setuptools/setuptools/command/__init__.pyi


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/command/saveopts.pyi:
--------------------------------------------------------------------------------
1 | from .setopt import option_base
2 | 
3 | class saveopts(option_base):
4 |     description: str
5 |     def run(self) -> None: ...
6 | 


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/launch.pyi:
--------------------------------------------------------------------------------
1 | def run() -> None: ...
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/logging.pyi:
--------------------------------------------------------------------------------
1 | def configure() -> None: ...
2 | def set_threshold(level: int) -> int: ...
3 | 


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/unicode_utils.pyi:
--------------------------------------------------------------------------------
1 | def decompose(path): ...
2 | def filesys_decode(path): ...
3 | def try_encode(string, enc): ...
4 | 


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/version.pyi:
--------------------------------------------------------------------------------
1 | __version__: str
2 | 


--------------------------------------------------------------------------------
/stubs/setuptools/setuptools/windows_support.pyi:
--------------------------------------------------------------------------------
1 | def windows_only(func): ...
2 | def hide_file(path: str) -> None: ...
3 | 


--------------------------------------------------------------------------------
/stubs/shapely/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | shapely\.conftest
2 | shapely\.tests.*
3 | 
4 | shapely\._typing  # stubs only module
5 | 


--------------------------------------------------------------------------------
/stubs/shapely/shapely/algorithms/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/shapely/shapely/algorithms/__init__.pyi


--------------------------------------------------------------------------------
/stubs/shapely/shapely/algorithms/cga.pyi:
--------------------------------------------------------------------------------
1 | import numpy as np
2 | 
3 | from ..geometry import LinearRing
4 | 
5 | def signed_area(ring: LinearRing) -> np.float64: ...
6 | 


--------------------------------------------------------------------------------
/stubs/shapely/shapely/algorithms/polylabel.pyi:
--------------------------------------------------------------------------------
1 | from ..geometry import Point, Polygon
2 | 
3 | def polylabel(polygon: Polygon, tolerance: float = 1.0) -> Point: ...
4 | 


--------------------------------------------------------------------------------
/stubs/shapely/shapely/geos.pyi:
--------------------------------------------------------------------------------
1 | geos_version_string: str
2 | geos_version: tuple[int, int, int]
3 | geos_capi_version: tuple[int, int, int]
4 | 


--------------------------------------------------------------------------------
/stubs/simplejson/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.20.*"
2 | upstream_repository = "https://github.com/simplejson/simplejson"
3 | 


--------------------------------------------------------------------------------
/stubs/simplejson/simplejson/raw_json.pyi:
--------------------------------------------------------------------------------
1 | class RawJSON:
2 |     encoded_json: str
3 |     def __init__(self, encoded_json: str) -> None: ...
4 | 


--------------------------------------------------------------------------------
/stubs/singledispatch/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "4.1.*"
2 | upstream_repository = "https://github.com/jaraco/singledispatch"
3 | 


--------------------------------------------------------------------------------
/stubs/six/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.17.*"
2 | upstream_repository = "https://github.com/benjaminp/six"
3 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/BaseHTTPServer.pyi:
--------------------------------------------------------------------------------
1 | from http.server import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/CGIHTTPServer.pyi:
--------------------------------------------------------------------------------
1 | from http.server import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/SimpleHTTPServer.pyi:
--------------------------------------------------------------------------------
1 | from http.server import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/_dummy_thread.pyi:
--------------------------------------------------------------------------------
1 | from _thread import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/_thread.pyi:
--------------------------------------------------------------------------------
1 | from _thread import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/cPickle.pyi:
--------------------------------------------------------------------------------
1 | from pickle import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/collections_abc.pyi:
--------------------------------------------------------------------------------
1 | from collections.abc import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/configparser.pyi:
--------------------------------------------------------------------------------
1 | # Error is not included in __all__ so export it explicitly
2 | from configparser import *
3 | from configparser import Error as Error
4 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/copyreg.pyi:
--------------------------------------------------------------------------------
1 | from copyreg import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/email_mime_base.pyi:
--------------------------------------------------------------------------------
1 | from email.mime.base import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/email_mime_multipart.pyi:
--------------------------------------------------------------------------------
1 | from email.mime.multipart import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/email_mime_nonmultipart.pyi:
--------------------------------------------------------------------------------
1 | from email.mime.nonmultipart import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/email_mime_text.pyi:
--------------------------------------------------------------------------------
1 | from email.mime.text import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/html_entities.pyi:
--------------------------------------------------------------------------------
1 | from html.entities import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/html_parser.pyi:
--------------------------------------------------------------------------------
1 | from html.parser import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/http_cookiejar.pyi:
--------------------------------------------------------------------------------
1 | from http.cookiejar import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/http_cookies.pyi:
--------------------------------------------------------------------------------
1 | # Morsel is not included in __all__ so export it explicitly
2 | from http.cookies import *
3 | from http.cookies import Morsel as Morsel
4 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/queue.pyi:
--------------------------------------------------------------------------------
1 | from queue import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/reprlib.pyi:
--------------------------------------------------------------------------------
1 | from reprlib import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/socketserver.pyi:
--------------------------------------------------------------------------------
1 | from socketserver import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/tkinter.pyi:
--------------------------------------------------------------------------------
1 | from tkinter import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/tkinter_commondialog.pyi:
--------------------------------------------------------------------------------
1 | from tkinter.commondialog import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/tkinter_constants.pyi:
--------------------------------------------------------------------------------
1 | from tkinter.constants import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/tkinter_dialog.pyi:
--------------------------------------------------------------------------------
1 | from tkinter.dialog import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/tkinter_filedialog.pyi:
--------------------------------------------------------------------------------
1 | from tkinter.filedialog import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/tkinter_tkfiledialog.pyi:
--------------------------------------------------------------------------------
1 | from tkinter.filedialog import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/tkinter_ttk.pyi:
--------------------------------------------------------------------------------
1 | from tkinter.ttk import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/urllib/__init__.pyi:
--------------------------------------------------------------------------------
1 | from six.moves.urllib import error as error, parse as parse, request as request, response as response, robotparser as robotparser
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/urllib/error.pyi:
--------------------------------------------------------------------------------
1 | from urllib.error import ContentTooShortError as ContentTooShortError, HTTPError as HTTPError, URLError as URLError
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/urllib/robotparser.pyi:
--------------------------------------------------------------------------------
1 | from urllib.robotparser import RobotFileParser as RobotFileParser
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/urllib_error.pyi:
--------------------------------------------------------------------------------
1 | from urllib.error import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/urllib_parse.pyi:
--------------------------------------------------------------------------------
1 | from urllib.parse import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/urllib_request.pyi:
--------------------------------------------------------------------------------
1 | from .urllib.request import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/urllib_response.pyi:
--------------------------------------------------------------------------------
1 | from .urllib.response import *
2 | 


--------------------------------------------------------------------------------
/stubs/six/six/moves/urllib_robotparser.pyi:
--------------------------------------------------------------------------------
1 | from urllib.robotparser import *
2 | 


--------------------------------------------------------------------------------
/stubs/slumber/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.7.*"
2 | upstream_repository = "https://github.com/samgiles/slumber"
3 | requires = ["types-requests"]
4 | 


--------------------------------------------------------------------------------
/stubs/str2bool/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.1"
2 | upstream_repository = "https://github.com/symonsoft/str2bool"
3 | 


--------------------------------------------------------------------------------
/stubs/tabulate/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.9.*"
2 | upstream_repository = "https://github.com/astanin/python-tabulate"
3 | 


--------------------------------------------------------------------------------
/stubs/tensorflow/tensorflow/distribute/coordinator.pyi:
--------------------------------------------------------------------------------
1 | from .experimental.coordinator import RemoteValue as RemoteValue
2 | 
3 | def __getattr__(name: str): ...  # incomplete module
4 | 


--------------------------------------------------------------------------------
/stubs/tensorflow/tensorflow/initializers.pyi:
--------------------------------------------------------------------------------
1 | from tensorflow.keras.initializers import *
2 | 


--------------------------------------------------------------------------------
/stubs/tensorflow/tensorflow/python/__init__.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/tensorflow/tensorflow/python/keras/__init__.pyi:
--------------------------------------------------------------------------------
1 | def __getattr__(name: str): ...  # incomplete module
2 | 


--------------------------------------------------------------------------------
/stubs/tensorflow/tensorflow/python/trackable/autotrackable.pyi:
--------------------------------------------------------------------------------
1 | from tensorflow.python.trackable.base import Trackable
2 | 
3 | class AutoTrackable(Trackable): ...
4 | 


--------------------------------------------------------------------------------
/stubs/tensorflow/tensorflow/python/training/tracking/autotrackable.pyi:
--------------------------------------------------------------------------------
1 | from _typeshed import Incomplete
2 | 
3 | AutoTrackable = Incomplete
4 | 


--------------------------------------------------------------------------------
/stubs/tensorflow/tensorflow/types/__init__.pyi:
--------------------------------------------------------------------------------
1 | from tensorflow.types import experimental as experimental
2 | 


--------------------------------------------------------------------------------
/stubs/toml/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | toml.decoder.basestring
2 | toml.decoder.unichr
3 | toml.decoder.unicode
4 | toml.encoder.unicode
5 | 


--------------------------------------------------------------------------------
/stubs/toml/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.10.*"
2 | upstream_repository = "https://github.com/uiri/toml"
3 | 


--------------------------------------------------------------------------------
/stubs/toposort/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.10"
2 | upstream_repository = "https://gitlab.com/ericvsmith/toposort"
3 | 


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/_dist_ver.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/tqdm/tqdm/_dist_ver.pyi


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/_main.pyi:
--------------------------------------------------------------------------------
1 | from .cli import *
2 | from .cli import __all__ as __all__
3 | 


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/_tqdm.pyi:
--------------------------------------------------------------------------------
1 | from .std import *
2 | from .std import TqdmDeprecationWarning as TqdmDeprecationWarning, __all__ as __all__
3 | 


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/_tqdm_gui.pyi:
--------------------------------------------------------------------------------
1 | from .gui import *
2 | from .gui import __all__ as __all__
3 | 


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/_tqdm_notebook.pyi:
--------------------------------------------------------------------------------
1 | from .notebook import *
2 | from .notebook import __all__ as __all__
3 | 


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/_tqdm_pandas.pyi:
--------------------------------------------------------------------------------
1 | __all__ = ["tqdm_pandas"]
2 | 
3 | def tqdm_pandas(tclass, **tqdm_kwargs) -> None: ...
4 | 


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/auto.pyi:
--------------------------------------------------------------------------------
1 | from .asyncio import tqdm as tqdm, trange as trange
2 | 
3 | __all__ = ["tqdm", "trange"]
4 | 


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/autonotebook.pyi:
--------------------------------------------------------------------------------
1 | from .std import tqdm as tqdm, trange as trange
2 | 
3 | __all__ = ["tqdm", "trange"]
4 | 


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/cli.pyi:
--------------------------------------------------------------------------------
1 | from collections.abc import Sequence
2 | 
3 | __all__ = ["main"]
4 | 
5 | def main(fp=..., argv: Sequence[str] | None = None) -> None: ...
6 | 


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/contrib/bells.pyi:
--------------------------------------------------------------------------------
1 | from ..auto import tqdm as tqdm, trange as trange
2 | 
3 | __all__ = ["tqdm", "trange"]
4 | 


--------------------------------------------------------------------------------
/stubs/tqdm/tqdm/version.pyi:
--------------------------------------------------------------------------------
1 | __version__: str
2 | 


--------------------------------------------------------------------------------
/stubs/translationstring/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.4.*"
2 | upstream_repository = "https://github.com/Pylons/translationstring"
3 | 


--------------------------------------------------------------------------------
/stubs/ttkthemes/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.2.*"
2 | upstream_repository = "https://github.com/RedFantom/ttkthemes"
3 | 


--------------------------------------------------------------------------------
/stubs/uWSGI/@tests/uwsgi.ini:
--------------------------------------------------------------------------------
1 | [uwsgi]
2 | master = true
3 | cache2 = name=mycache,items=2
4 | queue = 100
5 | sharedarea = 2
6 | route-run = log:foo
7 | snmp = true
8 | 


--------------------------------------------------------------------------------
/stubs/ujson/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "5.10.*"
2 | upstream_repository = "https://github.com/ultrajson/ultrajson"
3 | 


--------------------------------------------------------------------------------
/stubs/unidiff/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.7.*"
2 | upstream_repository = "https://github.com/matiasb/python-unidiff"
3 | 


--------------------------------------------------------------------------------
/stubs/unidiff/unidiff/__version__.pyi:
--------------------------------------------------------------------------------
1 | __version__: str
2 | 


--------------------------------------------------------------------------------
/stubs/unidiff/unidiff/errors.pyi:
--------------------------------------------------------------------------------
1 | class UnidiffParseError(Exception): ...
2 | 


--------------------------------------------------------------------------------
/stubs/untangle/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.2.*"
2 | upstream_repository = "https://github.com/stchris/untangle"
3 | 


--------------------------------------------------------------------------------
/stubs/usersettings/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | usersettings.Settings.app_id
2 | usersettings.Settings.settings_directory
3 | usersettings.Settings.settings_file
4 | 


--------------------------------------------------------------------------------
/stubs/usersettings/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.1.*"
2 | upstream_repository = "https://github.com/glvnst/usersettings"
3 | 


--------------------------------------------------------------------------------
/stubs/vobject/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "~=0.9.9"
2 | upstream_repository = "https://github.com/py-vobject/vobject"
3 | 


--------------------------------------------------------------------------------
/stubs/waitress/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | waitress.__main__
2 | 
3 | # Leaked loop variable
4 | waitress.utilities.i
5 | 


--------------------------------------------------------------------------------
/stubs/watchpoints/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | watchpoints.all
2 | 


--------------------------------------------------------------------------------
/stubs/watchpoints/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.2.5"
2 | upstream_repository = "https://github.com/gaogaotiantian/watchpoints"
3 | 


--------------------------------------------------------------------------------
/stubs/watchpoints/watchpoints/ast_monkey.pyi:
--------------------------------------------------------------------------------
1 | import ast
2 | 
3 | def ast_parse_node(node: ast.expr) -> ast.Module: ...
4 | 


--------------------------------------------------------------------------------
/stubs/whatthepatch/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "1.0.*"
2 | upstream_repository = "https://github.com/cscorley/whatthepatch"
3 | 


--------------------------------------------------------------------------------
/stubs/workalendar/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "17.0.*"
2 | upstream_repository = "https://github.com/workalendar/workalendar"
3 | 


--------------------------------------------------------------------------------
/stubs/workalendar/workalendar/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/workalendar/workalendar/__init__.pyi


--------------------------------------------------------------------------------
/stubs/workalendar/workalendar/registry_tools.pyi:
--------------------------------------------------------------------------------
1 | def iso_register(iso_code): ...
2 | 


--------------------------------------------------------------------------------
/stubs/workalendar/workalendar/usa/colorado.pyi:
--------------------------------------------------------------------------------
1 | from .core import UnitedStates
2 | 
3 | class Colorado(UnitedStates): ...
4 | 


--------------------------------------------------------------------------------
/stubs/workalendar/workalendar/usa/ohio.pyi:
--------------------------------------------------------------------------------
1 | from .core import UnitedStates
2 | 
3 | class Ohio(UnitedStates): ...
4 | 


--------------------------------------------------------------------------------
/stubs/wurlitzer/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.1.*"
2 | upstream_repository = "https://github.com/minrk/wurlitzer"
3 | 


--------------------------------------------------------------------------------
/stubs/xdgenvpy/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | xdgenvpy.__main__
2 | 


--------------------------------------------------------------------------------
/stubs/xdgenvpy/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "3.0.*"
2 | upstream_repository = "https://gitlab.com/deliberist-group/xdgenvpy"
3 | 


--------------------------------------------------------------------------------
/stubs/xdgenvpy/xdgenvpy/__init__.pyi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/python/typeshed/07a59e924fd19fa6de45636498b8ca90649b996e/stubs/xdgenvpy/xdgenvpy/__init__.pyi


--------------------------------------------------------------------------------
/stubs/xlrd/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "2.0.*"
2 | upstream_repository = "https://github.com/python-excel/xlrd"
3 | 


--------------------------------------------------------------------------------
/stubs/xlrd/xlrd/info.pyi:
--------------------------------------------------------------------------------
1 | from typing import Final
2 | 
3 | __version__: Final[str]
4 | __VERSION__: Final[str]
5 | 


--------------------------------------------------------------------------------
/stubs/xmltodict/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "0.14.*"
2 | upstream_repository = "https://github.com/martinblech/xmltodict"
3 | 


--------------------------------------------------------------------------------
/stubs/zstd/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "~=1.5.7.1"
2 | upstream_repository = "https://github.com/sergey-dryabzhinsky/python-zstd"
3 | 


--------------------------------------------------------------------------------
/stubs/zxcvbn/@tests/stubtest_allowlist.txt:
--------------------------------------------------------------------------------
1 | zxcvbn.__main__
2 | 


--------------------------------------------------------------------------------
/stubs/zxcvbn/METADATA.toml:
--------------------------------------------------------------------------------
1 | version = "4.5.*"
2 | upstream_repository = "https://github.com/dwolfhub/zxcvbn-python"
3 | 


--------------------------------------------------------------------------------
/stubs/zxcvbn/zxcvbn/adjacency_graphs.pyi:
--------------------------------------------------------------------------------
1 | from typing_extensions import TypeAlias
2 | 
3 | _Graph: TypeAlias = dict[str, list[str | None]]
4 | 
5 | ADJACENCY_GRAPHS: dict[str, _Graph]
6 | 


--------------------------------------------------------------------------------
/stubs/zxcvbn/zxcvbn/frequency_lists.pyi:
--------------------------------------------------------------------------------
1 | FREQUENCY_LISTS: dict[str, list[str]]
2 | 


--------------------------------------------------------------------------------