├── 0x01-Dice ├── README.md └── dicesimulator.py ├── 0x02-Dictionary ├── .idea │ ├── .gitignore │ ├── 2-dictionary.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── README.md ├── data.json ├── dictionary.py └── main.py ├── 0x03-HangingMan ├── .idea │ ├── .gitignore │ ├── 3-hangingMan.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── README.md └── main.py ├── 0x04-TicTacToe ├── .idea │ ├── .gitignore │ ├── 4-ticTacToe.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── README.md └── main.py ├── 0x05-Conditional ├── .idea │ ├── .gitignore │ ├── conditional.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── main.py └── venv │ ├── bin │ ├── Activate.ps1 │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── pip │ ├── pip3 │ ├── pip3.9 │ ├── python │ ├── python3 │ └── python3.9 │ ├── lib │ └── python3.9 │ │ └── site-packages │ │ ├── _distutils_hack │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── override.cpython-39.pyc │ │ └── override.py │ │ ├── distutils-precedence.pth │ │ ├── pip-21.1.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── __main__.cpython-39.pyc │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── build_env.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ ├── pyproject.cpython-39.pyc │ │ │ │ ├── self_outdated_check.cpython-39.pyc │ │ │ │ └── wheel_builder.cpython-39.pyc │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── autocompletion.cpython-39.pyc │ │ │ │ │ ├── base_command.cpython-39.pyc │ │ │ │ │ ├── cmdoptions.cpython-39.pyc │ │ │ │ │ ├── command_context.cpython-39.pyc │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ ├── main_parser.cpython-39.pyc │ │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ │ ├── progress_bars.cpython-39.pyc │ │ │ │ │ ├── req_command.cpython-39.pyc │ │ │ │ │ ├── spinners.cpython-39.pyc │ │ │ │ │ └── status_codes.cpython-39.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-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── completion.cpython-39.pyc │ │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ ├── hash.cpython-39.pyc │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ ├── list.cpython-39.pyc │ │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ │ ├── show.cpython-39.pyc │ │ │ │ │ ├── uninstall.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.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-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── installed.cpython-39.pyc │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── installed.py │ │ │ │ ├── sdist.py │ │ │ │ └── wheel.py │ │ │ ├── exceptions.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── collector.cpython-39.pyc │ │ │ │ │ ├── package_finder.cpython-39.pyc │ │ │ │ │ └── sources.cpython-39.pyc │ │ │ │ ├── collector.py │ │ │ │ ├── package_finder.py │ │ │ │ └── sources.py │ │ │ ├── locations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _distutils.cpython-39.pyc │ │ │ │ │ ├── _sysconfig.cpython-39.pyc │ │ │ │ │ └── base.cpython-39.pyc │ │ │ │ ├── _distutils.py │ │ │ │ ├── _sysconfig.py │ │ │ │ └── base.py │ │ │ ├── main.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ └── pkg_resources.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ └── pkg_resources.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── candidate.cpython-39.pyc │ │ │ │ │ ├── direct_url.cpython-39.pyc │ │ │ │ │ ├── format_control.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── link.cpython-39.pyc │ │ │ │ │ ├── scheme.cpython-39.pyc │ │ │ │ │ ├── search_scope.cpython-39.pyc │ │ │ │ │ ├── selection_prefs.cpython-39.pyc │ │ │ │ │ ├── target_python.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.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-39.pyc │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ ├── lazy_wheel.cpython-39.pyc │ │ │ │ │ ├── session.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── xmlrpc.cpython-39.pyc │ │ │ │ ├── auth.py │ │ │ │ ├── cache.py │ │ │ │ ├── download.py │ │ │ │ ├── lazy_wheel.py │ │ │ │ ├── session.py │ │ │ │ ├── utils.py │ │ │ │ └── xmlrpc.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ └── prepare.cpython-39.pyc │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ │ ├── metadata_legacy.cpython-39.pyc │ │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ │ └── wheel_legacy.cpython-39.pyc │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ ├── wheel.py │ │ │ │ │ └── wheel_legacy.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── editable_legacy.cpython-39.pyc │ │ │ │ │ │ ├── legacy.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ ├── legacy.py │ │ │ │ │ └── wheel.py │ │ │ │ └── prepare.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ │ ├── req_file.cpython-39.pyc │ │ │ │ │ ├── req_install.cpython-39.pyc │ │ │ │ │ ├── req_set.cpython-39.pyc │ │ │ │ │ ├── req_tracker.cpython-39.pyc │ │ │ │ │ └── req_uninstall.cpython-39.pyc │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── base.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── legacy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ │ └── resolver.py │ │ │ │ └── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── candidates.cpython-39.pyc │ │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ │ ├── found_candidates.cpython-39.pyc │ │ │ │ │ ├── provider.cpython-39.pyc │ │ │ │ │ ├── reporter.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ └── resolver.cpython-39.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-39.pyc │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── compatibility_tags.cpython-39.pyc │ │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ │ ├── direct_url_helpers.cpython-39.pyc │ │ │ │ │ ├── distutils_args.cpython-39.pyc │ │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ │ ├── entrypoints.cpython-39.pyc │ │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ │ ├── filetypes.cpython-39.pyc │ │ │ │ │ ├── glibc.cpython-39.pyc │ │ │ │ │ ├── hashes.cpython-39.pyc │ │ │ │ │ ├── inject_securetransport.cpython-39.pyc │ │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ ├── packaging.cpython-39.pyc │ │ │ │ │ ├── parallel.cpython-39.pyc │ │ │ │ │ ├── pkg_resources.cpython-39.pyc │ │ │ │ │ ├── setuptools_build.cpython-39.pyc │ │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ │ ├── temp_dir.cpython-39.pyc │ │ │ │ │ ├── unpacking.cpython-39.pyc │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ ├── virtualenv.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.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-39.pyc │ │ │ │ │ ├── bazaar.cpython-39.pyc │ │ │ │ │ ├── git.cpython-39.pyc │ │ │ │ │ ├── mercurial.cpython-39.pyc │ │ │ │ │ ├── subversion.cpython-39.pyc │ │ │ │ │ └── versioncontrol.cpython-39.pyc │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ ├── subversion.py │ │ │ │ └── versioncontrol.py │ │ │ └── wheel_builder.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ ├── distro.cpython-39.pyc │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ └── six.cpython-39.pyc │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _cmd.cpython-39.pyc │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── controller.cpython-39.pyc │ │ │ │ │ ├── filewrapper.cpython-39.pyc │ │ │ │ │ ├── heuristics.cpython-39.pyc │ │ │ │ │ ├── serialize.cpython-39.pyc │ │ │ │ │ └── wrapper.cpython-39.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── file_cache.cpython-39.pyc │ │ │ │ │ │ └── redis_cache.cpython-39.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-39.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ └── core.cpython-39.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── big5freq.cpython-39.pyc │ │ │ │ │ ├── big5prober.cpython-39.pyc │ │ │ │ │ ├── chardistribution.cpython-39.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-39.pyc │ │ │ │ │ ├── charsetprober.cpython-39.pyc │ │ │ │ │ ├── codingstatemachine.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── cp949prober.cpython-39.pyc │ │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ │ ├── escprober.cpython-39.pyc │ │ │ │ │ ├── escsm.cpython-39.pyc │ │ │ │ │ ├── eucjpprober.cpython-39.pyc │ │ │ │ │ ├── euckrfreq.cpython-39.pyc │ │ │ │ │ ├── euckrprober.cpython-39.pyc │ │ │ │ │ ├── euctwfreq.cpython-39.pyc │ │ │ │ │ ├── euctwprober.cpython-39.pyc │ │ │ │ │ ├── gb2312freq.cpython-39.pyc │ │ │ │ │ ├── gb2312prober.cpython-39.pyc │ │ │ │ │ ├── hebrewprober.cpython-39.pyc │ │ │ │ │ ├── jisfreq.cpython-39.pyc │ │ │ │ │ ├── jpcntx.cpython-39.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-39.pyc │ │ │ │ │ ├── langgreekmodel.cpython-39.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-39.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-39.pyc │ │ │ │ │ ├── langrussianmodel.cpython-39.pyc │ │ │ │ │ ├── langthaimodel.cpython-39.pyc │ │ │ │ │ ├── langturkishmodel.cpython-39.pyc │ │ │ │ │ ├── latin1prober.cpython-39.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-39.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-39.pyc │ │ │ │ │ ├── mbcssm.cpython-39.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-39.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-39.pyc │ │ │ │ │ ├── sjisprober.cpython-39.pyc │ │ │ │ │ ├── universaldetector.cpython-39.pyc │ │ │ │ │ ├── utf8prober.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── chardetect.cpython-39.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-39.pyc │ │ │ │ │ │ └── languages.cpython-39.pyc │ │ │ │ │ └── languages.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ │ ├── ansitowin32.cpython-39.pyc │ │ │ │ │ ├── initialise.cpython-39.pyc │ │ │ │ │ ├── win32.cpython-39.pyc │ │ │ │ │ └── winterm.cpython-39.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── locators.cpython-39.pyc │ │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ │ ├── scripts.cpython-39.pyc │ │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ │ ├── shutil.cpython-39.pyc │ │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ │ └── tarfile.cpython-39.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-39.pyc │ │ │ │ │ ├── _ihatexml.cpython-39.pyc │ │ │ │ │ ├── _inputstream.cpython-39.pyc │ │ │ │ │ ├── _tokenizer.cpython-39.pyc │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ ├── html5parser.cpython-39.pyc │ │ │ │ │ └── serializer.cpython-39.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ │ │ └── py.cpython-39.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-39.pyc │ │ │ │ │ │ ├── lint.cpython-39.pyc │ │ │ │ │ │ ├── optionaltags.cpython-39.pyc │ │ │ │ │ │ ├── sanitizer.cpython-39.pyc │ │ │ │ │ │ └── whitespace.cpython-39.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-39.pyc │ │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ │ └── sax.cpython-39.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ ├── etree_lxml.cpython-39.pyc │ │ │ │ │ └── genshi.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── codec.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ ├── idnadata.cpython-39.pyc │ │ │ │ │ ├── intranges.cpython-39.pyc │ │ │ │ │ ├── package_data.cpython-39.pyc │ │ │ │ │ └── uts46data.cpython-39.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── ext.cpython-39.pyc │ │ │ │ │ └── fallback.cpython-39.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.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-39.pyc │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── colorlog.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── dirtools.cpython-39.pyc │ │ │ │ │ ├── envbuild.cpython-39.pyc │ │ │ │ │ ├── meta.cpython-39.pyc │ │ │ │ │ └── wrappers.cpython-39.pyc │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── dirtools.py │ │ │ │ ├── envbuild.py │ │ │ │ ├── in_process │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── _in_process.cpython-39.pyc │ │ │ │ │ └── _in_process.py │ │ │ │ ├── meta.py │ │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── py31compat.cpython-39.pyc │ │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ │ ├── counter.cpython-39.pyc │ │ │ │ │ └── spinner.cpython-39.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __version__.cpython-39.pyc │ │ │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ │ │ ├── adapters.cpython-39.pyc │ │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ ├── certs.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ ├── packages.cpython-39.pyc │ │ │ │ │ ├── sessions.cpython-39.pyc │ │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ │ ├── structures.cpython-39.pyc │ │ │ │ │ └── utils.cpython-39.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-39.pyc │ │ │ │ │ ├── providers.cpython-39.pyc │ │ │ │ │ ├── reporters.cpython-39.pyc │ │ │ │ │ ├── resolvers.cpython-39.pyc │ │ │ │ │ └── structs.cpython-39.pyc │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── collections_abc.cpython-39.pyc │ │ │ │ │ └── collections_abc.py │ │ │ │ ├── providers.py │ │ │ │ ├── reporters.py │ │ │ │ ├── resolvers.py │ │ │ │ └── structs.py │ │ │ ├── six.py │ │ │ ├── tenacity │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _asyncio.cpython-39.pyc │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ ├── after.cpython-39.pyc │ │ │ │ │ ├── before.cpython-39.pyc │ │ │ │ │ ├── before_sleep.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── nap.cpython-39.pyc │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ ├── stop.cpython-39.pyc │ │ │ │ │ ├── tornadoweb.cpython-39.pyc │ │ │ │ │ └── wait.cpython-39.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-39.pyc │ │ │ │ │ ├── decoder.cpython-39.pyc │ │ │ │ │ ├── encoder.cpython-39.pyc │ │ │ │ │ ├── ordered.cpython-39.pyc │ │ │ │ │ └── tz.cpython-39.pyc │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── ordered.py │ │ │ │ └── tz.py │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ ├── connectionpool.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ ├── filepost.cpython-39.pyc │ │ │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ └── response.cpython-39.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── _version.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ │ │ └── socks.cpython-39.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ │ │ └── low_level.cpython-39.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-39.pyc │ │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── _implementation.cpython-39.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ │ ├── queue.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ ├── ssl_.cpython-39.pyc │ │ │ │ │ ├── ssltransport.cpython-39.pyc │ │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ │ ├── url.cpython-39.pyc │ │ │ │ │ └── wait.cpython-39.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-39.pyc │ │ │ │ ├── labels.cpython-39.pyc │ │ │ │ ├── mklabels.cpython-39.pyc │ │ │ │ ├── tests.cpython-39.pyc │ │ │ │ └── x_user_defined.cpython-39.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ └── py.typed │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ └── pyparsing.cpython-39.pyc │ │ │ ├── appdirs.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.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-39.pyc │ │ └── tests │ │ │ └── data │ │ │ └── my-test-package-source │ │ │ ├── __pycache__ │ │ │ └── setup.cpython-39.pyc │ │ │ └── setup.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-39.pyc │ │ ├── _deprecation_warning.cpython-39.pyc │ │ ├── _imp.cpython-39.pyc │ │ ├── archive_util.cpython-39.pyc │ │ ├── build_meta.cpython-39.pyc │ │ ├── config.cpython-39.pyc │ │ ├── dep_util.cpython-39.pyc │ │ ├── depends.cpython-39.pyc │ │ ├── dist.cpython-39.pyc │ │ ├── errors.cpython-39.pyc │ │ ├── extension.cpython-39.pyc │ │ ├── glob.cpython-39.pyc │ │ ├── installer.cpython-39.pyc │ │ ├── launch.cpython-39.pyc │ │ ├── lib2to3_ex.cpython-39.pyc │ │ ├── monkey.cpython-39.pyc │ │ ├── msvc.cpython-39.pyc │ │ ├── namespaces.cpython-39.pyc │ │ ├── package_index.cpython-39.pyc │ │ ├── py34compat.cpython-39.pyc │ │ ├── sandbox.cpython-39.pyc │ │ ├── ssl_support.cpython-39.pyc │ │ ├── unicode_utils.cpython-39.pyc │ │ ├── version.cpython-39.pyc │ │ ├── wheel.cpython-39.pyc │ │ └── windows_support.cpython-39.pyc │ │ ├── _deprecation_warning.py │ │ ├── _distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _msvccompiler.cpython-39.pyc │ │ │ ├── archive_util.cpython-39.pyc │ │ │ ├── bcppcompiler.cpython-39.pyc │ │ │ ├── ccompiler.cpython-39.pyc │ │ │ ├── cmd.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── core.cpython-39.pyc │ │ │ ├── cygwinccompiler.cpython-39.pyc │ │ │ ├── debug.cpython-39.pyc │ │ │ ├── dep_util.cpython-39.pyc │ │ │ ├── dir_util.cpython-39.pyc │ │ │ ├── dist.cpython-39.pyc │ │ │ ├── errors.cpython-39.pyc │ │ │ ├── extension.cpython-39.pyc │ │ │ ├── fancy_getopt.cpython-39.pyc │ │ │ ├── file_util.cpython-39.pyc │ │ │ ├── filelist.cpython-39.pyc │ │ │ ├── log.cpython-39.pyc │ │ │ ├── msvc9compiler.cpython-39.pyc │ │ │ ├── msvccompiler.cpython-39.pyc │ │ │ ├── py35compat.cpython-39.pyc │ │ │ ├── py38compat.cpython-39.pyc │ │ │ ├── spawn.cpython-39.pyc │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ ├── text_file.cpython-39.pyc │ │ │ ├── unixccompiler.cpython-39.pyc │ │ │ ├── util.cpython-39.pyc │ │ │ ├── version.cpython-39.pyc │ │ │ └── versionpredicate.cpython-39.pyc │ │ ├── _msvccompiler.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── bdist.cpython-39.pyc │ │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── clean.cpython-39.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ ├── install_data.cpython-39.pyc │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ ├── install_headers.cpython-39.pyc │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ ├── py37compat.cpython-39.pyc │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ └── upload.cpython-39.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-39.pyc │ │ │ ├── ordered_set.cpython-39.pyc │ │ │ └── pyparsing.cpython-39.pyc │ │ ├── ordered_set.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── version.cpython-39.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-39.pyc │ │ │ ├── alias.cpython-39.pyc │ │ │ ├── bdist_egg.cpython-39.pyc │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ ├── build_clib.cpython-39.pyc │ │ │ ├── build_ext.cpython-39.pyc │ │ │ ├── build_py.cpython-39.pyc │ │ │ ├── develop.cpython-39.pyc │ │ │ ├── dist_info.cpython-39.pyc │ │ │ ├── easy_install.cpython-39.pyc │ │ │ ├── egg_info.cpython-39.pyc │ │ │ ├── install.cpython-39.pyc │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ ├── install_lib.cpython-39.pyc │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ ├── py36compat.cpython-39.pyc │ │ │ ├── register.cpython-39.pyc │ │ │ ├── rotate.cpython-39.pyc │ │ │ ├── saveopts.cpython-39.pyc │ │ │ ├── sdist.cpython-39.pyc │ │ │ ├── setopt.cpython-39.pyc │ │ │ ├── test.cpython-39.pyc │ │ │ ├── upload.cpython-39.pyc │ │ │ └── upload_docs.cpython-39.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-39.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 │ ├── lib64 │ └── pyvenv.cfg ├── 0x06-Decrement ├── .idea │ ├── .gitignore │ ├── decrement.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── main.py └── venv │ ├── bin │ ├── Activate.ps1 │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── pip │ ├── pip3 │ ├── pip3.9 │ ├── python │ ├── python3 │ └── python3.9 │ ├── lib │ └── python3.9 │ │ └── site-packages │ │ ├── _distutils_hack │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── override.cpython-39.pyc │ │ └── override.py │ │ ├── distutils-precedence.pth │ │ ├── pip-21.1.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── __main__.cpython-39.pyc │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── build_env.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ ├── pyproject.cpython-39.pyc │ │ │ │ ├── self_outdated_check.cpython-39.pyc │ │ │ │ └── wheel_builder.cpython-39.pyc │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── autocompletion.cpython-39.pyc │ │ │ │ │ ├── base_command.cpython-39.pyc │ │ │ │ │ ├── cmdoptions.cpython-39.pyc │ │ │ │ │ ├── command_context.cpython-39.pyc │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ ├── main_parser.cpython-39.pyc │ │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ │ ├── progress_bars.cpython-39.pyc │ │ │ │ │ ├── req_command.cpython-39.pyc │ │ │ │ │ ├── spinners.cpython-39.pyc │ │ │ │ │ └── status_codes.cpython-39.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-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── completion.cpython-39.pyc │ │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ ├── hash.cpython-39.pyc │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ ├── list.cpython-39.pyc │ │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ │ ├── show.cpython-39.pyc │ │ │ │ │ ├── uninstall.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.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-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── installed.cpython-39.pyc │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── installed.py │ │ │ │ ├── sdist.py │ │ │ │ └── wheel.py │ │ │ ├── exceptions.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── collector.cpython-39.pyc │ │ │ │ │ ├── package_finder.cpython-39.pyc │ │ │ │ │ └── sources.cpython-39.pyc │ │ │ │ ├── collector.py │ │ │ │ ├── package_finder.py │ │ │ │ └── sources.py │ │ │ ├── locations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _distutils.cpython-39.pyc │ │ │ │ │ ├── _sysconfig.cpython-39.pyc │ │ │ │ │ └── base.cpython-39.pyc │ │ │ │ ├── _distutils.py │ │ │ │ ├── _sysconfig.py │ │ │ │ └── base.py │ │ │ ├── main.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ └── pkg_resources.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ └── pkg_resources.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── candidate.cpython-39.pyc │ │ │ │ │ ├── direct_url.cpython-39.pyc │ │ │ │ │ ├── format_control.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── link.cpython-39.pyc │ │ │ │ │ ├── scheme.cpython-39.pyc │ │ │ │ │ ├── search_scope.cpython-39.pyc │ │ │ │ │ ├── selection_prefs.cpython-39.pyc │ │ │ │ │ ├── target_python.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.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-39.pyc │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ ├── lazy_wheel.cpython-39.pyc │ │ │ │ │ ├── session.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── xmlrpc.cpython-39.pyc │ │ │ │ ├── auth.py │ │ │ │ ├── cache.py │ │ │ │ ├── download.py │ │ │ │ ├── lazy_wheel.py │ │ │ │ ├── session.py │ │ │ │ ├── utils.py │ │ │ │ └── xmlrpc.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ └── prepare.cpython-39.pyc │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ │ ├── metadata_legacy.cpython-39.pyc │ │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ │ └── wheel_legacy.cpython-39.pyc │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ ├── wheel.py │ │ │ │ │ └── wheel_legacy.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── editable_legacy.cpython-39.pyc │ │ │ │ │ │ ├── legacy.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ ├── legacy.py │ │ │ │ │ └── wheel.py │ │ │ │ └── prepare.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ │ ├── req_file.cpython-39.pyc │ │ │ │ │ ├── req_install.cpython-39.pyc │ │ │ │ │ ├── req_set.cpython-39.pyc │ │ │ │ │ ├── req_tracker.cpython-39.pyc │ │ │ │ │ └── req_uninstall.cpython-39.pyc │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── base.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── legacy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ │ └── resolver.py │ │ │ │ └── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── candidates.cpython-39.pyc │ │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ │ ├── found_candidates.cpython-39.pyc │ │ │ │ │ ├── provider.cpython-39.pyc │ │ │ │ │ ├── reporter.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ └── resolver.cpython-39.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-39.pyc │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── compatibility_tags.cpython-39.pyc │ │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ │ ├── direct_url_helpers.cpython-39.pyc │ │ │ │ │ ├── distutils_args.cpython-39.pyc │ │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ │ ├── entrypoints.cpython-39.pyc │ │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ │ ├── filetypes.cpython-39.pyc │ │ │ │ │ ├── glibc.cpython-39.pyc │ │ │ │ │ ├── hashes.cpython-39.pyc │ │ │ │ │ ├── inject_securetransport.cpython-39.pyc │ │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ ├── packaging.cpython-39.pyc │ │ │ │ │ ├── parallel.cpython-39.pyc │ │ │ │ │ ├── pkg_resources.cpython-39.pyc │ │ │ │ │ ├── setuptools_build.cpython-39.pyc │ │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ │ ├── temp_dir.cpython-39.pyc │ │ │ │ │ ├── unpacking.cpython-39.pyc │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ ├── virtualenv.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.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-39.pyc │ │ │ │ │ ├── bazaar.cpython-39.pyc │ │ │ │ │ ├── git.cpython-39.pyc │ │ │ │ │ ├── mercurial.cpython-39.pyc │ │ │ │ │ ├── subversion.cpython-39.pyc │ │ │ │ │ └── versioncontrol.cpython-39.pyc │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ ├── subversion.py │ │ │ │ └── versioncontrol.py │ │ │ └── wheel_builder.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ ├── distro.cpython-39.pyc │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ └── six.cpython-39.pyc │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _cmd.cpython-39.pyc │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── controller.cpython-39.pyc │ │ │ │ │ ├── filewrapper.cpython-39.pyc │ │ │ │ │ ├── heuristics.cpython-39.pyc │ │ │ │ │ ├── serialize.cpython-39.pyc │ │ │ │ │ └── wrapper.cpython-39.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── file_cache.cpython-39.pyc │ │ │ │ │ │ └── redis_cache.cpython-39.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-39.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ └── core.cpython-39.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── big5freq.cpython-39.pyc │ │ │ │ │ ├── big5prober.cpython-39.pyc │ │ │ │ │ ├── chardistribution.cpython-39.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-39.pyc │ │ │ │ │ ├── charsetprober.cpython-39.pyc │ │ │ │ │ ├── codingstatemachine.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── cp949prober.cpython-39.pyc │ │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ │ ├── escprober.cpython-39.pyc │ │ │ │ │ ├── escsm.cpython-39.pyc │ │ │ │ │ ├── eucjpprober.cpython-39.pyc │ │ │ │ │ ├── euckrfreq.cpython-39.pyc │ │ │ │ │ ├── euckrprober.cpython-39.pyc │ │ │ │ │ ├── euctwfreq.cpython-39.pyc │ │ │ │ │ ├── euctwprober.cpython-39.pyc │ │ │ │ │ ├── gb2312freq.cpython-39.pyc │ │ │ │ │ ├── gb2312prober.cpython-39.pyc │ │ │ │ │ ├── hebrewprober.cpython-39.pyc │ │ │ │ │ ├── jisfreq.cpython-39.pyc │ │ │ │ │ ├── jpcntx.cpython-39.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-39.pyc │ │ │ │ │ ├── langgreekmodel.cpython-39.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-39.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-39.pyc │ │ │ │ │ ├── langrussianmodel.cpython-39.pyc │ │ │ │ │ ├── langthaimodel.cpython-39.pyc │ │ │ │ │ ├── langturkishmodel.cpython-39.pyc │ │ │ │ │ ├── latin1prober.cpython-39.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-39.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-39.pyc │ │ │ │ │ ├── mbcssm.cpython-39.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-39.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-39.pyc │ │ │ │ │ ├── sjisprober.cpython-39.pyc │ │ │ │ │ ├── universaldetector.cpython-39.pyc │ │ │ │ │ ├── utf8prober.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── chardetect.cpython-39.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-39.pyc │ │ │ │ │ │ └── languages.cpython-39.pyc │ │ │ │ │ └── languages.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ │ ├── ansitowin32.cpython-39.pyc │ │ │ │ │ ├── initialise.cpython-39.pyc │ │ │ │ │ ├── win32.cpython-39.pyc │ │ │ │ │ └── winterm.cpython-39.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── locators.cpython-39.pyc │ │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ │ ├── scripts.cpython-39.pyc │ │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ │ ├── shutil.cpython-39.pyc │ │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ │ └── tarfile.cpython-39.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-39.pyc │ │ │ │ │ ├── _ihatexml.cpython-39.pyc │ │ │ │ │ ├── _inputstream.cpython-39.pyc │ │ │ │ │ ├── _tokenizer.cpython-39.pyc │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ ├── html5parser.cpython-39.pyc │ │ │ │ │ └── serializer.cpython-39.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ │ │ └── py.cpython-39.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-39.pyc │ │ │ │ │ │ ├── lint.cpython-39.pyc │ │ │ │ │ │ ├── optionaltags.cpython-39.pyc │ │ │ │ │ │ ├── sanitizer.cpython-39.pyc │ │ │ │ │ │ └── whitespace.cpython-39.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-39.pyc │ │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ │ └── sax.cpython-39.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ ├── etree_lxml.cpython-39.pyc │ │ │ │ │ └── genshi.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── codec.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ ├── idnadata.cpython-39.pyc │ │ │ │ │ ├── intranges.cpython-39.pyc │ │ │ │ │ ├── package_data.cpython-39.pyc │ │ │ │ │ └── uts46data.cpython-39.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── ext.cpython-39.pyc │ │ │ │ │ └── fallback.cpython-39.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.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-39.pyc │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── colorlog.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── dirtools.cpython-39.pyc │ │ │ │ │ ├── envbuild.cpython-39.pyc │ │ │ │ │ ├── meta.cpython-39.pyc │ │ │ │ │ └── wrappers.cpython-39.pyc │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── dirtools.py │ │ │ │ ├── envbuild.py │ │ │ │ ├── in_process │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── _in_process.cpython-39.pyc │ │ │ │ │ └── _in_process.py │ │ │ │ ├── meta.py │ │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── py31compat.cpython-39.pyc │ │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ │ ├── counter.cpython-39.pyc │ │ │ │ │ └── spinner.cpython-39.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __version__.cpython-39.pyc │ │ │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ │ │ ├── adapters.cpython-39.pyc │ │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ ├── certs.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ ├── packages.cpython-39.pyc │ │ │ │ │ ├── sessions.cpython-39.pyc │ │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ │ ├── structures.cpython-39.pyc │ │ │ │ │ └── utils.cpython-39.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-39.pyc │ │ │ │ │ ├── providers.cpython-39.pyc │ │ │ │ │ ├── reporters.cpython-39.pyc │ │ │ │ │ ├── resolvers.cpython-39.pyc │ │ │ │ │ └── structs.cpython-39.pyc │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── collections_abc.cpython-39.pyc │ │ │ │ │ └── collections_abc.py │ │ │ │ ├── providers.py │ │ │ │ ├── reporters.py │ │ │ │ ├── resolvers.py │ │ │ │ └── structs.py │ │ │ ├── six.py │ │ │ ├── tenacity │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _asyncio.cpython-39.pyc │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ ├── after.cpython-39.pyc │ │ │ │ │ ├── before.cpython-39.pyc │ │ │ │ │ ├── before_sleep.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── nap.cpython-39.pyc │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ ├── stop.cpython-39.pyc │ │ │ │ │ ├── tornadoweb.cpython-39.pyc │ │ │ │ │ └── wait.cpython-39.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-39.pyc │ │ │ │ │ ├── decoder.cpython-39.pyc │ │ │ │ │ ├── encoder.cpython-39.pyc │ │ │ │ │ ├── ordered.cpython-39.pyc │ │ │ │ │ └── tz.cpython-39.pyc │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── ordered.py │ │ │ │ └── tz.py │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ ├── connectionpool.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ ├── filepost.cpython-39.pyc │ │ │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ └── response.cpython-39.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── _version.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ │ │ └── socks.cpython-39.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ │ │ └── low_level.cpython-39.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-39.pyc │ │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── _implementation.cpython-39.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ │ ├── queue.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ ├── ssl_.cpython-39.pyc │ │ │ │ │ ├── ssltransport.cpython-39.pyc │ │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ │ ├── url.cpython-39.pyc │ │ │ │ │ └── wait.cpython-39.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-39.pyc │ │ │ │ ├── labels.cpython-39.pyc │ │ │ │ ├── mklabels.cpython-39.pyc │ │ │ │ ├── tests.cpython-39.pyc │ │ │ │ └── x_user_defined.cpython-39.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ └── py.typed │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ └── pyparsing.cpython-39.pyc │ │ │ ├── appdirs.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.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-39.pyc │ │ └── tests │ │ │ └── data │ │ │ └── my-test-package-source │ │ │ ├── __pycache__ │ │ │ └── setup.cpython-39.pyc │ │ │ └── setup.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-39.pyc │ │ ├── _deprecation_warning.cpython-39.pyc │ │ ├── _imp.cpython-39.pyc │ │ ├── archive_util.cpython-39.pyc │ │ ├── build_meta.cpython-39.pyc │ │ ├── config.cpython-39.pyc │ │ ├── dep_util.cpython-39.pyc │ │ ├── depends.cpython-39.pyc │ │ ├── dist.cpython-39.pyc │ │ ├── errors.cpython-39.pyc │ │ ├── extension.cpython-39.pyc │ │ ├── glob.cpython-39.pyc │ │ ├── installer.cpython-39.pyc │ │ ├── launch.cpython-39.pyc │ │ ├── lib2to3_ex.cpython-39.pyc │ │ ├── monkey.cpython-39.pyc │ │ ├── msvc.cpython-39.pyc │ │ ├── namespaces.cpython-39.pyc │ │ ├── package_index.cpython-39.pyc │ │ ├── py34compat.cpython-39.pyc │ │ ├── sandbox.cpython-39.pyc │ │ ├── ssl_support.cpython-39.pyc │ │ ├── unicode_utils.cpython-39.pyc │ │ ├── version.cpython-39.pyc │ │ ├── wheel.cpython-39.pyc │ │ └── windows_support.cpython-39.pyc │ │ ├── _deprecation_warning.py │ │ ├── _distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _msvccompiler.cpython-39.pyc │ │ │ ├── archive_util.cpython-39.pyc │ │ │ ├── bcppcompiler.cpython-39.pyc │ │ │ ├── ccompiler.cpython-39.pyc │ │ │ ├── cmd.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── core.cpython-39.pyc │ │ │ ├── cygwinccompiler.cpython-39.pyc │ │ │ ├── debug.cpython-39.pyc │ │ │ ├── dep_util.cpython-39.pyc │ │ │ ├── dir_util.cpython-39.pyc │ │ │ ├── dist.cpython-39.pyc │ │ │ ├── errors.cpython-39.pyc │ │ │ ├── extension.cpython-39.pyc │ │ │ ├── fancy_getopt.cpython-39.pyc │ │ │ ├── file_util.cpython-39.pyc │ │ │ ├── filelist.cpython-39.pyc │ │ │ ├── log.cpython-39.pyc │ │ │ ├── msvc9compiler.cpython-39.pyc │ │ │ ├── msvccompiler.cpython-39.pyc │ │ │ ├── py35compat.cpython-39.pyc │ │ │ ├── py38compat.cpython-39.pyc │ │ │ ├── spawn.cpython-39.pyc │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ ├── text_file.cpython-39.pyc │ │ │ ├── unixccompiler.cpython-39.pyc │ │ │ ├── util.cpython-39.pyc │ │ │ ├── version.cpython-39.pyc │ │ │ └── versionpredicate.cpython-39.pyc │ │ ├── _msvccompiler.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── bdist.cpython-39.pyc │ │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── clean.cpython-39.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ ├── install_data.cpython-39.pyc │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ ├── install_headers.cpython-39.pyc │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ ├── py37compat.cpython-39.pyc │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ └── upload.cpython-39.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-39.pyc │ │ │ ├── ordered_set.cpython-39.pyc │ │ │ └── pyparsing.cpython-39.pyc │ │ ├── ordered_set.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── version.cpython-39.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-39.pyc │ │ │ ├── alias.cpython-39.pyc │ │ │ ├── bdist_egg.cpython-39.pyc │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ ├── build_clib.cpython-39.pyc │ │ │ ├── build_ext.cpython-39.pyc │ │ │ ├── build_py.cpython-39.pyc │ │ │ ├── develop.cpython-39.pyc │ │ │ ├── dist_info.cpython-39.pyc │ │ │ ├── easy_install.cpython-39.pyc │ │ │ ├── egg_info.cpython-39.pyc │ │ │ ├── install.cpython-39.pyc │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ ├── install_lib.cpython-39.pyc │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ ├── py36compat.cpython-39.pyc │ │ │ ├── register.cpython-39.pyc │ │ │ ├── rotate.cpython-39.pyc │ │ │ ├── saveopts.cpython-39.pyc │ │ │ ├── sdist.cpython-39.pyc │ │ │ ├── setopt.cpython-39.pyc │ │ │ ├── test.cpython-39.pyc │ │ │ ├── upload.cpython-39.pyc │ │ │ └── upload_docs.cpython-39.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-39.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 │ ├── lib64 │ └── pyvenv.cfg ├── 0x07-Face_detection ├── .idea │ ├── .gitignore │ ├── face_detection.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── 3.1 mark1.jpg.jpg ├── 3.3 mark.jpg.jpg ├── 3.4 elon.jpg.jpg ├── haarcascade_frontalface_default.xml └── main.py ├── 0x08-Passcode-generator ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── password-generator.iml ├── passwordGenerator.py └── passwordGenerator.ui ├── 0x09-Shutdown ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── shutdown.iml │ └── vcs.xml └── main.py ├── 0x10-Simple-browser ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── simple-browser.iml │ └── vcs.xml ├── README.md └── main.py ├── 0x11-Text-to-Speech ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── text-to-speech.iml │ └── vcs.xml ├── __pycache__ │ └── source.cpython-39.pyc ├── bg.jpg ├── source.py ├── source.qrc ├── textToSpeech.py └── textToSpeech.ui ├── 0x12-Weather-finder └── weather ├── 0x13-Web_server ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── web_server.iml └── main.py ├── 0x14-Shuffle ├── README.md └── main.py ├── 0x15-Audio-Book ├── README.md └── audio_book.py ├── 0x16-QR-Generator ├── README.md └── qr_generator.py ├── 0x17-Sudoku ├── README.md ├── SudokuConsole │ ├── README.md │ └── sudoku.py └── SudokuGui │ ├── .vs │ ├── ProjectSettings.json │ ├── Sudoku_Solver │ │ └── v16 │ │ │ └── .suo │ ├── VSWorkspaceState.json │ └── slnx.sqlite │ ├── README.md │ ├── __pycache__ │ └── solver.cpython-38.pyc │ ├── gui.py │ └── solver.py ├── 0x18-Url-Web-Scraper ├── ReadMe.md └── url-web-scraper.py ├── 0x19-Phone-Tracker ├── __pycache__ │ └── test.cpython-38.pyc ├── main.py └── test.py ├── 0x20-AutomatedMailing ├── README.md ├── mail.py └── requirements.txt ├── 0x21TextEditor ├── README.md ├── Sample.jpg ├── bold.png ├── copy.png ├── cut.png ├── italic.png ├── main.py ├── paste.png ├── redo.png ├── underline.png └── undo.png ├── 0x22-YouTubeViewer └── pythonVideo.py ├── 0x23-WebCloner ├── README.md └── webcloner.py ├── 0x24-Chess_Game ├── ChessEngine.py ├── ChessGame.py ├── README.md ├── images │ ├── bB.png │ ├── bK.png │ ├── bN.png │ ├── bQ.png │ ├── bR.png │ ├── bp.png │ ├── wB.png │ ├── wK.png │ ├── wN.png │ ├── wQ.png │ ├── wR.png │ └── wp.png └── requirements.txt ├── 0x25-QuizMaster ├── README.md └── answer_quiz.py ├── Dice-Simulator ├── README.md ├── img │ ├── five.png │ ├── four.png │ ├── one.png │ ├── six.png │ ├── three.png │ └── two.png └── main.py ├── JSON-to-CSV ├── README.md └── json2csv.py ├── LICENSE ├── Memory Game Python ├── README.md └── main.py ├── OOP Example └── main.py ├── PDF summrazation ├── main.py └── p.png ├── Quiz-Creator ├── quiz.py ├── sample.py └── sample.txt └── README.md /0x01-Dice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x01-Dice/README.md -------------------------------------------------------------------------------- /0x01-Dice/dicesimulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x01-Dice/dicesimulator.py -------------------------------------------------------------------------------- /0x02-Dictionary/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x02-Dictionary/.idea/2-dictionary.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x02-Dictionary/.idea/2-dictionary.iml -------------------------------------------------------------------------------- /0x02-Dictionary/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x02-Dictionary/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x02-Dictionary/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x02-Dictionary/.idea/misc.xml -------------------------------------------------------------------------------- /0x02-Dictionary/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x02-Dictionary/.idea/modules.xml -------------------------------------------------------------------------------- /0x02-Dictionary/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x02-Dictionary/.idea/vcs.xml -------------------------------------------------------------------------------- /0x02-Dictionary/README.md: -------------------------------------------------------------------------------- 1 | # DICTIONARY 2 | 3 | ![](resources/dictionary.jpg) 4 | 5 | ## Overview 6 | 7 | -------------------------------------------------------------------------------- /0x02-Dictionary/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x02-Dictionary/data.json -------------------------------------------------------------------------------- /0x02-Dictionary/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x02-Dictionary/dictionary.py -------------------------------------------------------------------------------- /0x02-Dictionary/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x02-Dictionary/main.py -------------------------------------------------------------------------------- /0x03-HangingMan/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x03-HangingMan/.idea/3-hangingMan.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x03-HangingMan/.idea/3-hangingMan.iml -------------------------------------------------------------------------------- /0x03-HangingMan/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x03-HangingMan/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x03-HangingMan/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x03-HangingMan/.idea/misc.xml -------------------------------------------------------------------------------- /0x03-HangingMan/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x03-HangingMan/.idea/modules.xml -------------------------------------------------------------------------------- /0x03-HangingMan/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x03-HangingMan/.idea/vcs.xml -------------------------------------------------------------------------------- /0x03-HangingMan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x03-HangingMan/README.md -------------------------------------------------------------------------------- /0x03-HangingMan/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x03-HangingMan/main.py -------------------------------------------------------------------------------- /0x04-TicTacToe/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x04-TicTacToe/.idea/4-ticTacToe.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x04-TicTacToe/.idea/4-ticTacToe.iml -------------------------------------------------------------------------------- /0x04-TicTacToe/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x04-TicTacToe/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x04-TicTacToe/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x04-TicTacToe/.idea/misc.xml -------------------------------------------------------------------------------- /0x04-TicTacToe/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x04-TicTacToe/.idea/modules.xml -------------------------------------------------------------------------------- /0x04-TicTacToe/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x04-TicTacToe/.idea/vcs.xml -------------------------------------------------------------------------------- /0x04-TicTacToe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x04-TicTacToe/README.md -------------------------------------------------------------------------------- /0x04-TicTacToe/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x04-TicTacToe/main.py -------------------------------------------------------------------------------- /0x05-Conditional/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x05-Conditional/.idea/conditional.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/.idea/conditional.iml -------------------------------------------------------------------------------- /0x05-Conditional/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x05-Conditional/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/.idea/misc.xml -------------------------------------------------------------------------------- /0x05-Conditional/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/.idea/modules.xml -------------------------------------------------------------------------------- /0x05-Conditional/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/.idea/vcs.xml -------------------------------------------------------------------------------- /0x05-Conditional/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/main.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/bin/Activate.ps1 -------------------------------------------------------------------------------- /0x05-Conditional/venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/bin/activate -------------------------------------------------------------------------------- /0x05-Conditional/venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/bin/activate.csh -------------------------------------------------------------------------------- /0x05-Conditional/venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/bin/activate.fish -------------------------------------------------------------------------------- /0x05-Conditional/venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/bin/pip -------------------------------------------------------------------------------- /0x05-Conditional/venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/bin/pip3 -------------------------------------------------------------------------------- /0x05-Conditional/venv/bin/pip3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/bin/pip3.9 -------------------------------------------------------------------------------- /0x05-Conditional/venv/bin/python: -------------------------------------------------------------------------------- 1 | python3.9 -------------------------------------------------------------------------------- /0x05-Conditional/venv/bin/python3: -------------------------------------------------------------------------------- 1 | python3.9 -------------------------------------------------------------------------------- /0x05-Conditional/venv/bin/python3.9: -------------------------------------------------------------------------------- 1 | /usr/bin/python3.9 -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/METADATA -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/RECORD -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/index/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/index/sources.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/locations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/locations/base.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/metadata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/metadata/base.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/parallel.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.12.05" 4 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.1' 2 | 3 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 2) 2 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/dirtools.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/meta.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/compat.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/toml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/toml/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/toml/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/toml/decoder.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/toml/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/toml/encoder.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/toml/ordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/toml/ordered.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/toml/tz.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.4" 3 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pip/py.typed -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools-56.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools-56.0.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/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 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools-56.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/config.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/debug.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/errors.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/spawn.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/_vendor/pyparsing.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/lib/python3.9/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /0x05-Conditional/venv/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /0x05-Conditional/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x05-Conditional/venv/pyvenv.cfg -------------------------------------------------------------------------------- /0x06-Decrement/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x06-Decrement/.idea/decrement.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/.idea/decrement.iml -------------------------------------------------------------------------------- /0x06-Decrement/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x06-Decrement/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/.idea/misc.xml -------------------------------------------------------------------------------- /0x06-Decrement/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/.idea/modules.xml -------------------------------------------------------------------------------- /0x06-Decrement/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/.idea/vcs.xml -------------------------------------------------------------------------------- /0x06-Decrement/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/main.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/bin/Activate.ps1 -------------------------------------------------------------------------------- /0x06-Decrement/venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/bin/activate -------------------------------------------------------------------------------- /0x06-Decrement/venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/bin/activate.csh -------------------------------------------------------------------------------- /0x06-Decrement/venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/bin/activate.fish -------------------------------------------------------------------------------- /0x06-Decrement/venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/bin/pip -------------------------------------------------------------------------------- /0x06-Decrement/venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/bin/pip3 -------------------------------------------------------------------------------- /0x06-Decrement/venv/bin/pip3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/bin/pip3.9 -------------------------------------------------------------------------------- /0x06-Decrement/venv/bin/python: -------------------------------------------------------------------------------- 1 | python3.9 -------------------------------------------------------------------------------- /0x06-Decrement/venv/bin/python3: -------------------------------------------------------------------------------- 1 | python3.9 -------------------------------------------------------------------------------- /0x06-Decrement/venv/bin/python3.9: -------------------------------------------------------------------------------- 1 | /usr/bin/python3.9 -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/METADATA -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/RECORD -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip-21.1.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/index/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/index/sources.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/locations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/locations/base.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/metadata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/metadata/base.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/download.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/session.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/req_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/req/req_tracker.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/resolution/base.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/parallel.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.12.05" 4 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.1' 2 | 3 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 2) 2 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/dirtools.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/meta.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/compat.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/toml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/toml/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/toml/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/toml/decoder.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/toml/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/toml/encoder.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/toml/ordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/toml/ordered.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/toml/tz.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.4" 3 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pip/py.typed -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools-56.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools-56.0.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/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 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools-56.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/config.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/debug.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/errors.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/spawn.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/_vendor/pyparsing.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/lib/python3.9/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /0x06-Decrement/venv/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /0x06-Decrement/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x06-Decrement/venv/pyvenv.cfg -------------------------------------------------------------------------------- /0x07-Face_detection/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x07-Face_detection/.idea/face_detection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x07-Face_detection/.idea/face_detection.iml -------------------------------------------------------------------------------- /0x07-Face_detection/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x07-Face_detection/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x07-Face_detection/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x07-Face_detection/.idea/misc.xml -------------------------------------------------------------------------------- /0x07-Face_detection/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x07-Face_detection/.idea/modules.xml -------------------------------------------------------------------------------- /0x07-Face_detection/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x07-Face_detection/.idea/vcs.xml -------------------------------------------------------------------------------- /0x07-Face_detection/3.1 mark1.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x07-Face_detection/3.1 mark1.jpg.jpg -------------------------------------------------------------------------------- /0x07-Face_detection/3.3 mark.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x07-Face_detection/3.3 mark.jpg.jpg -------------------------------------------------------------------------------- /0x07-Face_detection/3.4 elon.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x07-Face_detection/3.4 elon.jpg.jpg -------------------------------------------------------------------------------- /0x07-Face_detection/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x07-Face_detection/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /0x07-Face_detection/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x07-Face_detection/main.py -------------------------------------------------------------------------------- /0x08-Passcode-generator/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x08-Passcode-generator/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x08-Passcode-generator/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x08-Passcode-generator/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x08-Passcode-generator/.idea/misc.xml -------------------------------------------------------------------------------- /0x08-Passcode-generator/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x08-Passcode-generator/.idea/modules.xml -------------------------------------------------------------------------------- /0x08-Passcode-generator/.idea/password-generator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x08-Passcode-generator/.idea/password-generator.iml -------------------------------------------------------------------------------- /0x08-Passcode-generator/passwordGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x08-Passcode-generator/passwordGenerator.py -------------------------------------------------------------------------------- /0x08-Passcode-generator/passwordGenerator.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x08-Passcode-generator/passwordGenerator.ui -------------------------------------------------------------------------------- /0x09-Shutdown/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x09-Shutdown/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x09-Shutdown/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x09-Shutdown/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x09-Shutdown/.idea/misc.xml -------------------------------------------------------------------------------- /0x09-Shutdown/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x09-Shutdown/.idea/modules.xml -------------------------------------------------------------------------------- /0x09-Shutdown/.idea/shutdown.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x09-Shutdown/.idea/shutdown.iml -------------------------------------------------------------------------------- /0x09-Shutdown/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x09-Shutdown/.idea/vcs.xml -------------------------------------------------------------------------------- /0x09-Shutdown/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x09-Shutdown/main.py -------------------------------------------------------------------------------- /0x10-Simple-browser/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x10-Simple-browser/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x10-Simple-browser/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x10-Simple-browser/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x10-Simple-browser/.idea/misc.xml -------------------------------------------------------------------------------- /0x10-Simple-browser/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x10-Simple-browser/.idea/modules.xml -------------------------------------------------------------------------------- /0x10-Simple-browser/.idea/simple-browser.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x10-Simple-browser/.idea/simple-browser.iml -------------------------------------------------------------------------------- /0x10-Simple-browser/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x10-Simple-browser/.idea/vcs.xml -------------------------------------------------------------------------------- /0x10-Simple-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x10-Simple-browser/README.md -------------------------------------------------------------------------------- /0x10-Simple-browser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x10-Simple-browser/main.py -------------------------------------------------------------------------------- /0x11-Text-to-Speech/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x11-Text-to-Speech/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x11-Text-to-Speech/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/.idea/misc.xml -------------------------------------------------------------------------------- /0x11-Text-to-Speech/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/.idea/modules.xml -------------------------------------------------------------------------------- /0x11-Text-to-Speech/.idea/text-to-speech.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/.idea/text-to-speech.iml -------------------------------------------------------------------------------- /0x11-Text-to-Speech/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/.idea/vcs.xml -------------------------------------------------------------------------------- /0x11-Text-to-Speech/__pycache__/source.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/__pycache__/source.cpython-39.pyc -------------------------------------------------------------------------------- /0x11-Text-to-Speech/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/bg.jpg -------------------------------------------------------------------------------- /0x11-Text-to-Speech/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/source.py -------------------------------------------------------------------------------- /0x11-Text-to-Speech/source.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/source.qrc -------------------------------------------------------------------------------- /0x11-Text-to-Speech/textToSpeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/textToSpeech.py -------------------------------------------------------------------------------- /0x11-Text-to-Speech/textToSpeech.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x11-Text-to-Speech/textToSpeech.ui -------------------------------------------------------------------------------- /0x12-Weather-finder/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x12-Weather-finder/weather -------------------------------------------------------------------------------- /0x13-Web_server/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /0x13-Web_server/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x13-Web_server/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /0x13-Web_server/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x13-Web_server/.idea/misc.xml -------------------------------------------------------------------------------- /0x13-Web_server/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x13-Web_server/.idea/modules.xml -------------------------------------------------------------------------------- /0x13-Web_server/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x13-Web_server/.idea/vcs.xml -------------------------------------------------------------------------------- /0x13-Web_server/.idea/web_server.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x13-Web_server/.idea/web_server.iml -------------------------------------------------------------------------------- /0x13-Web_server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x13-Web_server/main.py -------------------------------------------------------------------------------- /0x14-Shuffle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x14-Shuffle/README.md -------------------------------------------------------------------------------- /0x14-Shuffle/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x14-Shuffle/main.py -------------------------------------------------------------------------------- /0x15-Audio-Book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x15-Audio-Book/README.md -------------------------------------------------------------------------------- /0x15-Audio-Book/audio_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x15-Audio-Book/audio_book.py -------------------------------------------------------------------------------- /0x16-QR-Generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x16-QR-Generator/README.md -------------------------------------------------------------------------------- /0x16-QR-Generator/qr_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x16-QR-Generator/qr_generator.py -------------------------------------------------------------------------------- /0x17-Sudoku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x17-Sudoku/README.md -------------------------------------------------------------------------------- /0x17-Sudoku/SudokuConsole/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x17-Sudoku/SudokuConsole/README.md -------------------------------------------------------------------------------- /0x17-Sudoku/SudokuConsole/sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x17-Sudoku/SudokuConsole/sudoku.py -------------------------------------------------------------------------------- /0x17-Sudoku/SudokuGui/.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /0x17-Sudoku/SudokuGui/.vs/Sudoku_Solver/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x17-Sudoku/SudokuGui/.vs/Sudoku_Solver/v16/.suo -------------------------------------------------------------------------------- /0x17-Sudoku/SudokuGui/.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x17-Sudoku/SudokuGui/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /0x17-Sudoku/SudokuGui/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x17-Sudoku/SudokuGui/.vs/slnx.sqlite -------------------------------------------------------------------------------- /0x17-Sudoku/SudokuGui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x17-Sudoku/SudokuGui/README.md -------------------------------------------------------------------------------- /0x17-Sudoku/SudokuGui/__pycache__/solver.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x17-Sudoku/SudokuGui/__pycache__/solver.cpython-38.pyc -------------------------------------------------------------------------------- /0x17-Sudoku/SudokuGui/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x17-Sudoku/SudokuGui/gui.py -------------------------------------------------------------------------------- /0x17-Sudoku/SudokuGui/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x17-Sudoku/SudokuGui/solver.py -------------------------------------------------------------------------------- /0x18-Url-Web-Scraper/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x18-Url-Web-Scraper/ReadMe.md -------------------------------------------------------------------------------- /0x18-Url-Web-Scraper/url-web-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x18-Url-Web-Scraper/url-web-scraper.py -------------------------------------------------------------------------------- /0x19-Phone-Tracker/__pycache__/test.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x19-Phone-Tracker/__pycache__/test.cpython-38.pyc -------------------------------------------------------------------------------- /0x19-Phone-Tracker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x19-Phone-Tracker/main.py -------------------------------------------------------------------------------- /0x19-Phone-Tracker/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x19-Phone-Tracker/test.py -------------------------------------------------------------------------------- /0x20-AutomatedMailing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x20-AutomatedMailing/README.md -------------------------------------------------------------------------------- /0x20-AutomatedMailing/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x20-AutomatedMailing/mail.py -------------------------------------------------------------------------------- /0x20-AutomatedMailing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x20-AutomatedMailing/requirements.txt -------------------------------------------------------------------------------- /0x21TextEditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/README.md -------------------------------------------------------------------------------- /0x21TextEditor/Sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/Sample.jpg -------------------------------------------------------------------------------- /0x21TextEditor/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/bold.png -------------------------------------------------------------------------------- /0x21TextEditor/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/copy.png -------------------------------------------------------------------------------- /0x21TextEditor/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/cut.png -------------------------------------------------------------------------------- /0x21TextEditor/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/italic.png -------------------------------------------------------------------------------- /0x21TextEditor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/main.py -------------------------------------------------------------------------------- /0x21TextEditor/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/paste.png -------------------------------------------------------------------------------- /0x21TextEditor/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/redo.png -------------------------------------------------------------------------------- /0x21TextEditor/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/underline.png -------------------------------------------------------------------------------- /0x21TextEditor/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x21TextEditor/undo.png -------------------------------------------------------------------------------- /0x22-YouTubeViewer/pythonVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x22-YouTubeViewer/pythonVideo.py -------------------------------------------------------------------------------- /0x23-WebCloner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x23-WebCloner/README.md -------------------------------------------------------------------------------- /0x23-WebCloner/webcloner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x23-WebCloner/webcloner.py -------------------------------------------------------------------------------- /0x24-Chess_Game/ChessEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/ChessEngine.py -------------------------------------------------------------------------------- /0x24-Chess_Game/ChessGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/ChessGame.py -------------------------------------------------------------------------------- /0x24-Chess_Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/README.md -------------------------------------------------------------------------------- /0x24-Chess_Game/images/bB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/bB.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/bK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/bK.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/bN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/bN.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/bQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/bQ.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/bR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/bR.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/bp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/bp.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/wB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/wB.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/wK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/wK.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/wN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/wN.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/wQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/wQ.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/wR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/wR.png -------------------------------------------------------------------------------- /0x24-Chess_Game/images/wp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x24-Chess_Game/images/wp.png -------------------------------------------------------------------------------- /0x24-Chess_Game/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame==2.4.0 2 | -------------------------------------------------------------------------------- /0x25-QuizMaster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x25-QuizMaster/README.md -------------------------------------------------------------------------------- /0x25-QuizMaster/answer_quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/0x25-QuizMaster/answer_quiz.py -------------------------------------------------------------------------------- /Dice-Simulator/README.md: -------------------------------------------------------------------------------- 1 | # Dice-Simulator 2 | 3 | -------------------------------------------------------------------------------- /Dice-Simulator/img/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Dice-Simulator/img/five.png -------------------------------------------------------------------------------- /Dice-Simulator/img/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Dice-Simulator/img/four.png -------------------------------------------------------------------------------- /Dice-Simulator/img/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Dice-Simulator/img/one.png -------------------------------------------------------------------------------- /Dice-Simulator/img/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Dice-Simulator/img/six.png -------------------------------------------------------------------------------- /Dice-Simulator/img/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Dice-Simulator/img/three.png -------------------------------------------------------------------------------- /Dice-Simulator/img/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Dice-Simulator/img/two.png -------------------------------------------------------------------------------- /Dice-Simulator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Dice-Simulator/main.py -------------------------------------------------------------------------------- /JSON-to-CSV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/JSON-to-CSV/README.md -------------------------------------------------------------------------------- /JSON-to-CSV/json2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/JSON-to-CSV/json2csv.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/LICENSE -------------------------------------------------------------------------------- /Memory Game Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Memory Game Python/README.md -------------------------------------------------------------------------------- /Memory Game Python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Memory Game Python/main.py -------------------------------------------------------------------------------- /OOP Example/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/OOP Example/main.py -------------------------------------------------------------------------------- /PDF summrazation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/PDF summrazation/main.py -------------------------------------------------------------------------------- /PDF summrazation/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/PDF summrazation/p.png -------------------------------------------------------------------------------- /Quiz-Creator/quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Quiz-Creator/quiz.py -------------------------------------------------------------------------------- /Quiz-Creator/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Quiz-Creator/sample.py -------------------------------------------------------------------------------- /Quiz-Creator/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/Quiz-Creator/sample.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorpreston/Python-Projects/HEAD/README.md --------------------------------------------------------------------------------