├── venv ├── Lib │ └── site-packages │ │ ├── pip-21.2.3.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── WHEEL │ │ └── entry_points.txt │ │ ├── setuptools │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── more_itertools │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── more.cpython-39.pyc │ │ │ │ │ ├── recipes.cpython-39.pyc │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ └── ordered_set.cpython-39.pyc │ │ │ └── packaging │ │ │ │ └── __pycache__ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ └── requirements.cpython-39.pyc │ │ ├── cli.exe │ │ ├── gui.exe │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── __pycache__ │ │ │ ├── _imp.cpython-39.pyc │ │ │ ├── dist.cpython-39.pyc │ │ │ ├── glob.cpython-39.pyc │ │ │ ├── msvc.cpython-39.pyc │ │ │ ├── wheel.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── dep_util.cpython-39.pyc │ │ │ ├── depends.cpython-39.pyc │ │ │ ├── errors.cpython-39.pyc │ │ │ ├── launch.cpython-39.pyc │ │ │ ├── monkey.cpython-39.pyc │ │ │ ├── sandbox.cpython-39.pyc │ │ │ ├── version.cpython-39.pyc │ │ │ ├── build_meta.cpython-39.pyc │ │ │ ├── extension.cpython-39.pyc │ │ │ ├── installer.cpython-39.pyc │ │ │ ├── lib2to3_ex.cpython-39.pyc │ │ │ ├── namespaces.cpython-39.pyc │ │ │ ├── py34compat.cpython-39.pyc │ │ │ ├── archive_util.cpython-39.pyc │ │ │ ├── package_index.cpython-39.pyc │ │ │ ├── unicode_utils.cpython-39.pyc │ │ │ ├── windows_support.cpython-39.pyc │ │ │ └── _deprecation_warning.cpython-39.pyc │ │ ├── script.tmpl │ │ ├── command │ │ │ ├── __pycache__ │ │ │ │ ├── alias.cpython-39.pyc │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ ├── test.cpython-39.pyc │ │ │ │ ├── develop.cpython-39.pyc │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ ├── rotate.cpython-39.pyc │ │ │ │ ├── setopt.cpython-39.pyc │ │ │ │ ├── upload.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── bdist_egg.cpython-39.pyc │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ ├── dist_info.cpython-39.pyc │ │ │ │ ├── egg_info.cpython-39.pyc │ │ │ │ ├── py36compat.cpython-39.pyc │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ ├── saveopts.cpython-39.pyc │ │ │ │ ├── easy_install.cpython-39.pyc │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ ├── upload_docs.cpython-39.pyc │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ └── install_egg_info.cpython-39.pyc │ │ │ ├── __init__.py │ │ │ ├── upload.py │ │ │ └── register.py │ │ ├── _distutils │ │ │ ├── __pycache__ │ │ │ │ ├── cmd.cpython-39.pyc │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ ├── dist.cpython-39.pyc │ │ │ │ ├── log.cpython-39.pyc │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ ├── spawn.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── ccompiler.cpython-39.pyc │ │ │ │ ├── dep_util.cpython-39.pyc │ │ │ │ ├── dir_util.cpython-39.pyc │ │ │ │ ├── extension.cpython-39.pyc │ │ │ │ ├── file_util.cpython-39.pyc │ │ │ │ ├── filelist.cpython-39.pyc │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ ├── text_file.cpython-39.pyc │ │ │ │ ├── archive_util.cpython-39.pyc │ │ │ │ ├── bcppcompiler.cpython-39.pyc │ │ │ │ ├── fancy_getopt.cpython-39.pyc │ │ │ │ ├── msvccompiler.cpython-39.pyc │ │ │ │ ├── py35compat.cpython-39.pyc │ │ │ │ ├── py38compat.cpython-39.pyc │ │ │ │ ├── _msvccompiler.cpython-39.pyc │ │ │ │ ├── msvc9compiler.cpython-39.pyc │ │ │ │ ├── unixccompiler.cpython-39.pyc │ │ │ │ ├── cygwinccompiler.cpython-39.pyc │ │ │ │ └── versionpredicate.cpython-39.pyc │ │ │ ├── debug.py │ │ │ ├── command │ │ │ │ └── __pycache__ │ │ │ │ │ ├── bdist.cpython-39.pyc │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── clean.cpython-39.pyc │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ ├── upload.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ │ ├── py37compat.cpython-39.pyc │ │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ │ │ ├── install_data.cpython-39.pyc │ │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ │ ├── install_headers.cpython-39.pyc │ │ │ │ │ └── install_scripts.cpython-39.pyc │ │ │ ├── py38compat.py │ │ │ ├── __init__.py │ │ │ └── py35compat.py │ │ ├── extern │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── version.py │ │ ├── script (dev).tmpl │ │ ├── _deprecation_warning.py │ │ ├── py34compat.py │ │ └── errors.py │ │ ├── pip │ │ ├── _internal │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── _log.cpython-39.pyc │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── glibc.cpython-39.pyc │ │ │ │ │ ├── hashes.cpython-39.pyc │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ │ ├── filetypes.cpython-39.pyc │ │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ │ ├── packaging.cpython-39.pyc │ │ │ │ │ ├── parallel.cpython-39.pyc │ │ │ │ │ ├── temp_dir.cpython-39.pyc │ │ │ │ │ ├── unpacking.cpython-39.pyc │ │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ │ ├── entrypoints.cpython-39.pyc │ │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ │ ├── virtualenv.cpython-39.pyc │ │ │ │ │ ├── distutils_args.cpython-39.pyc │ │ │ │ │ ├── pkg_resources.cpython-39.pyc │ │ │ │ │ ├── setuptools_build.cpython-39.pyc │ │ │ │ │ ├── compatibility_tags.cpython-39.pyc │ │ │ │ │ ├── direct_url_helpers.cpython-39.pyc │ │ │ │ │ └── inject_securetransport.cpython-39.pyc │ │ │ │ └── datetime.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ │ ├── wheel_legacy.cpython-39.pyc │ │ │ │ │ │ └── metadata_legacy.cpython-39.pyc │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── legacy.cpython-39.pyc │ │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── editable_legacy.cpython-39.pyc │ │ │ │ └── __pycache__ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── prepare.cpython-39.pyc │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── legacy │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ ├── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ │ │ ├── provider.cpython-39.pyc │ │ │ │ │ │ ├── reporter.cpython-39.pyc │ │ │ │ │ │ ├── resolver.cpython-39.pyc │ │ │ │ │ │ ├── candidates.cpython-39.pyc │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ └── found_candidates.cpython-39.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ └── base.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── collector.cpython-39.pyc │ │ │ │ │ ├── sources.cpython-39.pyc │ │ │ │ │ └── package_finder.cpython-39.pyc │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── session.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ ├── xmlrpc.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ └── lazy_wheel.cpython-39.pyc │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── link.cpython-39.pyc │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── scheme.cpython-39.pyc │ │ │ │ │ ├── candidate.cpython-39.pyc │ │ │ │ │ ├── direct_url.cpython-39.pyc │ │ │ │ │ ├── search_scope.cpython-39.pyc │ │ │ │ │ ├── target_python.cpython-39.pyc │ │ │ │ │ ├── format_control.cpython-39.pyc │ │ │ │ │ └── selection_prefs.cpython-39.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── build_env.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── pyproject.cpython-39.pyc │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ ├── wheel_builder.cpython-39.pyc │ │ │ │ └── self_outdated_check.cpython-39.pyc │ │ │ ├── vcs │ │ │ │ └── __pycache__ │ │ │ │ │ ├── git.cpython-39.pyc │ │ │ │ │ ├── bazaar.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── mercurial.cpython-39.pyc │ │ │ │ │ ├── subversion.cpython-39.pyc │ │ │ │ │ └── versioncontrol.cpython-39.pyc │ │ │ ├── cli │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── spinners.cpython-39.pyc │ │ │ │ │ ├── cmdoptions.cpython-39.pyc │ │ │ │ │ ├── main_parser.cpython-39.pyc │ │ │ │ │ ├── req_command.cpython-39.pyc │ │ │ │ │ ├── base_command.cpython-39.pyc │ │ │ │ │ ├── progress_bars.cpython-39.pyc │ │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ │ ├── autocompletion.cpython-39.pyc │ │ │ │ │ └── command_context.cpython-39.pyc │ │ │ │ ├── status_codes.py │ │ │ │ └── __init__.py │ │ │ ├── req │ │ │ │ └── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── req_file.cpython-39.pyc │ │ │ │ │ ├── req_set.cpython-39.pyc │ │ │ │ │ ├── req_install.cpython-39.pyc │ │ │ │ │ ├── req_tracker.cpython-39.pyc │ │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ │ └── req_uninstall.cpython-39.pyc │ │ │ ├── commands │ │ │ │ └── __pycache__ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ ├── hash.cpython-39.pyc │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── list.cpython-39.pyc │ │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ │ ├── show.cpython-39.pyc │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ ├── completion.cpython-39.pyc │ │ │ │ │ ├── uninstall.cpython-39.pyc │ │ │ │ │ └── configuration.cpython-39.pyc │ │ │ ├── locations │ │ │ │ └── __pycache__ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _distutils.cpython-39.pyc │ │ │ │ │ └── _sysconfig.cpython-39.pyc │ │ │ ├── metadata │ │ │ │ └── __pycache__ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── pkg_resources.cpython-39.pyc │ │ │ ├── distributions │ │ │ │ └── __pycache__ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── installed.cpython-39.pyc │ │ │ ├── main.py │ │ │ └── __init__.py │ │ ├── _vendor │ │ │ ├── chardet │ │ │ │ ├── metadata │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── languages.cpython-39.pyc │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── chardetect.cpython-39.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ │ ├── escsm.cpython-39.pyc │ │ │ │ │ ├── jpcntx.cpython-39.pyc │ │ │ │ │ ├── mbcssm.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── big5freq.cpython-39.pyc │ │ │ │ │ ├── escprober.cpython-39.pyc │ │ │ │ │ ├── euckrfreq.cpython-39.pyc │ │ │ │ │ ├── euctwfreq.cpython-39.pyc │ │ │ │ │ ├── jisfreq.cpython-39.pyc │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ ├── big5prober.cpython-39.pyc │ │ │ │ │ ├── cp949prober.cpython-39.pyc │ │ │ │ │ ├── eucjpprober.cpython-39.pyc │ │ │ │ │ ├── euckrprober.cpython-39.pyc │ │ │ │ │ ├── euctwprober.cpython-39.pyc │ │ │ │ │ ├── gb2312freq.cpython-39.pyc │ │ │ │ │ ├── sjisprober.cpython-39.pyc │ │ │ │ │ ├── utf8prober.cpython-39.pyc │ │ │ │ │ ├── charsetprober.cpython-39.pyc │ │ │ │ │ ├── gb2312prober.cpython-39.pyc │ │ │ │ │ ├── hebrewprober.cpython-39.pyc │ │ │ │ │ ├── langgreekmodel.cpython-39.pyc │ │ │ │ │ ├── langthaimodel.cpython-39.pyc │ │ │ │ │ ├── latin1prober.cpython-39.pyc │ │ │ │ │ ├── chardistribution.cpython-39.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-39.pyc │ │ │ │ │ ├── langrussianmodel.cpython-39.pyc │ │ │ │ │ ├── langturkishmodel.cpython-39.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-39.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-39.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-39.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-39.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-39.pyc │ │ │ │ │ ├── codingstatemachine.cpython-39.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-39.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-39.pyc │ │ │ │ │ └── universaldetector.cpython-39.pyc │ │ │ │ └── version.py │ │ │ ├── html5lib │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── lint.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── sanitizer.cpython-39.pyc │ │ │ │ │ │ ├── whitespace.cpython-39.pyc │ │ │ │ │ │ ├── optionaltags.cpython-39.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-39.pyc │ │ │ │ │ │ └── alphabeticalattributes.cpython-39.pyc │ │ │ │ │ └── base.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── py.cpython-39.pyc │ │ │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ ├── _ihatexml.cpython-39.pyc │ │ │ │ │ ├── _tokenizer.cpython-39.pyc │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ ├── serializer.cpython-39.pyc │ │ │ │ │ ├── _inputstream.cpython-39.pyc │ │ │ │ │ └── html5parser.cpython-39.pyc │ │ │ │ ├── treewalkers │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ │ ├── treeadapters │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── sax.cpython-39.pyc │ │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ └── treebuilders │ │ │ │ │ └── __pycache__ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ ├── urllib3 │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ │ │ └── low_level.cpython-39.pyc │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── socks.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ │ │ └── _appengine_environ.cpython-39.pyc │ │ │ │ ├── packages │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── six.cpython-39.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── _implementation.cpython-39.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ ├── filepost.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ │ └── connectionpool.cpython-39.pyc │ │ │ │ └── util │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── ssl_.cpython-39.pyc │ │ │ │ │ ├── url.cpython-39.pyc │ │ │ │ │ ├── wait.cpython-39.pyc │ │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ │ ├── queue.cpython-39.pyc │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ └── ssltransport.cpython-39.pyc │ │ │ │ │ └── queue.py │ │ │ ├── resolvelib │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── collections_abc.cpython-39.pyc │ │ │ │ │ └── collections_abc.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── structs.cpython-39.pyc │ │ │ │ │ ├── providers.cpython-39.pyc │ │ │ │ │ ├── reporters.cpython-39.pyc │ │ │ │ │ └── resolvers.cpython-39.pyc │ │ │ ├── msgpack │ │ │ │ ├── _version.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── ext.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ ├── fallback.cpython-39.pyc │ │ │ │ │ └── exceptions.cpython-39.pyc │ │ │ ├── idna │ │ │ │ ├── package_data.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ ├── codec.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── idnadata.cpython-39.pyc │ │ │ │ │ ├── intranges.cpython-39.pyc │ │ │ │ │ ├── uts46data.cpython-39.pyc │ │ │ │ │ └── package_data.cpython-39.pyc │ │ │ │ └── compat.py │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── __main__.cpython-39.pyc │ │ │ │ └── __main__.py │ │ │ ├── distlib │ │ │ │ ├── t32.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── w32.exe │ │ │ │ ├── w64.exe │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ │ ├── locators.cpython-39.pyc │ │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ │ ├── scripts.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ └── _backport │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ ├── shutil.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ └── tarfile.cpython-39.pyc │ │ │ │ │ └── __init__.py │ │ │ ├── cachecontrol │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── file_cache.cpython-39.pyc │ │ │ │ │ │ └── redis_cache.cpython-39.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── _cmd.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ ├── serialize.cpython-39.pyc │ │ │ │ │ ├── wrapper.cpython-39.pyc │ │ │ │ │ ├── controller.cpython-39.pyc │ │ │ │ │ ├── filewrapper.cpython-39.pyc │ │ │ │ │ └── heuristics.cpython-39.pyc │ │ │ │ └── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── six.cpython-39.pyc │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ ├── distro.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── pyparsing.cpython-39.pyc │ │ │ ├── tomli │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── _re.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── _parser.cpython-39.pyc │ │ │ │ └── __init__.py │ │ │ ├── pep517 │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── meta.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── colorlog.cpython-39.pyc │ │ │ │ │ ├── dirtools.cpython-39.pyc │ │ │ │ │ ├── envbuild.cpython-39.pyc │ │ │ │ │ └── wrappers.cpython-39.pyc │ │ │ │ ├── __init__.py │ │ │ │ └── in_process │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── _in_process.cpython-39.pyc │ │ │ │ │ └── __init__.py │ │ │ ├── progress │ │ │ │ └── __pycache__ │ │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── counter.cpython-39.pyc │ │ │ │ │ └── spinner.cpython-39.pyc │ │ │ ├── requests │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ ├── certs.cpython-39.pyc │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── adapters.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ ├── packages.cpython-39.pyc │ │ │ │ │ ├── sessions.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── structures.cpython-39.pyc │ │ │ │ │ ├── __version__.cpython-39.pyc │ │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ │ └── _internal_utils.cpython-39.pyc │ │ │ │ ├── __version__.py │ │ │ │ └── certs.py │ │ │ ├── tenacity │ │ │ │ └── __pycache__ │ │ │ │ │ ├── nap.cpython-39.pyc │ │ │ │ │ ├── after.cpython-39.pyc │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ ├── stop.cpython-39.pyc │ │ │ │ │ ├── wait.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _asyncio.cpython-39.pyc │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ ├── before.cpython-39.pyc │ │ │ │ │ ├── tornadoweb.cpython-39.pyc │ │ │ │ │ └── before_sleep.cpython-39.pyc │ │ │ ├── colorama │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ │ ├── win32.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── winterm.cpython-39.pyc │ │ │ │ │ ├── initialise.cpython-39.pyc │ │ │ │ │ └── ansitowin32.cpython-39.pyc │ │ │ │ └── __init__.py │ │ │ ├── packaging │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _manylinux.cpython-39.pyc │ │ │ │ │ ├── _musllinux.cpython-39.pyc │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ └── specifiers.cpython-39.pyc │ │ │ │ └── __init__.py │ │ │ ├── webencodings │ │ │ │ └── __pycache__ │ │ │ │ │ ├── labels.cpython-39.pyc │ │ │ │ │ ├── tests.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── mklabels.cpython-39.pyc │ │ │ │ │ └── x_user_defined.cpython-39.pyc │ │ │ ├── pkg_resources │ │ │ │ └── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── py31compat.cpython-39.pyc │ │ │ └── vendor.txt │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── __main__.cpython-39.pyc │ │ ├── py.typed │ │ └── __init__.py │ │ ├── pkg_resources │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── pyparsing.cpython-39.pyc │ │ │ └── packaging │ │ │ │ └── __pycache__ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ └── specifiers.cpython-39.pyc │ │ ├── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── tests │ │ │ └── data │ │ │ │ └── my-test-package-source │ │ │ │ ├── setup.py │ │ │ │ └── __pycache__ │ │ │ │ └── setup.cpython-39.pyc │ │ └── extern │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── setuptools-57.4.0.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── speedtest_cli-2.1.3.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── entry_points.txt │ │ └── WHEEL │ │ ├── _distutils_hack │ │ ├── override.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── override.cpython-39.pyc │ │ ├── __pycache__ │ │ ├── speedtest.cpython-39.pyc │ │ └── speedtest_cli.cpython-39.pyc │ │ └── distutils-precedence.pth ├── Scripts │ ├── pip.exe │ ├── pip3.exe │ ├── pip3.9.exe │ ├── python.exe │ ├── pythonw.exe │ ├── python_d.exe │ ├── pythonw_d.exe │ ├── speedtest.exe │ ├── speedtest-cli.exe │ └── deactivate.bat └── pyvenv.cfg ├── README.md └── main.py /venv/Lib/site-packages/pip-21.2.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-21.2.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-57.4.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/speedtest_cli-2.1.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-21.2.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-57.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/speedtest_cli-2.1.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Speedtest 2 | 3 | ``` 4 | pip install speedtest-cli 5 | ``` -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 2) 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/speedtest_cli-2.1.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | speedtest 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.2' 2 | 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Scripts/pip3.9.exe -------------------------------------------------------------------------------- /venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Scripts/python.exe -------------------------------------------------------------------------------- /venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /venv/Scripts/python_d.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Scripts/python_d.exe -------------------------------------------------------------------------------- /venv/Scripts/pythonw_d.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Scripts/pythonw_d.exe -------------------------------------------------------------------------------- /venv/Scripts/speedtest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Scripts/speedtest.exe -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Python\Python39 2 | include-system-site-packages = false 3 | version = 3.9.7 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-57.4.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /venv/Scripts/speedtest-cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Scripts/speedtest-cli.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.6" 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.05.30" 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-21.2.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/speedtest_cli-2.1.3.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | speedtest = speedtest:main 3 | speedtest-cli = speedtest:main 4 | 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-57.4.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py: -------------------------------------------------------------------------------- 1 | from .more import * # noqa 2 | from .recipes import * # noqa 3 | 4 | __version__ = '8.8.0' 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/__pycache__/speedtest.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/__pycache__/speedtest.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/__pycache__/speedtest_cli.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/__pycache__/speedtest_cli.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__main__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/version.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/version.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/speedtest_cli-2.1.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie 4 | 5 | __all__ = ["Trie"] 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ("ssl_match_hostname",) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- 1 | import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'stdlib') == 'local'; enabled and __import__('_distutils_hack').add_shim(); 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | SUCCESS = 0 2 | ERROR = 1 3 | UNKNOWN_ERROR = 2 4 | VIRTUALENV_NOT_FOUND = 3 5 | PREVIOUS_BUILD_DIR_ERROR = 4 6 | NO_MATCHES_FOUND = 23 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-21.2.3.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal.cli.main:main 3 | pip3 = pip._internal.cli.main:main 4 | pip3.8 = pip._internal.cli.main:main 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | setuptools.setup( 3 | name="my-test-package", 4 | version="1.0", 5 | zip_safe=True, 6 | ) 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.11.0' 5 | 6 | from .wrappers import * # noqa: F401, F403 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | # If DISTUTILS_DEBUG is anything other than the empty string, we run in 4 | # debug mode. 5 | DEBUG = os.environ.get('DISTUTILS_DEBUG') 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | 3 | try: 4 | __version__ = pkg_resources.get_distribution('setuptools').version 5 | except Exception: 6 | __version__ = 'unknown' 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_typing.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_typing.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_typing.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_typing.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py: -------------------------------------------------------------------------------- 1 | __all__ = ["Mapping", "Sequence"] 2 | 3 | try: 4 | from collections.abc import Mapping, Sequence 5 | except ImportError: 6 | from collections import Mapping, Sequence 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python019/speedtest/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-DEV-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').require(%(spec)r) 4 | __file__ = %(dev_path)r 5 | with open(__file__) as f: 6 | exec(compile(f.read(), __file__, 'exec')) 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/py38compat.py: -------------------------------------------------------------------------------- 1 | def aix_platform(osname, version, release): 2 | try: 3 | import _aix_support 4 | return _aix_support.aix_platform() 5 | except ImportError: 6 | pass 7 | return "%s-%s.%s" % (osname, version, release) 8 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- 1 | class SetuptoolsDeprecationWarning(Warning): 2 | """ 3 | Base class for warning deprecations in ``setuptools`` 4 | 5 | This class is not derived from ``DeprecationWarning``, and as such is 6 | visible by default. 7 | """ 8 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- 1 | from distutils.command.bdist import bdist 2 | import sys 3 | 4 | if 'egg' not in bdist.format_commands: 5 | bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") 6 | bdist.format_commands.append('egg') 7 | 8 | del bdist, sys 9 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__init__.py: -------------------------------------------------------------------------------- 1 | """A lil' TOML parser.""" 2 | 3 | __all__ = ("loads", "load", "TOMLDecodeError") 4 | __version__ = "1.0.3" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT 5 | 6 | from pip._vendor.tomli._parser import TOMLDecodeError, load, loads 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.4' 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/py.typed: -------------------------------------------------------------------------------- 1 | pip is a command line program. While it is implemented in Python, and so is 2 | available for import, you must not use pip's internal APIs in this way. Typing 3 | information is provided as a convenience only and is not a guarantee. Expect 4 | unannounced changes to the API and types in releases. 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "4.0.0" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- 1 | import importlib 2 | 3 | try: 4 | import importlib.util 5 | except ImportError: 6 | pass 7 | 8 | 9 | try: 10 | module_from_spec = importlib.util.module_from_spec 11 | except AttributeError: 12 | def module_from_spec(spec): 13 | return spec.loader.load_module(spec.name) 14 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- 1 | """For when pip wants to check the date or time. 2 | """ 3 | 4 | import datetime 5 | 6 | 7 | def today_is_later_than(year: int, month: int, day: int) -> bool: 8 | today = datetime.date.today() 9 | given = datetime.date(year, month, day) 10 | 11 | return today > given 12 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | 3 | from pip._vendor.certifi import contents, where 4 | 5 | parser = argparse.ArgumentParser() 6 | parser.add_argument("-c", "--contents", action="store_true") 7 | args = parser.parse_args() 8 | 9 | if args.contents: 10 | print(contents()) 11 | else: 12 | print(where()) 13 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__init__.py: -------------------------------------------------------------------------------- 1 | """distutils 2 | 3 | The main package for the Python Module Distribution Utilities. Normally 4 | used from a setup script as 5 | 6 | from distutils.core import setup 7 | 8 | setup (...) 9 | """ 10 | 11 | import sys 12 | 13 | __version__ = sys.version[:sys.version.index(' ')] 14 | 15 | local = True 16 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.6" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | from typing import List, Optional 2 | 3 | __version__ = "21.2.3" 4 | 5 | 6 | def main(args: Optional[List[str]] = None) -> int: 7 | """This is an internal API only meant for use by pip's own console scripts. 8 | 9 | For additional details, see https://github.com/pypa/pip/issues/7498. 10 | """ 11 | from pip._internal.utils.entrypoints import _wrapper 12 | 13 | return _wrapper(args) 14 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- 1 | from typing import List, Optional 2 | 3 | 4 | def main(args=None): 5 | # type: (Optional[List[str]]) -> int 6 | """This is preserved for old console scripts that may still be referencing 7 | it. 8 | 9 | For additional details, see https://github.com/pypa/pip/issues/7498. 10 | """ 11 | from pip._internal.utils.entrypoints import _wrapper 12 | 13 | return _wrapper(args) 14 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import speedtest 2 | 3 | test = speedtest.Speedtest() 4 | print("loading...") 5 | test.get_servers() 6 | print("Serverni tanlab olish...") 7 | best = test.get_best_server() 8 | print(f"Host: {best['host']}, Mamlakat: {best['country']}") 9 | 10 | 11 | yuklash = test.download() 12 | jonatish = test.upload() 13 | 14 | print(f"Yuklash tezligi: {yuklash / 1024 / 1024:.2f} Mbit/s") 15 | print(f"Jo'natish tezligi: {jonatish / 1024 / 1024:.2f} Mbit/s") -------------------------------------------------------------------------------- /venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if defined _OLD_VIRTUAL_PROMPT ( 4 | set "PROMPT=%_OLD_VIRTUAL_PROMPT%" 5 | ) 6 | set _OLD_VIRTUAL_PROMPT= 7 | 8 | if defined _OLD_VIRTUAL_PYTHONHOME ( 9 | set "PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%" 10 | set _OLD_VIRTUAL_PYTHONHOME= 11 | ) 12 | 13 | if defined _OLD_VIRTUAL_PATH ( 14 | set "PATH=%_OLD_VIRTUAL_PATH%" 15 | ) 16 | 17 | set _OLD_VIRTUAL_PATH= 18 | 19 | set VIRTUAL_ENV= 20 | 21 | :END 22 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | from typing import Any, Union 4 | 5 | def ToASCII(label): 6 | # type: (str) -> bytes 7 | return encode(label) 8 | 9 | def ToUnicode(label): 10 | # type: (Union[bytes, bytearray]) -> str 11 | return decode(label) 12 | 13 | def nameprep(s): 14 | # type: (Any) -> None 15 | raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol') 16 | 17 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- 1 | appdirs==1.4.4 2 | CacheControl==0.12.6 3 | colorama==0.4.4 4 | distlib==0.3.2 5 | distro==1.5.0 6 | html5lib==1.1 7 | msgpack==1.0.2 8 | packaging==21.0 9 | pep517==0.11.0 10 | progress==1.5 11 | pyparsing==2.4.7 12 | requests==2.26.0 13 | certifi==2021.05.30 14 | chardet==4.0.0 15 | idna==3.2 16 | urllib3==1.26.6 17 | resolvelib==0.7.1 18 | setuptools==44.0.0 19 | six==1.16.0 20 | tenacity==8.0.1 21 | tomli==1.0.3 22 | webencodings==0.5.1 23 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'https://requests.readthedocs.io' 8 | __version__ = '2.26.0' 9 | __build__ = 0x022600 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2020 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- 1 | from distutils import log 2 | from distutils.command import upload as orig 3 | 4 | from setuptools.errors import RemovedCommandError 5 | 6 | 7 | class upload(orig.upload): 8 | """Formerly used to upload packages to PyPI.""" 9 | 10 | def run(self): 11 | msg = ( 12 | "The upload command has been removed, use twine to upload " 13 | + "instead (https://pypi.org/p/twine)" 14 | ) 15 | 16 | self.announce("ERROR: " + msg, log.ERROR) 17 | raise RemovedCommandError(msg) 18 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/py35compat.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import subprocess 3 | 4 | 5 | def __optim_args_from_interpreter_flags(): 6 | """Return a list of command-line arguments reproducing the current 7 | optimization settings in sys.flags.""" 8 | args = [] 9 | value = sys.flags.optimize 10 | if value > 0: 11 | args.append("-" + "O" * value) 12 | return args 13 | 14 | 15 | _optim_args_from_interpreter_flags = getattr( 16 | subprocess, 17 | "_optim_args_from_interpreter_flags", 18 | __optim_args_from_interpreter_flags, 19 | ) 20 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- 1 | from distutils import log 2 | import distutils.command.register as orig 3 | 4 | from setuptools.errors import RemovedCommandError 5 | 6 | 7 | class register(orig.register): 8 | """Formerly used to register packages on PyPI.""" 9 | 10 | def run(self): 11 | msg = ( 12 | "The register command has been removed, use twine to upload " 13 | + "instead (https://pypi.org/p/twine)" 14 | ) 15 | 16 | self.announce("ERROR: " + msg, log.ERROR) 17 | 18 | raise RemovedCommandError(msg) 19 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- 1 | """setuptools.errors 2 | 3 | Provides exceptions used by setuptools modules. 4 | """ 5 | 6 | from distutils.errors import DistutilsError 7 | 8 | 9 | class RemovedCommandError(DistutilsError, RuntimeError): 10 | """Error used for commands that have been removed in setuptools. 11 | 12 | Since ``setuptools`` is built on ``distutils``, simply removing a command 13 | from ``setuptools`` will make the behavior fall back to ``distutils``; this 14 | error is raised if a command exists in ``distutils`` but has been actively 15 | removed in ``setuptools``. 16 | """ 17 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | 3 | from ..packages import six 4 | from ..packages.six.moves import queue 5 | 6 | if six.PY2: 7 | # Queue is imported for side effects on MS Windows. See issue #229. 8 | import Queue as _unused_module_Queue # noqa: F401 9 | 10 | 11 | class LifoQueue(queue.Queue): 12 | def _init(self, _): 13 | self.queue = collections.deque() 14 | 15 | def _qsize(self, len=len): 16 | return len(self.queue) 17 | 18 | def _put(self, item): 19 | self.queue.append(item) 20 | 21 | def _get(self): 22 | return self.queue.pop() 23 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | 5 | from .__about__ import ( 6 | __author__, 7 | __copyright__, 8 | __email__, 9 | __license__, 10 | __summary__, 11 | __title__, 12 | __uri__, 13 | __version__, 14 | ) 15 | 16 | __all__ = [ 17 | "__title__", 18 | "__summary__", 19 | "__uri__", 20 | "__version__", 21 | "__author__", 22 | "__email__", 23 | "__license__", 24 | "__copyright__", 25 | ] 26 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- 1 | from typing import Callable, List 2 | 3 | from pip._internal.req.req_install import InstallRequirement 4 | from pip._internal.req.req_set import RequirementSet 5 | 6 | InstallRequirementProvider = Callable[[str, InstallRequirement], InstallRequirement] 7 | 8 | 9 | class BaseResolver: 10 | def resolve( 11 | self, root_reqs: List[InstallRequirement], check_supported_wheels: bool 12 | ) -> RequirementSet: 13 | raise NotImplementedError() 14 | 15 | def get_installation_order( 16 | self, req_set: RequirementSet 17 | ) -> List[InstallRequirement]: 18 | raise NotImplementedError() 19 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py: -------------------------------------------------------------------------------- 1 | """This is a subpackage because the directory is on sys.path for _in_process.py 2 | 3 | The subpackage should stay as empty as possible to avoid shadowing modules that 4 | the backend might import. 5 | """ 6 | from os.path import dirname, abspath, join as pjoin 7 | from contextlib import contextmanager 8 | 9 | try: 10 | import importlib.resources as resources 11 | 12 | def _in_proc_script_path(): 13 | return resources.path(__package__, '_in_process.py') 14 | except ImportError: 15 | @contextmanager 16 | def _in_proc_script_path(): 17 | yield pjoin(dirname(abspath(__file__)), '_in_process.py') 18 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- 1 | from typing import List, Optional 2 | 3 | import pip._internal.utils.inject_securetransport # noqa 4 | from pip._internal.utils import _log 5 | 6 | # init_logging() must be called before any call to logging.getLogger() 7 | # which happens at import of most modules. 8 | _log.init_logging() 9 | 10 | 11 | def main(args: (Optional[List[str]]) = None) -> int: 12 | """This is preserved for old console scripts that may still be referencing 13 | it. 14 | 15 | For additional details, see https://github.com/pypa/pip/issues/7498. 16 | """ 17 | from pip._internal.utils.entrypoints import _wrapper 18 | 19 | return _wrapper(args) 20 | --------------------------------------------------------------------------------