├── .gitignore ├── README.md ├── app.py └── env ├── Lib └── site-packages │ ├── __pycache__ │ └── easy_install.cpython-38.pyc │ ├── easy_install.py │ ├── pip-19.2.3.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── __main__.cpython-38.pyc │ ├── _internal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── build_env.cpython-38.pyc │ │ │ ├── cache.cpython-38.pyc │ │ │ ├── configuration.cpython-38.pyc │ │ │ ├── download.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ ├── index.cpython-38.pyc │ │ │ ├── legacy_resolve.cpython-38.pyc │ │ │ ├── locations.cpython-38.pyc │ │ │ ├── pep425tags.cpython-38.pyc │ │ │ ├── pyproject.cpython-38.pyc │ │ │ └── wheel.cpython-38.pyc │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── autocompletion.cpython-38.pyc │ │ │ │ ├── base_command.cpython-38.pyc │ │ │ │ ├── cmdoptions.cpython-38.pyc │ │ │ │ ├── main_parser.cpython-38.pyc │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ └── status_codes.cpython-38.pyc │ │ │ ├── autocompletion.py │ │ │ ├── base_command.py │ │ │ ├── cmdoptions.py │ │ │ ├── main_parser.py │ │ │ ├── parser.py │ │ │ └── status_codes.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ ├── completion.cpython-38.pyc │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ ├── hash.cpython-38.pyc │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── list.cpython-38.pyc │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ ├── show.cpython-38.pyc │ │ │ │ ├── uninstall.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── check.py │ │ │ ├── completion.py │ │ │ ├── configuration.py │ │ │ ├── debug.py │ │ │ ├── download.py │ │ │ ├── freeze.py │ │ │ ├── hash.py │ │ │ ├── help.py │ │ │ ├── install.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ ├── show.py │ │ │ ├── uninstall.py │ │ │ └── wheel.py │ │ ├── configuration.py │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── installed.cpython-38.pyc │ │ │ │ ├── source.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── installed.py │ │ │ ├── source.py │ │ │ └── wheel.py │ │ ├── download.py │ │ ├── exceptions.py │ │ ├── index.py │ │ ├── legacy_resolve.py │ │ ├── locations.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ ├── link.cpython-38.pyc │ │ │ │ ├── search_scope.cpython-38.pyc │ │ │ │ ├── selection_prefs.cpython-38.pyc │ │ │ │ └── target_python.cpython-38.pyc │ │ │ ├── candidate.py │ │ │ ├── format_control.py │ │ │ ├── index.py │ │ │ ├── link.py │ │ │ ├── search_scope.py │ │ │ ├── selection_prefs.py │ │ │ └── target_python.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ └── prepare.cpython-38.pyc │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ └── prepare.py │ │ ├── pep425tags.py │ │ ├── pyproject.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── constructors.cpython-38.pyc │ │ │ │ ├── req_file.cpython-38.pyc │ │ │ │ ├── req_install.cpython-38.pyc │ │ │ │ ├── req_set.cpython-38.pyc │ │ │ │ ├── req_tracker.cpython-38.pyc │ │ │ │ └── req_uninstall.cpython-38.pyc │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ ├── req_tracker.py │ │ │ └── req_uninstall.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ ├── glibc.cpython-38.pyc │ │ │ │ ├── hashes.cpython-38.pyc │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ ├── marker_files.cpython-38.pyc │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── outdated.cpython-38.pyc │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ ├── typing.cpython-38.pyc │ │ │ │ ├── ui.cpython-38.pyc │ │ │ │ └── virtualenv.cpython-38.pyc │ │ │ ├── appdirs.py │ │ │ ├── compat.py │ │ │ ├── deprecation.py │ │ │ ├── encoding.py │ │ │ ├── filesystem.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── logging.py │ │ │ ├── marker_files.py │ │ │ ├── misc.py │ │ │ ├── models.py │ │ │ ├── outdated.py │ │ │ ├── packaging.py │ │ │ ├── setuptools_build.py │ │ │ ├── temp_dir.py │ │ │ ├── typing.py │ │ │ ├── ui.py │ │ │ └── virtualenv.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── bazaar.cpython-38.pyc │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ ├── mercurial.cpython-38.pyc │ │ │ │ ├── subversion.cpython-38.pyc │ │ │ │ └── versioncontrol.cpython-38.pyc │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ ├── subversion.py │ │ │ └── versioncontrol.py │ │ └── wheel.py │ └── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── appdirs.cpython-38.pyc │ │ ├── distro.cpython-38.pyc │ │ ├── ipaddress.cpython-38.pyc │ │ ├── pyparsing.cpython-38.pyc │ │ ├── retrying.cpython-38.pyc │ │ └── six.cpython-38.pyc │ │ ├── appdirs.py │ │ ├── cachecontrol │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _cmd.cpython-38.pyc │ │ │ ├── adapter.cpython-38.pyc │ │ │ ├── cache.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── controller.cpython-38.pyc │ │ │ ├── filewrapper.cpython-38.pyc │ │ │ ├── heuristics.cpython-38.pyc │ │ │ ├── serialize.cpython-38.pyc │ │ │ └── wrapper.cpython-38.pyc │ │ ├── _cmd.py │ │ ├── adapter.py │ │ ├── cache.py │ │ ├── caches │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── file_cache.cpython-38.pyc │ │ │ │ └── redis_cache.cpython-38.pyc │ │ │ ├── file_cache.py │ │ │ └── redis_cache.py │ │ ├── compat.py │ │ ├── controller.py │ │ ├── filewrapper.py │ │ ├── heuristics.py │ │ ├── serialize.py │ │ └── wrapper.py │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __main__.cpython-38.pyc │ │ │ └── core.cpython-38.pyc │ │ ├── cacert.pem │ │ └── core.py │ │ ├── chardet │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── big5freq.cpython-38.pyc │ │ │ ├── big5prober.cpython-38.pyc │ │ │ ├── chardistribution.cpython-38.pyc │ │ │ ├── charsetgroupprober.cpython-38.pyc │ │ │ ├── charsetprober.cpython-38.pyc │ │ │ ├── codingstatemachine.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── cp949prober.cpython-38.pyc │ │ │ ├── enums.cpython-38.pyc │ │ │ ├── escprober.cpython-38.pyc │ │ │ ├── escsm.cpython-38.pyc │ │ │ ├── eucjpprober.cpython-38.pyc │ │ │ ├── euckrfreq.cpython-38.pyc │ │ │ ├── euckrprober.cpython-38.pyc │ │ │ ├── euctwfreq.cpython-38.pyc │ │ │ ├── euctwprober.cpython-38.pyc │ │ │ ├── gb2312freq.cpython-38.pyc │ │ │ ├── gb2312prober.cpython-38.pyc │ │ │ ├── hebrewprober.cpython-38.pyc │ │ │ ├── jisfreq.cpython-38.pyc │ │ │ ├── jpcntx.cpython-38.pyc │ │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ │ ├── langcyrillicmodel.cpython-38.pyc │ │ │ ├── langgreekmodel.cpython-38.pyc │ │ │ ├── langhebrewmodel.cpython-38.pyc │ │ │ ├── langhungarianmodel.cpython-38.pyc │ │ │ ├── langthaimodel.cpython-38.pyc │ │ │ ├── langturkishmodel.cpython-38.pyc │ │ │ ├── latin1prober.cpython-38.pyc │ │ │ ├── mbcharsetprober.cpython-38.pyc │ │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ │ ├── mbcssm.cpython-38.pyc │ │ │ ├── sbcharsetprober.cpython-38.pyc │ │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ │ ├── sjisprober.cpython-38.pyc │ │ │ ├── universaldetector.cpython-38.pyc │ │ │ ├── utf8prober.cpython-38.pyc │ │ │ └── version.cpython-38.pyc │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── chardetect.cpython-38.pyc │ │ │ └── chardetect.py │ │ ├── codingstatemachine.py │ │ ├── compat.py │ │ ├── cp949prober.py │ │ ├── enums.py │ │ ├── escprober.py │ │ ├── escsm.py │ │ ├── eucjpprober.py │ │ ├── euckrfreq.py │ │ ├── euckrprober.py │ │ ├── euctwfreq.py │ │ ├── euctwprober.py │ │ ├── gb2312freq.py │ │ ├── gb2312prober.py │ │ ├── hebrewprober.py │ │ ├── jisfreq.py │ │ ├── jpcntx.py │ │ ├── langbulgarianmodel.py │ │ ├── langcyrillicmodel.py │ │ ├── langgreekmodel.py │ │ ├── langhebrewmodel.py │ │ ├── langhungarianmodel.py │ │ ├── langthaimodel.py │ │ ├── langturkishmodel.py │ │ ├── latin1prober.py │ │ ├── mbcharsetprober.py │ │ ├── mbcsgroupprober.py │ │ ├── mbcssm.py │ │ ├── sbcharsetprober.py │ │ ├── sbcsgroupprober.py │ │ ├── sjisprober.py │ │ ├── universaldetector.py │ │ ├── utf8prober.py │ │ └── version.py │ │ ├── colorama │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── ansi.cpython-38.pyc │ │ │ ├── ansitowin32.cpython-38.pyc │ │ │ ├── initialise.cpython-38.pyc │ │ │ ├── win32.cpython-38.pyc │ │ │ └── winterm.cpython-38.pyc │ │ ├── ansi.py │ │ ├── ansitowin32.py │ │ ├── initialise.py │ │ ├── win32.py │ │ └── winterm.py │ │ ├── distlib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── database.cpython-38.pyc │ │ │ ├── index.cpython-38.pyc │ │ │ ├── locators.cpython-38.pyc │ │ │ ├── manifest.cpython-38.pyc │ │ │ ├── markers.cpython-38.pyc │ │ │ ├── metadata.cpython-38.pyc │ │ │ ├── resources.cpython-38.pyc │ │ │ ├── scripts.cpython-38.pyc │ │ │ ├── util.cpython-38.pyc │ │ │ ├── version.cpython-38.pyc │ │ │ └── wheel.cpython-38.pyc │ │ ├── _backport │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ ├── shutil.cpython-38.pyc │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ └── tarfile.cpython-38.pyc │ │ │ ├── misc.py │ │ │ ├── shutil.py │ │ │ ├── sysconfig.cfg │ │ │ ├── sysconfig.py │ │ │ └── tarfile.py │ │ ├── compat.py │ │ ├── database.py │ │ ├── index.py │ │ ├── locators.py │ │ ├── manifest.py │ │ ├── markers.py │ │ ├── metadata.py │ │ ├── resources.py │ │ ├── scripts.py │ │ ├── t32.exe │ │ ├── t64.exe │ │ ├── util.py │ │ ├── version.py │ │ ├── w32.exe │ │ ├── w64.exe │ │ └── wheel.py │ │ ├── distro.py │ │ ├── html5lib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _ihatexml.cpython-38.pyc │ │ │ ├── _inputstream.cpython-38.pyc │ │ │ ├── _tokenizer.cpython-38.pyc │ │ │ ├── _utils.cpython-38.pyc │ │ │ ├── constants.cpython-38.pyc │ │ │ ├── html5parser.cpython-38.pyc │ │ │ └── serializer.cpython-38.pyc │ │ ├── _ihatexml.py │ │ ├── _inputstream.py │ │ ├── _tokenizer.py │ │ ├── _trie │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _base.cpython-38.pyc │ │ │ │ ├── datrie.cpython-38.pyc │ │ │ │ └── py.cpython-38.pyc │ │ │ ├── _base.py │ │ │ ├── datrie.py │ │ │ └── py.py │ │ ├── _utils.py │ │ ├── constants.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── alphabeticalattributes.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── inject_meta_charset.cpython-38.pyc │ │ │ │ ├── lint.cpython-38.pyc │ │ │ │ ├── optionaltags.cpython-38.pyc │ │ │ │ ├── sanitizer.cpython-38.pyc │ │ │ │ └── whitespace.cpython-38.pyc │ │ │ ├── alphabeticalattributes.py │ │ │ ├── base.py │ │ │ ├── inject_meta_charset.py │ │ │ ├── lint.py │ │ │ ├── optionaltags.py │ │ │ ├── sanitizer.py │ │ │ └── whitespace.py │ │ ├── html5parser.py │ │ ├── serializer.py │ │ ├── treeadapters │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── genshi.cpython-38.pyc │ │ │ │ └── sax.cpython-38.pyc │ │ │ ├── genshi.py │ │ │ └── sax.py │ │ ├── treebuilders │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ └── etree_lxml.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ └── etree_lxml.py │ │ └── treewalkers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── base.cpython-38.pyc │ │ │ ├── dom.cpython-38.pyc │ │ │ ├── etree.cpython-38.pyc │ │ │ ├── etree_lxml.cpython-38.pyc │ │ │ └── genshi.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ ├── etree_lxml.py │ │ │ └── genshi.py │ │ ├── idna │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── codec.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── core.cpython-38.pyc │ │ │ ├── idnadata.cpython-38.pyc │ │ │ ├── intranges.cpython-38.pyc │ │ │ ├── package_data.cpython-38.pyc │ │ │ └── uts46data.cpython-38.pyc │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ │ ├── ipaddress.py │ │ ├── lockfile │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── linklockfile.cpython-38.pyc │ │ │ ├── mkdirlockfile.cpython-38.pyc │ │ │ ├── pidlockfile.cpython-38.pyc │ │ │ ├── sqlitelockfile.cpython-38.pyc │ │ │ └── symlinklockfile.cpython-38.pyc │ │ ├── linklockfile.py │ │ ├── mkdirlockfile.py │ │ ├── pidlockfile.py │ │ ├── sqlitelockfile.py │ │ └── symlinklockfile.py │ │ ├── msgpack │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _version.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ └── fallback.cpython-38.pyc │ │ ├── _version.py │ │ ├── exceptions.py │ │ └── fallback.py │ │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __about__.cpython-38.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _compat.cpython-38.pyc │ │ │ ├── _structures.cpython-38.pyc │ │ │ ├── markers.cpython-38.pyc │ │ │ ├── requirements.cpython-38.pyc │ │ │ ├── specifiers.cpython-38.pyc │ │ │ ├── utils.cpython-38.pyc │ │ │ └── version.cpython-38.pyc │ │ ├── _compat.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── utils.py │ │ └── version.py │ │ ├── pep517 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _in_process.cpython-38.pyc │ │ │ ├── build.cpython-38.pyc │ │ │ ├── check.cpython-38.pyc │ │ │ ├── colorlog.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── envbuild.cpython-38.pyc │ │ │ └── wrappers.cpython-38.pyc │ │ ├── _in_process.py │ │ ├── build.py │ │ ├── check.py │ │ ├── colorlog.py │ │ ├── compat.py │ │ ├── envbuild.py │ │ └── wrappers.py │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── py31compat.cpython-38.pyc │ │ └── py31compat.py │ │ ├── progress │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── bar.cpython-38.pyc │ │ │ ├── counter.cpython-38.pyc │ │ │ └── spinner.cpython-38.pyc │ │ ├── bar.py │ │ ├── counter.py │ │ └── spinner.py │ │ ├── pyparsing.py │ │ ├── pytoml │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── core.cpython-38.pyc │ │ │ ├── parser.cpython-38.pyc │ │ │ ├── test.cpython-38.pyc │ │ │ ├── utils.cpython-38.pyc │ │ │ └── writer.cpython-38.pyc │ │ ├── core.py │ │ ├── parser.py │ │ ├── test.py │ │ ├── utils.py │ │ └── writer.py │ │ ├── requests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __version__.cpython-38.pyc │ │ │ ├── _internal_utils.cpython-38.pyc │ │ │ ├── adapters.cpython-38.pyc │ │ │ ├── api.cpython-38.pyc │ │ │ ├── auth.cpython-38.pyc │ │ │ ├── certs.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── cookies.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ ├── help.cpython-38.pyc │ │ │ ├── hooks.cpython-38.pyc │ │ │ ├── models.cpython-38.pyc │ │ │ ├── packages.cpython-38.pyc │ │ │ ├── sessions.cpython-38.pyc │ │ │ ├── status_codes.cpython-38.pyc │ │ │ ├── structures.cpython-38.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ │ ├── retrying.py │ │ ├── six.py │ │ ├── urllib3 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _collections.cpython-38.pyc │ │ │ ├── connection.cpython-38.pyc │ │ │ ├── connectionpool.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ ├── fields.cpython-38.pyc │ │ │ ├── filepost.cpython-38.pyc │ │ │ ├── poolmanager.cpython-38.pyc │ │ │ ├── request.cpython-38.pyc │ │ │ └── response.cpython-38.pyc │ │ ├── _collections.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _appengine_environ.cpython-38.pyc │ │ │ │ ├── appengine.cpython-38.pyc │ │ │ │ ├── ntlmpool.cpython-38.pyc │ │ │ │ ├── pyopenssl.cpython-38.pyc │ │ │ │ ├── securetransport.cpython-38.pyc │ │ │ │ └── socks.cpython-38.pyc │ │ │ ├── _appengine_environ.py │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bindings.cpython-38.pyc │ │ │ │ │ └── low_level.cpython-38.pyc │ │ │ │ ├── bindings.py │ │ │ │ └── low_level.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ ├── pyopenssl.py │ │ │ ├── securetransport.py │ │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── makefile.cpython-38.pyc │ │ │ │ └── makefile.py │ │ │ ├── rfc3986 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _mixin.cpython-38.pyc │ │ │ │ │ ├── abnf_regexp.cpython-38.pyc │ │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ │ ├── builder.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── iri.cpython-38.pyc │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ ├── normalizers.cpython-38.pyc │ │ │ │ │ ├── parseresult.cpython-38.pyc │ │ │ │ │ ├── uri.cpython-38.pyc │ │ │ │ │ └── validators.cpython-38.pyc │ │ │ │ ├── _mixin.py │ │ │ │ ├── abnf_regexp.py │ │ │ │ ├── api.py │ │ │ │ ├── builder.py │ │ │ │ ├── compat.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── iri.py │ │ │ │ ├── misc.py │ │ │ │ ├── normalizers.py │ │ │ │ ├── parseresult.py │ │ │ │ ├── uri.py │ │ │ │ └── validators.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── _implementation.cpython-38.pyc │ │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── connection.cpython-38.pyc │ │ │ ├── queue.cpython-38.pyc │ │ │ ├── request.cpython-38.pyc │ │ │ ├── response.cpython-38.pyc │ │ │ ├── retry.cpython-38.pyc │ │ │ ├── ssl_.cpython-38.pyc │ │ │ ├── timeout.cpython-38.pyc │ │ │ ├── url.cpython-38.pyc │ │ │ └── wait.cpython-38.pyc │ │ │ ├── connection.py │ │ │ ├── queue.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ │ └── webencodings │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── labels.cpython-38.pyc │ │ ├── mklabels.cpython-38.pyc │ │ ├── tests.cpython-38.pyc │ │ └── x_user_defined.cpython-38.pyc │ │ ├── labels.py │ │ ├── mklabels.py │ │ ├── tests.py │ │ └── x_user_defined.py │ ├── pkg_resources │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── py31compat.cpython-38.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── appdirs.cpython-38.pyc │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ └── six.cpython-38.pyc │ │ ├── appdirs.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── version.cpython-38.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pyparsing.py │ │ └── six.py │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ └── py31compat.py │ ├── setuptools-41.2.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── top_level.txt │ └── zip-safe │ └── setuptools │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── _deprecation_warning.cpython-38.pyc │ ├── archive_util.cpython-38.pyc │ ├── build_meta.cpython-38.pyc │ ├── config.cpython-38.pyc │ ├── dep_util.cpython-38.pyc │ ├── depends.cpython-38.pyc │ ├── dist.cpython-38.pyc │ ├── extension.cpython-38.pyc │ ├── glibc.cpython-38.pyc │ ├── glob.cpython-38.pyc │ ├── launch.cpython-38.pyc │ ├── lib2to3_ex.cpython-38.pyc │ ├── monkey.cpython-38.pyc │ ├── msvc.cpython-38.pyc │ ├── namespaces.cpython-38.pyc │ ├── package_index.cpython-38.pyc │ ├── pep425tags.cpython-38.pyc │ ├── py27compat.cpython-38.pyc │ ├── py31compat.cpython-38.pyc │ ├── py33compat.cpython-38.pyc │ ├── sandbox.cpython-38.pyc │ ├── site-patch.cpython-38.pyc │ ├── ssl_support.cpython-38.pyc │ ├── unicode_utils.cpython-38.pyc │ ├── version.cpython-38.pyc │ ├── wheel.cpython-38.pyc │ └── windows_support.cpython-38.pyc │ ├── _deprecation_warning.py │ ├── _vendor │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── pyparsing.cpython-38.pyc │ │ └── six.cpython-38.pyc │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __about__.cpython-38.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _compat.cpython-38.pyc │ │ │ ├── _structures.cpython-38.pyc │ │ │ ├── markers.cpython-38.pyc │ │ │ ├── requirements.cpython-38.pyc │ │ │ ├── specifiers.cpython-38.pyc │ │ │ ├── utils.cpython-38.pyc │ │ │ └── version.cpython-38.pyc │ │ ├── _compat.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── utils.py │ │ └── version.py │ ├── pyparsing.py │ └── six.py │ ├── archive_util.py │ ├── build_meta.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli.exe │ ├── command │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── alias.cpython-38.pyc │ │ ├── bdist_egg.cpython-38.pyc │ │ ├── bdist_rpm.cpython-38.pyc │ │ ├── bdist_wininst.cpython-38.pyc │ │ ├── build_clib.cpython-38.pyc │ │ ├── build_ext.cpython-38.pyc │ │ ├── build_py.cpython-38.pyc │ │ ├── develop.cpython-38.pyc │ │ ├── dist_info.cpython-38.pyc │ │ ├── easy_install.cpython-38.pyc │ │ ├── egg_info.cpython-38.pyc │ │ ├── install.cpython-38.pyc │ │ ├── install_egg_info.cpython-38.pyc │ │ ├── install_lib.cpython-38.pyc │ │ ├── install_scripts.cpython-38.pyc │ │ ├── py36compat.cpython-38.pyc │ │ ├── register.cpython-38.pyc │ │ ├── rotate.cpython-38.pyc │ │ ├── saveopts.cpython-38.pyc │ │ ├── sdist.cpython-38.pyc │ │ ├── setopt.cpython-38.pyc │ │ ├── test.cpython-38.pyc │ │ ├── upload.cpython-38.pyc │ │ └── upload_docs.cpython-38.pyc │ ├── alias.py │ ├── bdist_egg.py │ ├── bdist_rpm.py │ ├── bdist_wininst.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 │ ├── extension.py │ ├── extern │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── glibc.py │ ├── glob.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui.exe │ ├── launch.py │ ├── lib2to3_ex.py │ ├── monkey.py │ ├── msvc.py │ ├── namespaces.py │ ├── package_index.py │ ├── pep425tags.py │ ├── py27compat.py │ ├── py31compat.py │ ├── py33compat.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── site-patch.py │ ├── ssl_support.py │ ├── unicode_utils.py │ ├── version.py │ ├── wheel.py │ └── windows_support.py ├── Scripts ├── Activate.ps1 ├── activate ├── activate.bat ├── deactivate.bat ├── easy_install-3.8.exe ├── easy_install.exe ├── pip.exe ├── pip3.8.exe ├── pip3.exe ├── python.exe └── pythonw.exe └── pyvenv.cfg /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | tokens.py 3 | *pyc 4 | *__ 5 | *.debug 6 | *.log 7 | *.exe 8 | __pycache__/ 9 | *.py[cod] 10 | .cache 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | pip install flask 3 | pip install requests 4 | -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- 1 | from flask import Flask, request 2 | import requests 3 | import json 4 | from tokens import get_tokens 5 | 6 | tokens = get_tokens() 7 | 8 | bridge_ip = tokens['BRIDGE_IP'] 9 | api_key = tokens['API_KEY'] 10 | 11 | url = 'http://' + bridge_ip + '/api/' + api_key + '/' 12 | app = Flask(__name__) 13 | 14 | @app.route('/') 15 | def index(): 16 | return 'Hello kalle' 17 | @app.route('/lights') 18 | def get_lights(): 19 | r = request 20 | return requests.get(url + 'lights').json() 21 | @app.route('/lightsoff') 22 | def lights_off(): 23 | r = request 24 | return requests.put(url + 'lights/1/state', data = json.dumps({'on':False})).json() 25 | 26 | if __name__ == '__main__': 27 | app.run(debug=True, host='0.0.0.0') 28 | -------------------------------------------------------------------------------- /env/Lib/site-packages/__pycache__/easy_install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/__pycache__/easy_install.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- 1 | """Run the EasyInstall command""" 2 | 3 | if __name__ == '__main__': 4 | from setuptools.command.easy_install import main 5 | main() 6 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-19.2.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-19.2.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-19.2.3.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-19.2.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.2.3" 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import os 4 | import sys 5 | 6 | # If we are running from a wheel, add the wheel to sys.path 7 | # This allows the usage python pip-*.whl/pip install pip-*.whl 8 | if __package__ == '': 9 | # __file__ is pip-*.whl/pip/__main__.py 10 | # first dirname call strips of '/__main__.py', second strips off '/pip' 11 | # Resulting path is the name of the wheel itself 12 | # Add that to sys.path so we can import pip 13 | path = os.path.dirname(os.path.dirname(__file__)) 14 | sys.path.insert(0, path) 15 | 16 | from pip._internal import main as _main # isort:skip # noqa 17 | 18 | if __name__ == '__main__': 19 | sys.exit(_main()) 20 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/download.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/download.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/index.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/legacy_resolve.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/legacy_resolve.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/pep425tags.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/pep425tags.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | from pip._internal.distributions.source import SourceDistribution 2 | from pip._internal.distributions.wheel import WheelDistribution 3 | 4 | from pip._internal.utils.typing import MYPY_CHECK_RUNNING 5 | 6 | if MYPY_CHECK_RUNNING: 7 | from pip._internal.distributions.base import AbstractDistribution 8 | from pip._internal.req.req_install import InstallRequirement 9 | 10 | 11 | def make_distribution_for_install_requirement(install_req): 12 | # type: (InstallRequirement) -> AbstractDistribution 13 | """Returns a Distribution for the given InstallRequirement 14 | """ 15 | # If it's not an editable, is a wheel, it's a WheelDistribution 16 | if install_req.editable: 17 | return SourceDistribution(install_req) 18 | 19 | if install_req.link and install_req.is_wheel: 20 | return WheelDistribution(install_req) 21 | 22 | # Otherwise, a SourceDistribution 23 | return SourceDistribution(install_req) 24 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__pycache__/source.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/distributions/__pycache__/source.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/installed.py: -------------------------------------------------------------------------------- 1 | from pip._internal.distributions.base import AbstractDistribution 2 | 3 | 4 | class InstalledDistribution(AbstractDistribution): 5 | """Represents an installed package. 6 | 7 | This does not need any preparation as the required information has already 8 | been computed. 9 | """ 10 | 11 | def get_pkg_resources_distribution(self): 12 | return self.req.satisfied_by 13 | 14 | def prepare_distribution_metadata(self, finder, build_isolation): 15 | pass 16 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/wheel.py: -------------------------------------------------------------------------------- 1 | from pip._vendor import pkg_resources 2 | 3 | from pip._internal.distributions.base import AbstractDistribution 4 | 5 | 6 | class WheelDistribution(AbstractDistribution): 7 | """Represents a wheel distribution. 8 | 9 | This does not need any preparation as wheels can be directly unpacked. 10 | """ 11 | 12 | def get_pkg_resources_distribution(self): 13 | return list(pkg_resources.find_distributions( 14 | self.req.source_dir))[0] 15 | 16 | def prepare_distribution_metadata(self, finder, build_isolation): 17 | pass 18 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/marker_files.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/marker_files.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/outdated.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/outdated.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/ui.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/ui.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- 1 | import os 2 | import os.path 3 | 4 | from pip._internal.utils.compat import get_path_uid 5 | 6 | 7 | def check_path_owner(path): 8 | # type: (str) -> bool 9 | # If we don't have a way to check the effective uid of this process, then 10 | # we'll just assume that we own the directory. 11 | if not hasattr(os, "geteuid"): 12 | return True 13 | 14 | previous = None 15 | while path != previous: 16 | if os.path.lexists(path): 17 | # Check if path is writable by current user. 18 | if os.geteuid() == 0: 19 | # Special handling for root user in order to handle properly 20 | # cases where users use sudo without -H flag. 21 | try: 22 | path_uid = get_path_uid(path) 23 | except OSError: 24 | return False 25 | return path_uid == 0 26 | else: 27 | return os.access(path, os.W_OK) 28 | else: 29 | previous, path = path, os.path.dirname(path) 30 | return False # assume we don't own the path 31 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/marker_files.py: -------------------------------------------------------------------------------- 1 | import os.path 2 | 3 | DELETE_MARKER_MESSAGE = '''\ 4 | This file is placed here by pip to indicate the source was put 5 | here by pip. 6 | 7 | Once this package is successfully installed this source code will be 8 | deleted (unless you remove this file). 9 | ''' 10 | PIP_DELETE_MARKER_FILENAME = 'pip-delete-this-directory.txt' 11 | 12 | 13 | def write_delete_marker_file(directory): 14 | # type: (str) -> None 15 | """ 16 | Write the pip delete marker file into this directory. 17 | """ 18 | filepath = os.path.join(directory, PIP_DELETE_MARKER_FILENAME) 19 | with open(filepath, 'w') as marker_fp: 20 | marker_fp.write(DELETE_MARKER_MESSAGE) 21 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/virtualenv.py: -------------------------------------------------------------------------------- 1 | import os.path 2 | import site 3 | import sys 4 | 5 | 6 | def running_under_virtualenv(): 7 | # type: () -> bool 8 | """ 9 | Return True if we're running inside a virtualenv, False otherwise. 10 | 11 | """ 12 | if hasattr(sys, 'real_prefix'): 13 | # pypa/virtualenv case 14 | return True 15 | elif sys.prefix != getattr(sys, "base_prefix", sys.prefix): 16 | # PEP 405 venv 17 | return True 18 | 19 | return False 20 | 21 | 22 | def virtualenv_no_global(): 23 | # type: () -> bool 24 | """ 25 | Return True if in a venv and no system site packages. 26 | """ 27 | # this mirrors the logic in virtualenv.py for locating the 28 | # no-global-site-packages.txt file 29 | site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) 30 | no_global_file = os.path.join(site_mod_dir, 'no-global-site-packages.txt') 31 | if running_under_virtualenv() and os.path.isfile(no_global_file): 32 | return True 33 | else: 34 | return False 35 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- 1 | # Expose a limited set of classes and functions so callers outside of 2 | # the vcs package don't need to import deeper than `pip._internal.vcs`. 3 | # (The test directory and imports protected by MYPY_CHECK_RUNNING may 4 | # still need to import from a vcs sub-package.) 5 | from pip._internal.vcs.versioncontrol import ( # noqa: F401 6 | RemoteNotFoundError, make_vcs_requirement_url, vcs, 7 | ) 8 | # Import all vcs modules to register each VCS in the VcsSupport object. 9 | import pip._internal.vcs.bazaar 10 | import pip._internal.vcs.git 11 | import pip._internal.vcs.mercurial 12 | import pip._internal.vcs.subversion # noqa: F401 13 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.5" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- 1 | """ 2 | The cache object API for implementing caches. The default is a thread 3 | safe in-memory dictionary. 4 | """ 5 | from threading import Lock 6 | 7 | 8 | class BaseCache(object): 9 | 10 | def get(self, key): 11 | raise NotImplementedError() 12 | 13 | def set(self, key, value): 14 | raise NotImplementedError() 15 | 16 | def delete(self, key): 17 | raise NotImplementedError() 18 | 19 | def close(self): 20 | pass 21 | 22 | 23 | class DictCache(BaseCache): 24 | 25 | def __init__(self, init_dict=None): 26 | self.lock = Lock() 27 | self.data = init_dict or {} 28 | 29 | def get(self, key): 30 | return self.data.get(key, None) 31 | 32 | def set(self, key, value): 33 | with self.lock: 34 | self.data.update({key: value}) 35 | 36 | def delete(self, key): 37 | with self.lock: 38 | if key in self.data: 39 | self.data.pop(key) 40 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py: -------------------------------------------------------------------------------- 1 | from __future__ import division 2 | 3 | from datetime import datetime 4 | from pip._vendor.cachecontrol.cache import BaseCache 5 | 6 | 7 | class RedisCache(BaseCache): 8 | 9 | def __init__(self, conn): 10 | self.conn = conn 11 | 12 | def get(self, key): 13 | return self.conn.get(key) 14 | 15 | def set(self, key, value, expires=None): 16 | if not expires: 17 | self.conn.set(key, value) 18 | else: 19 | expires = expires - datetime.utcnow() 20 | self.conn.setex(key, int(expires.total_seconds()), value) 21 | 22 | def delete(self, key): 23 | self.conn.delete(key) 24 | 25 | def clear(self): 26 | """Helper for clearing all the keys in a database. Use with 27 | caution!""" 28 | for key in self.conn.keys(): 29 | self.conn.delete(key) 30 | 31 | def close(self): 32 | """Redis uses connection pooling, no need to close the connection.""" 33 | pass 34 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- 1 | try: 2 | from urllib.parse import urljoin 3 | except ImportError: 4 | from urlparse import urljoin 5 | 6 | 7 | try: 8 | import cPickle as pickle 9 | except ImportError: 10 | import pickle 11 | 12 | 13 | # Handle the case where the requests module has been patched to not have 14 | # urllib3 bundled as part of its source. 15 | try: 16 | from pip._vendor.requests.packages.urllib3.response import HTTPResponse 17 | except ImportError: 18 | from pip._vendor.urllib3.response import HTTPResponse 19 | 20 | try: 21 | from pip._vendor.requests.packages.urllib3.util import is_fp_closed 22 | except ImportError: 23 | from pip._vendor.urllib3.util import is_fp_closed 24 | 25 | # Replicate some six behaviour 26 | try: 27 | text_type = unicode 28 | except NameError: 29 | text_type = str 30 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- 1 | from .adapter import CacheControlAdapter 2 | from .cache import DictCache 3 | 4 | 5 | def CacheControl( 6 | sess, 7 | cache=None, 8 | cache_etags=True, 9 | serializer=None, 10 | heuristic=None, 11 | controller_class=None, 12 | adapter_class=None, 13 | cacheable_methods=None, 14 | ): 15 | 16 | cache = cache or DictCache() 17 | adapter_class = adapter_class or CacheControlAdapter 18 | adapter = adapter_class( 19 | cache, 20 | cache_etags=cache_etags, 21 | serializer=serializer, 22 | heuristic=heuristic, 23 | controller_class=controller_class, 24 | cacheable_methods=cacheable_methods, 25 | ) 26 | sess.mount("http://", adapter) 27 | sess.mount("https://", adapter) 28 | 29 | return sess 30 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2019.06.16" 4 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | certifi.py 5 | ~~~~~~~~~~ 6 | 7 | This module returns the installation location of cacert.pem. 8 | """ 9 | import os 10 | 11 | 12 | def where(): 13 | f = os.path.dirname(__file__) 14 | 15 | return os.path.join(f, 'cacert.pem') 16 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langcyrillicmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langcyrillicmodel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.1' 7 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2019 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.2.9.post0' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | # pylint:disable=wrong-import-position 8 | try: 9 | from .datrie import Trie as DATrie 10 | except ImportError: 11 | pass 12 | else: 13 | Trie = DATrie 14 | # pylint:enable=wrong-import-position 15 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from . import base 4 | 5 | from collections import OrderedDict 6 | 7 | 8 | def _attr_key(attr): 9 | """Return an appropriate key for an attribute for sorting 10 | 11 | Attributes have a namespace that can be either ``None`` or a string. We 12 | can't compare the two because they're different types, so we convert 13 | ``None`` to an empty string first. 14 | 15 | """ 16 | return (attr[0][0] or ''), attr[0][1] 17 | 18 | 19 | class Filter(base.Filter): 20 | """Alphabetizes attributes for elements""" 21 | def __iter__(self): 22 | for token in base.Filter.__iter__(self): 23 | if token["type"] in ("StartTag", "EmptyTag"): 24 | attrs = OrderedDict() 25 | for name, value in sorted(token["data"].items(), 26 | key=_attr_key): 27 | attrs[name] = value 28 | token["data"] = attrs 29 | yield token 30 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- 1 | """Tree adapters let you convert from one tree structure to another 2 | 3 | Example: 4 | 5 | .. code-block:: python 6 | 7 | from pip._vendor import html5lib 8 | from pip._vendor.html5lib.treeadapters import genshi 9 | 10 | doc = '
Hi!' 11 | treebuilder = html5lib.getTreeBuilder('etree') 12 | parser = html5lib.HTMLParser(tree=treebuilder) 13 | tree = parser.parse(doc) 14 | TreeWalker = html5lib.getTreeWalker('etree') 15 | 16 | genshi_tree = genshi.to_genshi(TreeWalker(tree)) 17 | 18 | """ 19 | from __future__ import absolute_import, division, unicode_literals 20 | 21 | from . import sax 22 | 23 | __all__ = ["sax"] 24 | 25 | try: 26 | from . import genshi # noqa 27 | except ImportError: 28 | pass 29 | else: 30 | __all__.append("genshi") 31 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/linklockfile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/linklockfile.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/mkdirlockfile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/mkdirlockfile.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/pidlockfile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/pidlockfile.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/sqlitelockfile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/sqlitelockfile.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/symlinklockfile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/symlinklockfile.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 6, 1) 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", 8 | "__summary__", 9 | "__uri__", 10 | "__version__", 11 | "__author__", 12 | "__email__", 13 | "__license__", 14 | "__copyright__", 15 | ] 16 | 17 | __title__ = "packaging" 18 | __summary__ = "Core utilities for Python packages" 19 | __uri__ = "https://github.com/pypa/packaging" 20 | 21 | __version__ = "19.0" 22 | 23 | __author__ = "Donald Stufft and individual contributors" 24 | __email__ = "donald@stufft.io" 25 | 26 | __license__ = "BSD or Apache License, Version 2.0" 27 | __copyright__ = "Copyright 2014-2019 %s" % __author__ 28 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, 8 | __copyright__, 9 | __email__, 10 | __license__, 11 | __summary__, 12 | __title__, 13 | __uri__, 14 | __version__, 15 | ) 16 | 17 | __all__ = [ 18 | "__title__", 19 | "__summary__", 20 | "__uri__", 21 | "__version__", 22 | "__author__", 23 | "__email__", 24 | "__license__", 25 | "__copyright__", 26 | ] 27 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = (str,) 16 | else: 17 | string_types = (basestring,) 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | 31 | return type.__new__(metaclass, "temporary_class", (), {}) 32 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- 1 | """Handle reading and writing JSON in UTF-8, on Python 3 and 2.""" 2 | import json 3 | import sys 4 | 5 | if sys.version_info[0] >= 3: 6 | # Python 3 7 | def write_json(obj, path, **kwargs): 8 | with open(path, 'w', encoding='utf-8') as f: 9 | json.dump(obj, f, **kwargs) 10 | 11 | def read_json(path): 12 | with open(path, 'r', encoding='utf-8') as f: 13 | return json.load(f) 14 | 15 | else: 16 | # Python 2 17 | def write_json(obj, path, **kwargs): 18 | with open(path, 'wb') as f: 19 | json.dump(obj, f, encoding='utf-8', **kwargs) 20 | 21 | def read_json(path): 22 | with open(path, 'rb') as f: 23 | return json.load(f) 24 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from pip._vendor import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/parser.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/test.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/test.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/writer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/writer.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- 1 | class TomlError(RuntimeError): 2 | def __init__(self, message, line, col, filename): 3 | RuntimeError.__init__(self, message, line, col, filename) 4 | self.message = message 5 | self.line = line 6 | self.col = col 7 | self.filename = filename 8 | 9 | def __str__(self): 10 | return '{}({}, {}): {}'.format(self.filename, self.line, self.col, self.message) 11 | 12 | def __repr__(self): 13 | return 'TomlError({!r}, {!r}, {!r}, {!r})'.format(self.message, self.line, self.col, self.filename) 14 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'http://python-requests.org' 8 | __version__ = '2.22.0' 9 | __build__ = 0x022200 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2019 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | requests.hooks 5 | ~~~~~~~~~~~~~~ 6 | 7 | This module provides the capabilities for the Requests hooks system. 8 | 9 | Available hooks: 10 | 11 | ``response``: 12 | The response generated from a Request. 13 | """ 14 | HOOKS = ['response'] 15 | 16 | 17 | def default_hooks(): 18 | return {event: [] for event in HOOKS} 19 | 20 | # TODO: response is the only one 21 | 22 | 23 | def dispatch_hook(key, hooks, hook_data, **kwargs): 24 | """Dispatches a hook dictionary on a given piece of data.""" 25 | hooks = hooks or {} 26 | hooks = hooks.get(key) 27 | if hooks: 28 | if hasattr(hooks, '__call__'): 29 | hooks = [hooks] 30 | for hook in hooks: 31 | _hook_data = hook(hook_data, **kwargs) 32 | if _hook_data is not None: 33 | hook_data = _hook_data 34 | return hook_data 35 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | # This code exists for backwards compatibility reasons. 4 | # I don't like it either. Just look the other way. :) 5 | 6 | for package in ('urllib3', 'idna', 'chardet'): 7 | vendored_package = "pip._vendor." + package 8 | locals()[package] = __import__(vendored_package) 9 | # This traversal is apparently necessary such that the identities are 10 | # preserved (requests.packages.urllib3.* is urllib3.*) 11 | for mod in list(sys.modules): 12 | if mod == vendored_package or mod.startswith(vendored_package + '.'): 13 | unprefixed_mod = mod[len("pip._vendor."):] 14 | sys.modules['pip._vendor.requests.packages.' + unprefixed_mod] = sys.modules[mod] 15 | 16 | # Kinda cool, though, right? 17 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module provides means to detect the App Engine environment. 3 | """ 4 | 5 | import os 6 | 7 | 8 | def is_appengine(): 9 | return (is_local_appengine() or 10 | is_prod_appengine() or 11 | is_prod_appengine_mvms()) 12 | 13 | 14 | def is_appengine_sandbox(): 15 | return is_appengine() and not is_prod_appengine_mvms() 16 | 17 | 18 | def is_local_appengine(): 19 | return ('APPENGINE_RUNTIME' in os.environ and 20 | 'Development/' in os.environ['SERVER_SOFTWARE']) 21 | 22 | 23 | def is_prod_appengine(): 24 | return ('APPENGINE_RUNTIME' in os.environ and 25 | 'Google App Engine/' in os.environ['SERVER_SOFTWARE'] and 26 | not is_prod_appengine_mvms()) 27 | 28 | 29 | def is_prod_appengine_mvms(): 30 | return os.environ.get('GAE_VM', False) == 'true' 31 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/_mixin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/_mixin.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/abnf_regexp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/abnf_regexp.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/builder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/builder.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/iri.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/iri.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/misc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/misc.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/normalizers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/normalizers.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/parseresult.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/parseresult.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/uri.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/uri.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/validators.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/rfc3986/__pycache__/validators.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | try: 4 | # Our match_hostname function is the same as 3.5's, so we only want to 5 | # import the match_hostname function if it's at least that good. 6 | if sys.version_info < (3, 5): 7 | raise ImportError("Fallback to vendored code") 8 | 9 | from ssl import CertificateError, match_hostname 10 | except ImportError: 11 | try: 12 | # Backport of the function from a pypi module 13 | from backports.ssl_match_hostname import CertificateError, match_hostname 14 | except ImportError: 15 | # Our vendored copy 16 | from ._implementation import CertificateError, match_hostname 17 | 18 | # Not needed, but documenting what we provide. 19 | __all__ = ('CertificateError', 'match_hostname') 20 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/__init__.py -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 8 | "__email__", "__license__", "__copyright__", 9 | ] 10 | 11 | __title__ = "packaging" 12 | __summary__ = "Core utilities for Python packages" 13 | __uri__ = "https://github.com/pypa/packaging" 14 | 15 | __version__ = "16.8" 16 | 17 | __author__ = "Donald Stufft and individual contributors" 18 | __email__ = "donald@stufft.io" 19 | 20 | __license__ = "BSD or Apache License, Version 2.0" 21 | __copyright__ = "Copyright 2014-2016 %s" % __author__ 22 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, __copyright__, __email__, __license__, __summary__, __title__, 8 | __uri__, __version__ 9 | ) 10 | 11 | __all__ = [ 12 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 13 | "__email__", "__license__", "__copyright__", 14 | ] 15 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = str, 16 | else: 17 | string_types = basestring, 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | return type.__new__(metaclass, 'temporary_class', (), {}) 31 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import re 7 | 8 | 9 | _canonicalize_regex = re.compile(r"[-_.]+") 10 | 11 | 12 | def canonicalize_name(name): 13 | # This is taken from PEP 503. 14 | return _canonicalize_regex.sub("-", name).lower() 15 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from .extern import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-41.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-41.2.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-41.2.0.dist-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/source/c/certifi/certifi-2016.9.26.tar.gz#md5=baa81e951a29958563689d868ef1064d 2 | https://files.pythonhosted.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-41.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-41.2.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/depends.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/depends.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/dist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/dist.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/extension.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/extension.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/glibc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/glibc.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/glob.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/glob.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/launch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/launch.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/monkey.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/monkey.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/msvc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/msvc.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/package_index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/package_index.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/pep425tags.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/pep425tags.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- 1 | class SetuptoolsDeprecationWarning(Warning): 2 | """ 3 | Base class for warning deprecations in ``setuptools`` 4 | 5 | This class is not derived from ``DeprecationWarning``, and as such is 6 | visible by default. 7 | """ 8 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/__init__.py -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 8 | "__email__", "__license__", "__copyright__", 9 | ] 10 | 11 | __title__ = "packaging" 12 | __summary__ = "Core utilities for Python packages" 13 | __uri__ = "https://github.com/pypa/packaging" 14 | 15 | __version__ = "16.8" 16 | 17 | __author__ = "Donald Stufft and individual contributors" 18 | __email__ = "donald@stufft.io" 19 | 20 | __license__ = "BSD or Apache License, Version 2.0" 21 | __copyright__ = "Copyright 2014-2016 %s" % __author__ 22 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, __copyright__, __email__, __license__, __summary__, __title__, 8 | __uri__, __version__ 9 | ) 10 | 11 | __all__ = [ 12 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 13 | "__email__", "__license__", "__copyright__", 14 | ] 15 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = str, 16 | else: 17 | string_types = basestring, 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | return type.__new__(metaclass, 'temporary_class', (), {}) 31 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import re 7 | 8 | 9 | _canonicalize_regex = re.compile(r"[-_.]+") 10 | 11 | 12 | def canonicalize_name(name): 13 | # This is taken from PEP 503. 14 | return _canonicalize_regex.sub("-", name).lower() 15 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | 'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop', 3 | 'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts', 4 | 'sdist', 'setopt', 'test', 'install_egg_info', 'install_scripts', 5 | 'register', 'bdist_wininst', 'upload_docs', 'upload', 'build_clib', 6 | 'dist_info', 7 | ] 8 | 9 | from distutils.command.bdist import bdist 10 | import sys 11 | 12 | from setuptools.command import install_scripts 13 | 14 | if 'egg' not in bdist.format_commands: 15 | bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") 16 | bdist.format_commands.append('egg') 17 | 18 | del bdist, sys 19 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/install.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/register.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/register.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/test.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/test.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/RaspberryAPI/2e6833f6628ed0c331a4d82bf8e2645c5b298f8a/env/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-38.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/bdist_wininst.py: -------------------------------------------------------------------------------- 1 | import distutils.command.bdist_wininst as orig 2 | 3 | 4 | class bdist_wininst(orig.bdist_wininst): 5 | def reinitialize_command(self, command, reinit_subcommands=0): 6 | """ 7 | Supplement reinitialize_command to work around 8 | http://bugs.python.org/issue20819 9 | """ 10 | cmd = self.distribution.reinitialize_command( 11 | command, reinit_subcommands) 12 | if command in ('install', 'install_lib'): 13 | cmd.install_lib = None 14 | return cmd 15 | 16 | def run(self): 17 | self._is_running = True 18 | try: 19 | orig.bdist_wininst.run(self) 20 | finally: 21 | self._is_running = False 22 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/launcher manifest.xml: -------------------------------------------------------------------------------- 1 | 2 |