├── .gitignore ├── README.md ├── bin ├── Activate.ps1 ├── activate ├── activate.csh ├── activate.fish ├── normalizer ├── pip ├── pip3 ├── pip3.8 ├── python └── python3 ├── lib └── python3.8 │ └── site-packages │ ├── _distutils_hack │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── override.cpython-38.pyc │ └── override.py │ ├── certifi-2021.5.30.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __main__.cpython-38.pyc │ │ └── core.cpython-38.pyc │ ├── cacert.pem │ └── core.py │ ├── charset_normalizer-2.0.4.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── charset_normalizer │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── api.cpython-38.pyc │ │ ├── cd.cpython-38.pyc │ │ ├── constant.cpython-38.pyc │ │ ├── legacy.cpython-38.pyc │ │ ├── md.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── utils.cpython-38.pyc │ │ └── version.cpython-38.pyc │ ├── api.py │ ├── assets │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ ├── cd.py │ ├── cli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── normalizer.cpython-38.pyc │ │ └── normalizer.py │ ├── constant.py │ ├── legacy.py │ ├── md.py │ ├── models.py │ ├── py.typed │ ├── utils.py │ └── version.py │ ├── distutils-precedence.pth │ ├── idna-3.2.dist-info │ ├── INSTALLER │ ├── LICENSE.md │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── idna │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── codec.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── core.cpython-38.pyc │ │ ├── idnadata.cpython-38.pyc │ │ ├── intranges.cpython-38.pyc │ │ ├── package_data.cpython-38.pyc │ │ └── uts46data.cpython-38.pyc │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ ├── py.typed │ └── uts46data.py │ ├── pip-21.1.1.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── __main__.cpython-38.pyc │ ├── _internal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── build_env.cpython-38.pyc │ │ │ ├── cache.cpython-38.pyc │ │ │ ├── configuration.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ ├── main.cpython-38.pyc │ │ │ ├── pyproject.cpython-38.pyc │ │ │ ├── self_outdated_check.cpython-38.pyc │ │ │ └── wheel_builder.cpython-38.pyc │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── autocompletion.cpython-38.pyc │ │ │ │ ├── base_command.cpython-38.pyc │ │ │ │ ├── cmdoptions.cpython-38.pyc │ │ │ │ ├── command_context.cpython-38.pyc │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ ├── main_parser.cpython-38.pyc │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ ├── progress_bars.cpython-38.pyc │ │ │ │ ├── req_command.cpython-38.pyc │ │ │ │ ├── spinners.cpython-38.pyc │ │ │ │ └── status_codes.cpython-38.pyc │ │ │ ├── autocompletion.py │ │ │ ├── base_command.py │ │ │ ├── cmdoptions.py │ │ │ ├── command_context.py │ │ │ ├── main.py │ │ │ ├── main_parser.py │ │ │ ├── parser.py │ │ │ ├── progress_bars.py │ │ │ ├── req_command.py │ │ │ ├── spinners.py │ │ │ └── status_codes.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ ├── completion.cpython-38.pyc │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ ├── hash.cpython-38.pyc │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── list.cpython-38.pyc │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ ├── show.cpython-38.pyc │ │ │ │ ├── uninstall.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── cache.py │ │ │ ├── check.py │ │ │ ├── completion.py │ │ │ ├── configuration.py │ │ │ ├── debug.py │ │ │ ├── download.py │ │ │ ├── freeze.py │ │ │ ├── hash.py │ │ │ ├── help.py │ │ │ ├── install.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ ├── show.py │ │ │ ├── uninstall.py │ │ │ └── wheel.py │ │ ├── configuration.py │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── installed.cpython-38.pyc │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── installed.py │ │ │ ├── sdist.py │ │ │ └── wheel.py │ │ ├── exceptions.py │ │ ├── index │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── collector.cpython-38.pyc │ │ │ │ ├── package_finder.cpython-38.pyc │ │ │ │ └── sources.cpython-38.pyc │ │ │ ├── collector.py │ │ │ ├── package_finder.py │ │ │ └── sources.py │ │ ├── locations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _distutils.cpython-38.pyc │ │ │ │ ├── _sysconfig.cpython-38.pyc │ │ │ │ └── base.cpython-38.pyc │ │ │ ├── _distutils.py │ │ │ ├── _sysconfig.py │ │ │ └── base.py │ │ ├── main.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ └── pkg_resources.cpython-38.pyc │ │ │ ├── base.py │ │ │ └── pkg_resources.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ ├── direct_url.cpython-38.pyc │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ ├── link.cpython-38.pyc │ │ │ │ ├── scheme.cpython-38.pyc │ │ │ │ ├── search_scope.cpython-38.pyc │ │ │ │ ├── selection_prefs.cpython-38.pyc │ │ │ │ ├── target_python.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── candidate.py │ │ │ ├── direct_url.py │ │ │ ├── format_control.py │ │ │ ├── index.py │ │ │ ├── link.py │ │ │ ├── scheme.py │ │ │ ├── search_scope.py │ │ │ ├── selection_prefs.py │ │ │ ├── target_python.py │ │ │ └── wheel.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ ├── lazy_wheel.cpython-38.pyc │ │ │ │ ├── session.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── xmlrpc.cpython-38.pyc │ │ │ ├── auth.py │ │ │ ├── cache.py │ │ │ ├── download.py │ │ │ ├── lazy_wheel.py │ │ │ ├── session.py │ │ │ ├── utils.py │ │ │ └── xmlrpc.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ └── prepare.cpython-38.pyc │ │ │ ├── build │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc │ │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ │ └── wheel_legacy.cpython-38.pyc │ │ │ │ ├── metadata.py │ │ │ │ ├── metadata_legacy.py │ │ │ │ ├── wheel.py │ │ │ │ └── wheel_legacy.py │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ ├── install │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── editable_legacy.cpython-38.pyc │ │ │ │ │ ├── legacy.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── editable_legacy.py │ │ │ │ ├── legacy.py │ │ │ │ └── wheel.py │ │ │ └── prepare.py │ │ ├── pyproject.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── constructors.cpython-38.pyc │ │ │ │ ├── req_file.cpython-38.pyc │ │ │ │ ├── req_install.cpython-38.pyc │ │ │ │ ├── req_set.cpython-38.pyc │ │ │ │ ├── req_tracker.cpython-38.pyc │ │ │ │ └── req_uninstall.cpython-38.pyc │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ ├── req_tracker.py │ │ │ └── req_uninstall.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── base.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── legacy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ └── resolver.py │ │ │ └── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── candidates.cpython-38.pyc │ │ │ │ ├── factory.cpython-38.pyc │ │ │ │ ├── found_candidates.cpython-38.pyc │ │ │ │ ├── provider.cpython-38.pyc │ │ │ │ ├── reporter.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── candidates.py │ │ │ │ ├── factory.py │ │ │ │ ├── found_candidates.py │ │ │ │ ├── provider.py │ │ │ │ ├── reporter.py │ │ │ │ ├── requirements.py │ │ │ │ └── resolver.py │ │ ├── self_outdated_check.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── compatibility_tags.cpython-38.pyc │ │ │ │ ├── datetime.cpython-38.pyc │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ ├── direct_url_helpers.cpython-38.pyc │ │ │ │ ├── distutils_args.cpython-38.pyc │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ ├── entrypoints.cpython-38.pyc │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ ├── filetypes.cpython-38.pyc │ │ │ │ ├── glibc.cpython-38.pyc │ │ │ │ ├── hashes.cpython-38.pyc │ │ │ │ ├── inject_securetransport.cpython-38.pyc │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ ├── parallel.cpython-38.pyc │ │ │ │ ├── pkg_resources.cpython-38.pyc │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ ├── subprocess.cpython-38.pyc │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ ├── unpacking.cpython-38.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── virtualenv.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── appdirs.py │ │ │ ├── compat.py │ │ │ ├── compatibility_tags.py │ │ │ ├── datetime.py │ │ │ ├── deprecation.py │ │ │ ├── direct_url_helpers.py │ │ │ ├── distutils_args.py │ │ │ ├── encoding.py │ │ │ ├── entrypoints.py │ │ │ ├── filesystem.py │ │ │ ├── filetypes.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── inject_securetransport.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── models.py │ │ │ ├── packaging.py │ │ │ ├── parallel.py │ │ │ ├── pkg_resources.py │ │ │ ├── setuptools_build.py │ │ │ ├── subprocess.py │ │ │ ├── temp_dir.py │ │ │ ├── unpacking.py │ │ │ ├── urls.py │ │ │ ├── virtualenv.py │ │ │ └── wheel.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── bazaar.cpython-38.pyc │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ ├── mercurial.cpython-38.pyc │ │ │ │ ├── subversion.cpython-38.pyc │ │ │ │ └── versioncontrol.cpython-38.pyc │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ ├── subversion.py │ │ │ └── versioncontrol.py │ │ └── wheel_builder.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── appdirs.cpython-38.pyc │ │ │ ├── distro.cpython-38.pyc │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ └── six.cpython-38.pyc │ │ ├── appdirs.py │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _cmd.cpython-38.pyc │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── controller.cpython-38.pyc │ │ │ │ ├── filewrapper.cpython-38.pyc │ │ │ │ ├── heuristics.cpython-38.pyc │ │ │ │ ├── serialize.cpython-38.pyc │ │ │ │ └── wrapper.cpython-38.pyc │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── file_cache.cpython-38.pyc │ │ │ │ │ └── redis_cache.cpython-38.pyc │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ └── core.cpython-38.pyc │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── big5freq.cpython-38.pyc │ │ │ │ ├── big5prober.cpython-38.pyc │ │ │ │ ├── chardistribution.cpython-38.pyc │ │ │ │ ├── charsetgroupprober.cpython-38.pyc │ │ │ │ ├── charsetprober.cpython-38.pyc │ │ │ │ ├── codingstatemachine.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── cp949prober.cpython-38.pyc │ │ │ │ ├── enums.cpython-38.pyc │ │ │ │ ├── escprober.cpython-38.pyc │ │ │ │ ├── escsm.cpython-38.pyc │ │ │ │ ├── eucjpprober.cpython-38.pyc │ │ │ │ ├── euckrfreq.cpython-38.pyc │ │ │ │ ├── euckrprober.cpython-38.pyc │ │ │ │ ├── euctwfreq.cpython-38.pyc │ │ │ │ ├── euctwprober.cpython-38.pyc │ │ │ │ ├── gb2312freq.cpython-38.pyc │ │ │ │ ├── gb2312prober.cpython-38.pyc │ │ │ │ ├── hebrewprober.cpython-38.pyc │ │ │ │ ├── jisfreq.cpython-38.pyc │ │ │ │ ├── jpcntx.cpython-38.pyc │ │ │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ │ │ ├── langgreekmodel.cpython-38.pyc │ │ │ │ ├── langhebrewmodel.cpython-38.pyc │ │ │ │ ├── langhungarianmodel.cpython-38.pyc │ │ │ │ ├── langrussianmodel.cpython-38.pyc │ │ │ │ ├── langthaimodel.cpython-38.pyc │ │ │ │ ├── langturkishmodel.cpython-38.pyc │ │ │ │ ├── latin1prober.cpython-38.pyc │ │ │ │ ├── mbcharsetprober.cpython-38.pyc │ │ │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ │ │ ├── mbcssm.cpython-38.pyc │ │ │ │ ├── sbcharsetprober.cpython-38.pyc │ │ │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ │ │ ├── sjisprober.cpython-38.pyc │ │ │ │ ├── universaldetector.cpython-38.pyc │ │ │ │ ├── utf8prober.cpython-38.pyc │ │ │ │ └── version.cpython-38.pyc │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── chardetect.cpython-38.pyc │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langrussianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── languages.cpython-38.pyc │ │ │ │ └── languages.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── ansi.cpython-38.pyc │ │ │ │ ├── ansitowin32.cpython-38.pyc │ │ │ │ ├── initialise.cpython-38.pyc │ │ │ │ ├── win32.cpython-38.pyc │ │ │ │ └── winterm.cpython-38.pyc │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── database.cpython-38.pyc │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ ├── locators.cpython-38.pyc │ │ │ │ ├── manifest.cpython-38.pyc │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ ├── resources.cpython-38.pyc │ │ │ │ ├── scripts.cpython-38.pyc │ │ │ │ ├── util.cpython-38.pyc │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ ├── shutil.cpython-38.pyc │ │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ │ └── tarfile.cpython-38.pyc │ │ │ │ ├── misc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ └── tarfile.py │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ ├── distro.py │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _ihatexml.cpython-38.pyc │ │ │ │ ├── _inputstream.cpython-38.pyc │ │ │ │ ├── _tokenizer.cpython-38.pyc │ │ │ │ ├── _utils.cpython-38.pyc │ │ │ │ ├── constants.cpython-38.pyc │ │ │ │ ├── html5parser.cpython-38.pyc │ │ │ │ └── serializer.cpython-38.pyc │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _base.cpython-38.pyc │ │ │ │ │ └── py.cpython-38.pyc │ │ │ │ ├── _base.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── alphabeticalattributes.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── inject_meta_charset.cpython-38.pyc │ │ │ │ │ ├── lint.cpython-38.pyc │ │ │ │ │ ├── optionaltags.cpython-38.pyc │ │ │ │ │ ├── sanitizer.cpython-38.pyc │ │ │ │ │ └── whitespace.cpython-38.pyc │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── genshi.cpython-38.pyc │ │ │ │ │ └── sax.cpython-38.pyc │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ │ └── etree_lxml.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ ├── etree_lxml.cpython-38.pyc │ │ │ │ └── genshi.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── codec.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ ├── idnadata.cpython-38.pyc │ │ │ │ ├── intranges.cpython-38.pyc │ │ │ │ ├── package_data.cpython-38.pyc │ │ │ │ └── uts46data.cpython-38.pyc │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _version.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── ext.cpython-38.pyc │ │ │ │ └── fallback.cpython-38.pyc │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ ├── ext.py │ │ │ └── fallback.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── version.cpython-38.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ ├── colorlog.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── dirtools.cpython-38.pyc │ │ │ │ ├── envbuild.cpython-38.pyc │ │ │ │ ├── meta.cpython-38.pyc │ │ │ │ └── wrappers.cpython-38.pyc │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── dirtools.py │ │ │ ├── envbuild.py │ │ │ ├── in_process │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── _in_process.cpython-38.pyc │ │ │ │ └── _in_process.py │ │ │ ├── meta.py │ │ │ └── wrappers.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── py31compat.cpython-38.pyc │ │ │ └── py31compat.py │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── bar.cpython-38.pyc │ │ │ │ ├── counter.cpython-38.pyc │ │ │ │ └── spinner.cpython-38.pyc │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ └── spinner.py │ │ ├── pyparsing.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __version__.cpython-38.pyc │ │ │ │ ├── _internal_utils.cpython-38.pyc │ │ │ │ ├── adapters.cpython-38.pyc │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ ├── certs.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── cookies.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ ├── hooks.cpython-38.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── packages.cpython-38.pyc │ │ │ │ ├── sessions.cpython-38.pyc │ │ │ │ ├── status_codes.cpython-38.pyc │ │ │ │ ├── structures.cpython-38.pyc │ │ │ │ └── utils.cpython-38.pyc │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ ├── resolvelib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── providers.cpython-38.pyc │ │ │ │ ├── reporters.cpython-38.pyc │ │ │ │ ├── resolvers.cpython-38.pyc │ │ │ │ └── structs.cpython-38.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── collections_abc.cpython-38.pyc │ │ │ │ └── collections_abc.py │ │ │ ├── providers.py │ │ │ ├── reporters.py │ │ │ ├── resolvers.py │ │ │ └── structs.py │ │ ├── six.py │ │ ├── tenacity │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _asyncio.cpython-38.pyc │ │ │ │ ├── _utils.cpython-38.pyc │ │ │ │ ├── after.cpython-38.pyc │ │ │ │ ├── before.cpython-38.pyc │ │ │ │ ├── before_sleep.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── nap.cpython-38.pyc │ │ │ │ ├── retry.cpython-38.pyc │ │ │ │ ├── stop.cpython-38.pyc │ │ │ │ ├── tornadoweb.cpython-38.pyc │ │ │ │ └── wait.cpython-38.pyc │ │ │ ├── _asyncio.py │ │ │ ├── _utils.py │ │ │ ├── after.py │ │ │ ├── before.py │ │ │ ├── before_sleep.py │ │ │ ├── compat.py │ │ │ ├── nap.py │ │ │ ├── retry.py │ │ │ ├── stop.py │ │ │ ├── tornadoweb.py │ │ │ └── wait.py │ │ ├── toml │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── decoder.cpython-38.pyc │ │ │ │ ├── encoder.cpython-38.pyc │ │ │ │ ├── ordered.cpython-38.pyc │ │ │ │ └── tz.cpython-38.pyc │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── ordered.py │ │ │ └── tz.py │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _collections.cpython-38.pyc │ │ │ │ ├── _version.cpython-38.pyc │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ ├── connectionpool.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ ├── filepost.cpython-38.pyc │ │ │ │ ├── poolmanager.cpython-38.pyc │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ └── response.cpython-38.pyc │ │ │ ├── _collections.py │ │ │ ├── _version.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _appengine_environ.cpython-38.pyc │ │ │ │ │ ├── appengine.cpython-38.pyc │ │ │ │ │ ├── ntlmpool.cpython-38.pyc │ │ │ │ │ ├── pyopenssl.cpython-38.pyc │ │ │ │ │ ├── securetransport.cpython-38.pyc │ │ │ │ │ └── socks.cpython-38.pyc │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── bindings.cpython-38.pyc │ │ │ │ │ │ └── low_level.cpython-38.pyc │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── makefile.cpython-38.pyc │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── _implementation.cpython-38.pyc │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ ├── proxy.cpython-38.pyc │ │ │ │ ├── queue.cpython-38.pyc │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ ├── response.cpython-38.pyc │ │ │ │ ├── retry.cpython-38.pyc │ │ │ │ ├── ssl_.cpython-38.pyc │ │ │ │ ├── ssltransport.cpython-38.pyc │ │ │ │ ├── timeout.cpython-38.pyc │ │ │ │ ├── url.cpython-38.pyc │ │ │ │ └── wait.cpython-38.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── proxy.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── ssltransport.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ ├── vendor.txt │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── labels.cpython-38.pyc │ │ │ ├── mklabels.cpython-38.pyc │ │ │ ├── tests.cpython-38.pyc │ │ │ └── x_user_defined.cpython-38.pyc │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ └── py.typed │ ├── pkg_resources │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── appdirs.cpython-38.pyc │ │ │ └── pyparsing.cpython-38.pyc │ │ ├── appdirs.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── version.cpython-38.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ └── pyparsing.py │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ └── tests │ │ └── data │ │ └── my-test-package-source │ │ ├── __pycache__ │ │ └── setup.cpython-38.pyc │ │ └── setup.py │ ├── requests-2.26.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt │ ├── requests │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __version__.cpython-38.pyc │ │ ├── _internal_utils.cpython-38.pyc │ │ ├── adapters.cpython-38.pyc │ │ ├── api.cpython-38.pyc │ │ ├── auth.cpython-38.pyc │ │ ├── certs.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── cookies.cpython-38.pyc │ │ ├── exceptions.cpython-38.pyc │ │ ├── help.cpython-38.pyc │ │ ├── hooks.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── packages.cpython-38.pyc │ │ ├── sessions.cpython-38.pyc │ │ ├── status_codes.cpython-38.pyc │ │ ├── structures.cpython-38.pyc │ │ └── utils.cpython-38.pyc │ ├── __version__.py │ ├── _internal_utils.py │ ├── adapters.py │ ├── api.py │ ├── auth.py │ ├── certs.py │ ├── compat.py │ ├── cookies.py │ ├── exceptions.py │ ├── help.py │ ├── hooks.py │ ├── models.py │ ├── packages.py │ ├── sessions.py │ ├── status_codes.py │ ├── structures.py │ └── utils.py │ ├── setuptools-56.0.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── dependency_links.txt │ ├── entry_points.txt │ └── top_level.txt │ ├── setuptools │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _deprecation_warning.cpython-38.pyc │ │ ├── _imp.cpython-38.pyc │ │ ├── archive_util.cpython-38.pyc │ │ ├── build_meta.cpython-38.pyc │ │ ├── config.cpython-38.pyc │ │ ├── dep_util.cpython-38.pyc │ │ ├── depends.cpython-38.pyc │ │ ├── dist.cpython-38.pyc │ │ ├── errors.cpython-38.pyc │ │ ├── extension.cpython-38.pyc │ │ ├── glob.cpython-38.pyc │ │ ├── installer.cpython-38.pyc │ │ ├── launch.cpython-38.pyc │ │ ├── lib2to3_ex.cpython-38.pyc │ │ ├── monkey.cpython-38.pyc │ │ ├── msvc.cpython-38.pyc │ │ ├── namespaces.cpython-38.pyc │ │ ├── package_index.cpython-38.pyc │ │ ├── py34compat.cpython-38.pyc │ │ ├── sandbox.cpython-38.pyc │ │ ├── ssl_support.cpython-38.pyc │ │ ├── unicode_utils.cpython-38.pyc │ │ ├── version.cpython-38.pyc │ │ ├── wheel.cpython-38.pyc │ │ └── windows_support.cpython-38.pyc │ ├── _deprecation_warning.py │ ├── _distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _msvccompiler.cpython-38.pyc │ │ │ ├── archive_util.cpython-38.pyc │ │ │ ├── bcppcompiler.cpython-38.pyc │ │ │ ├── ccompiler.cpython-38.pyc │ │ │ ├── cmd.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── core.cpython-38.pyc │ │ │ ├── cygwinccompiler.cpython-38.pyc │ │ │ ├── debug.cpython-38.pyc │ │ │ ├── dep_util.cpython-38.pyc │ │ │ ├── dir_util.cpython-38.pyc │ │ │ ├── dist.cpython-38.pyc │ │ │ ├── errors.cpython-38.pyc │ │ │ ├── extension.cpython-38.pyc │ │ │ ├── fancy_getopt.cpython-38.pyc │ │ │ ├── file_util.cpython-38.pyc │ │ │ ├── filelist.cpython-38.pyc │ │ │ ├── log.cpython-38.pyc │ │ │ ├── msvc9compiler.cpython-38.pyc │ │ │ ├── msvccompiler.cpython-38.pyc │ │ │ ├── py35compat.cpython-38.pyc │ │ │ ├── py38compat.cpython-38.pyc │ │ │ ├── spawn.cpython-38.pyc │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ ├── text_file.cpython-38.pyc │ │ │ ├── unixccompiler.cpython-38.pyc │ │ │ ├── util.cpython-38.pyc │ │ │ ├── version.cpython-38.pyc │ │ │ └── versionpredicate.cpython-38.pyc │ │ ├── _msvccompiler.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── bdist.cpython-38.pyc │ │ │ │ ├── bdist_dumb.cpython-38.pyc │ │ │ │ ├── bdist_msi.cpython-38.pyc │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ ├── build_scripts.cpython-38.pyc │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ ├── clean.cpython-38.pyc │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── install_data.cpython-38.pyc │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ ├── install_headers.cpython-38.pyc │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ ├── py37compat.cpython-38.pyc │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ └── upload.cpython-38.pyc │ │ │ ├── bdist.py │ │ │ ├── bdist_dumb.py │ │ │ ├── bdist_msi.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── build_scripts.py │ │ │ ├── check.py │ │ │ ├── clean.py │ │ │ ├── config.py │ │ │ ├── install.py │ │ │ ├── install_data.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_headers.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── py37compat.py │ │ │ ├── register.py │ │ │ ├── sdist.py │ │ │ └── upload.py │ │ ├── config.py │ │ ├── core.py │ │ ├── cygwinccompiler.py │ │ ├── debug.py │ │ ├── dep_util.py │ │ ├── dir_util.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── fancy_getopt.py │ │ ├── file_util.py │ │ ├── filelist.py │ │ ├── log.py │ │ ├── msvc9compiler.py │ │ ├── msvccompiler.py │ │ ├── py35compat.py │ │ ├── py38compat.py │ │ ├── spawn.py │ │ ├── sysconfig.py │ │ ├── text_file.py │ │ ├── unixccompiler.py │ │ ├── util.py │ │ ├── version.py │ │ └── versionpredicate.py │ ├── _imp.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── ordered_set.cpython-38.pyc │ │ │ └── pyparsing.cpython-38.pyc │ │ ├── ordered_set.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── version.cpython-38.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ └── pyparsing.py │ ├── archive_util.py │ ├── build_meta.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli.exe │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── alias.cpython-38.pyc │ │ │ ├── bdist_egg.cpython-38.pyc │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ ├── build_clib.cpython-38.pyc │ │ │ ├── build_ext.cpython-38.pyc │ │ │ ├── build_py.cpython-38.pyc │ │ │ ├── develop.cpython-38.pyc │ │ │ ├── dist_info.cpython-38.pyc │ │ │ ├── easy_install.cpython-38.pyc │ │ │ ├── egg_info.cpython-38.pyc │ │ │ ├── install.cpython-38.pyc │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ ├── install_lib.cpython-38.pyc │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ ├── py36compat.cpython-38.pyc │ │ │ ├── register.cpython-38.pyc │ │ │ ├── rotate.cpython-38.pyc │ │ │ ├── saveopts.cpython-38.pyc │ │ │ ├── sdist.cpython-38.pyc │ │ │ ├── setopt.cpython-38.pyc │ │ │ ├── test.cpython-38.pyc │ │ │ ├── upload.cpython-38.pyc │ │ │ └── upload_docs.cpython-38.pyc │ │ ├── alias.py │ │ ├── bdist_egg.py │ │ ├── bdist_rpm.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── develop.py │ │ ├── dist_info.py │ │ ├── easy_install.py │ │ ├── egg_info.py │ │ ├── install.py │ │ ├── install_egg_info.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── launcher manifest.xml │ │ ├── py36compat.py │ │ ├── register.py │ │ ├── rotate.py │ │ ├── saveopts.py │ │ ├── sdist.py │ │ ├── setopt.py │ │ ├── test.py │ │ ├── upload.py │ │ └── upload_docs.py │ ├── config.py │ ├── dep_util.py │ ├── depends.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ ├── glob.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui.exe │ ├── installer.py │ ├── launch.py │ ├── lib2to3_ex.py │ ├── monkey.py │ ├── msvc.py │ ├── namespaces.py │ ├── package_index.py │ ├── py34compat.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── ssl_support.py │ ├── unicode_utils.py │ ├── version.py │ ├── wheel.py │ └── windows_support.py │ ├── urllib3-1.26.6.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ └── urllib3 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── _collections.cpython-38.pyc │ ├── _version.cpython-38.pyc │ ├── connection.cpython-38.pyc │ ├── connectionpool.cpython-38.pyc │ ├── exceptions.cpython-38.pyc │ ├── fields.cpython-38.pyc │ ├── filepost.cpython-38.pyc │ ├── poolmanager.cpython-38.pyc │ ├── request.cpython-38.pyc │ └── response.cpython-38.pyc │ ├── _collections.py │ ├── _version.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _appengine_environ.cpython-38.pyc │ │ ├── appengine.cpython-38.pyc │ │ ├── ntlmpool.cpython-38.pyc │ │ ├── pyopenssl.cpython-38.pyc │ │ ├── securetransport.cpython-38.pyc │ │ └── socks.cpython-38.pyc │ ├── _appengine_environ.py │ ├── _securetransport │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── bindings.cpython-38.pyc │ │ │ └── low_level.cpython-38.pyc │ │ ├── bindings.py │ │ └── low_level.py │ ├── appengine.py │ ├── ntlmpool.py │ ├── pyopenssl.py │ ├── securetransport.py │ └── socks.py │ ├── exceptions.py │ ├── fields.py │ ├── filepost.py │ ├── packages │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── six.cpython-38.pyc │ ├── backports │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── makefile.cpython-38.pyc │ │ └── makefile.py │ ├── six.py │ └── ssl_match_hostname │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── _implementation.cpython-38.pyc │ │ └── _implementation.py │ ├── poolmanager.py │ ├── request.py │ ├── response.py │ └── util │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── connection.cpython-38.pyc │ ├── proxy.cpython-38.pyc │ ├── queue.cpython-38.pyc │ ├── request.cpython-38.pyc │ ├── response.cpython-38.pyc │ ├── retry.cpython-38.pyc │ ├── ssl_.cpython-38.pyc │ ├── ssltransport.cpython-38.pyc │ ├── timeout.cpython-38.pyc │ ├── url.cpython-38.pyc │ └── wait.cpython-38.pyc │ ├── connection.py │ ├── proxy.py │ ├── queue.py │ ├── request.py │ ├── response.py │ ├── retry.py │ ├── ssl_.py │ ├── ssltransport.py │ ├── timeout.py │ ├── url.py │ └── wait.py ├── market_maker ├── Bands.py ├── MM.py ├── README.md ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── myBands.cpython-38.pyc │ ├── polymarketInterface.cpython-38.pyc │ └── testOrderbook.cpython-38.pyc ├── bands.json ├── limits.py ├── polymarketInterface.py ├── testOrderbook.py └── utils.py ├── pyvenv.cfg └── tests ├── __init__.py ├── __pycache__ ├── configure_bands.cpython-38.pyc └── configure_bands.cpython-39.pyc ├── bands_test.py ├── configure_bands.py └── configure_bands.pyc /.gitignore: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/README.md -------------------------------------------------------------------------------- /bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/bin/Activate.ps1 -------------------------------------------------------------------------------- /bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/bin/activate -------------------------------------------------------------------------------- /bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/bin/activate.csh -------------------------------------------------------------------------------- /bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/bin/activate.fish -------------------------------------------------------------------------------- /bin/normalizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/bin/normalizer -------------------------------------------------------------------------------- /bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/bin/pip -------------------------------------------------------------------------------- /bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/bin/pip3 -------------------------------------------------------------------------------- /bin/pip3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/bin/pip3.8 -------------------------------------------------------------------------------- /bin/python: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /bin/python3: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/bin/python3 -------------------------------------------------------------------------------- /lib/python3.8/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi-2021.5.30.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi-2021.5.30.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/certifi-2021.5.30.dist-info/LICENSE -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi-2021.5.30.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/certifi-2021.5.30.dist-info/METADATA -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi-2021.5.30.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/certifi-2021.5.30.dist-info/RECORD -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi-2021.5.30.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/certifi-2021.5.30.dist-info/WHEEL -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi-2021.5.30.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.05.30" 4 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/certifi/__main__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/certifi/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/certifi/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/certifi/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/certifi/cacert.pem -------------------------------------------------------------------------------- /lib/python3.8/site-packages/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/certifi/core.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer-2.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer-2.0.4.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer-2.0.4.dist-info/LICENSE -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer-2.0.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer-2.0.4.dist-info/METADATA -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer-2.0.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer-2.0.4.dist-info/RECORD -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer-2.0.4.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 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer-2.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | charset_normalizer 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/api.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/assets/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/cd.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/cli/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/cli/normalizer.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/constant.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/legacy.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/md.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/models.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/charset_normalizer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/charset_normalizer/version.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna-3.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna-3.2.dist-info/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna-3.2.dist-info/LICENSE.md -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna-3.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna-3.2.dist-info/METADATA -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna-3.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna-3.2.dist-info/RECORD -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna-3.2.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 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna-3.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/__pycache__/codec.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/__pycache__/codec.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/__pycache__/idnadata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/__pycache__/idnadata.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/__pycache__/intranges.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/__pycache__/intranges.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/__pycache__/package_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/__pycache__/package_data.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/__pycache__/uts46data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/__pycache__/uts46data.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/codec.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/core.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.2' 2 | 3 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip-21.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip-21.1.1.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip-21.1.1.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip-21.1.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip-21.1.1.dist-info/METADATA -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip-21.1.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip-21.1.1.dist-info/RECORD -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip-21.1.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip-21.1.1.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 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip-21.1.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip-21.1.1.dist-info/entry_points.txt -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip-21.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/__pycache__/main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/__pycache__/main.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/command_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/command_context.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/completion.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/configuration.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/download.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/distributions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/distributions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/distributions/base.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/distributions/installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/distributions/installed.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/distributions/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/distributions/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/index/package_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/index/package_finder.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/index/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/index/sources.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/locations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/locations/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/locations/_distutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/locations/_distutils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/locations/_sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/locations/_sysconfig.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/locations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/locations/base.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/metadata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/metadata/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/metadata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/metadata/base.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/metadata/pkg_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/metadata/pkg_resources.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/direct_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/direct_url.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/format_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/format_control.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/search_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/search_scope.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/target_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/target_python.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/network/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/network/download.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/network/session.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/operations/build/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/operations/build/metadata.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/operations/freeze.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/operations/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/operations/prepare.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/req/req_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/resolution/base.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/self_outdated_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/parallel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/__pycache__/distro.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/__pycache__/distro.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.12.05" 4 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/langrussianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/langrussianmodel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/metadata/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/languages.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/base.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/serializer.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/sax.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/base.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/dom.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/base.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/dom.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.1' 2 | 3 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 2) 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/msgpack/exceptions.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/_typing.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/requirements.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/dirtools.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/in_process/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/meta.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pkg_resources/py31compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/progress/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/__version__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/_internal_utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/exceptions.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/packages.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/status_codes.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/structures.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/resolvelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/resolvelib/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/resolvelib/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/resolvelib/providers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/resolvelib/reporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/resolvelib/reporters.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/resolvelib/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/resolvelib/structs.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/_asyncio.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/_utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/after.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/before.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/before_sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/before_sleep.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/nap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/nap.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/retry.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/stop.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/tornadoweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/tornadoweb.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/tenacity/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/tenacity/wait.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/toml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/toml/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/toml/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/toml/decoder.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/toml/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/toml/encoder.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/toml/ordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/toml/ordered.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/toml/tz.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/_collections.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.4" 3 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/connection.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/connectionpool.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/exceptions.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/six.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/poolmanager.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/connection.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/proxy.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/queue.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/request.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/response.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/retry.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/timeout.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/urllib3/util/wait.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/webencodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/webencodings/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/webencodings/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/webencodings/labels.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/webencodings/mklabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/webencodings/mklabels.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/webencodings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/webencodings/tests.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/_vendor/webencodings/x_user_defined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/_vendor/webencodings/x_user_defined.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pip/py.typed -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/appdirs.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_typing.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/version.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/_vendor/pyparsing.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/pkg_resources/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/pkg_resources/extern/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests-2.26.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests-2.26.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests-2.26.0.dist-info/LICENSE -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests-2.26.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests-2.26.0.dist-info/METADATA -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests-2.26.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests-2.26.0.dist-info/RECORD -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests-2.26.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests-2.26.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests-2.26.0.dist-info/WHEEL -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests-2.26.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/adapters.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/adapters.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/auth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/auth.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/certs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/certs.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/cookies.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/cookies.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/hooks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/hooks.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/packages.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/packages.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/sessions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/sessions.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/__version__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/_internal_utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/adapters.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/api.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/auth.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/certs.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/cookies.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/exceptions.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/help.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/hooks.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/models.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/packages.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/sessions.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/status_codes.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/structures.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/requests/utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools-56.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools-56.0.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/LICENSE -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools-56.0.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/METADATA -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools-56.0.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/RECORD -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools-56.0.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools-56.0.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 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools-56.0.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/entry_points.txt -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools-56.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/__pycache__/_imp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/__pycache__/_imp.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/__pycache__/depends.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/__pycache__/depends.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/__pycache__/dist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/__pycache__/dist.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/__pycache__/errors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/__pycache__/errors.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/__pycache__/glob.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/__pycache__/glob.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/__pycache__/launch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/__pycache__/launch.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/__pycache__/monkey.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/__pycache__/monkey.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/__pycache__/msvc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/__pycache__/msvc.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_deprecation_warning.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/_msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/_msvccompiler.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/archive_util.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/bcppcompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/bcppcompiler.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/ccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/ccompiler.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/bdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/bdist.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/bdist_msi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_msi.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_rpm.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/build.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/build_ext.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/build_py.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/check.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/clean.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/config.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/install.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/register.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/sdist.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/command/upload.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/config.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/cygwinccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/cygwinccompiler.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/debug.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/dep_util.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/dir_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/dir_util.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/errors.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/extension.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/fancy_getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/fancy_getopt.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/file_util.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/filelist.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/msvc9compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/msvc9compiler.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/msvccompiler.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/py35compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/py35compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/py38compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/py38compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/spawn.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/sysconfig.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/text_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/text_file.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/unixccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/unixccompiler.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/version.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_distutils/versionpredicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_distutils/versionpredicate.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/ordered_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/ordered_set.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/packaging/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/packaging/_typing.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/packaging/version.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/_vendor/pyparsing.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/build_clib.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/easy_install.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/install_egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/install_egg_info.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/install_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/install_lib.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/install_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/install_scripts.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/launcher manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/launcher manifest.xml -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/py36compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/py36compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/command/upload_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/command/upload_docs.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3-1.26.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3-1.26.6.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3-1.26.6.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3-1.26.6.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3-1.26.6.dist-info/METADATA -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3-1.26.6.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3-1.26.6.dist-info/RECORD -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3-1.26.6.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3-1.26.6.dist-info/WHEEL -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3-1.26.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/_collections.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.6" 3 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/connection.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/fields.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/filepost.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/request.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/response.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/__init__.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/connection.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/proxy.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/queue.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/request.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/response.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/url.py -------------------------------------------------------------------------------- /lib/python3.8/site-packages/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/lib/python3.8/site-packages/urllib3/util/wait.py -------------------------------------------------------------------------------- /market_maker/Bands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/Bands.py -------------------------------------------------------------------------------- /market_maker/MM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/MM.py -------------------------------------------------------------------------------- /market_maker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/README.md -------------------------------------------------------------------------------- /market_maker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market_maker/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /market_maker/__pycache__/myBands.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/__pycache__/myBands.cpython-38.pyc -------------------------------------------------------------------------------- /market_maker/__pycache__/polymarketInterface.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/__pycache__/polymarketInterface.cpython-38.pyc -------------------------------------------------------------------------------- /market_maker/__pycache__/testOrderbook.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/__pycache__/testOrderbook.cpython-38.pyc -------------------------------------------------------------------------------- /market_maker/bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/bands.json -------------------------------------------------------------------------------- /market_maker/limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/limits.py -------------------------------------------------------------------------------- /market_maker/polymarketInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/polymarketInterface.py -------------------------------------------------------------------------------- /market_maker/testOrderbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/testOrderbook.py -------------------------------------------------------------------------------- /market_maker/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/market_maker/utils.py -------------------------------------------------------------------------------- /pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/pyvenv.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__pycache__/configure_bands.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/tests/__pycache__/configure_bands.cpython-38.pyc -------------------------------------------------------------------------------- /tests/__pycache__/configure_bands.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/tests/__pycache__/configure_bands.cpython-39.pyc -------------------------------------------------------------------------------- /tests/bands_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/tests/bands_test.py -------------------------------------------------------------------------------- /tests/configure_bands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/tests/configure_bands.py -------------------------------------------------------------------------------- /tests/configure_bands.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elielieli909/polymarket-marketmaking/HEAD/tests/configure_bands.pyc --------------------------------------------------------------------------------