├── .DS_Store ├── .idea ├── .gitignore ├── .name ├── Scarp_WOS.iml ├── misc.xml └── modules.xml ├── ReadMe.md ├── Spider_by_VZ ├── .DS_Store ├── DownLoadPdf.py ├── Main_Methods.py ├── Mid_Process_File │ ├── 2020-07-09-1594280605.pkl │ └── 2020-07-09-1594288134.pkl ├── Previous_version │ ├── 1Spyder_WOS.py │ ├── 2dict_to_excel.py │ └── Spider_wos_JounorAndImapct.py ├── __pycache__ │ └── Main_Methods.cpython-36.pyc ├── article_information │ ├── .DS_Store │ └── paperInfo.csv ├── article_pdf │ └── .DS_Store └── main.py ├── assets ├── ReadMe-1594282295341.png ├── ReadMe-1594282533769.png └── ReadMe-1594282742570.png └── venv ├── .DS_Store ├── .Python ├── bin ├── activate ├── activate.csh ├── activate.fish ├── activate_this.py ├── easy_install ├── easy_install-2.7 ├── pip ├── pip2 ├── pip2.7 ├── python ├── python-config ├── python2 ├── python2.7 └── wheel ├── include └── python2.7 ├── lib ├── .DS_Store └── python2.7 │ ├── UserDict.py │ ├── UserDict.pyc │ ├── _abcoll.py │ ├── _abcoll.pyc │ ├── _weakrefset.py │ ├── _weakrefset.pyc │ ├── abc.py │ ├── abc.pyc │ ├── codecs.py │ ├── codecs.pyc │ ├── config │ ├── copy_reg.py │ ├── copy_reg.pyc │ ├── distutils │ ├── __init__.py │ └── distutils.cfg │ ├── encodings │ ├── fnmatch.py │ ├── genericpath.py │ ├── genericpath.pyc │ ├── lib-dynload │ ├── linecache.py │ ├── linecache.pyc │ ├── locale.py │ ├── no-global-site-packages.txt │ ├── ntpath.py │ ├── orig-prefix.txt │ ├── os.py │ ├── os.pyc │ ├── posixpath.py │ ├── posixpath.pyc │ ├── re.py │ ├── site-packages │ ├── easy_install.py │ ├── easy_install.pyc │ ├── pip-19.2.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── pip │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __main__.py │ │ ├── __main__.pyc │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── build_env.py │ │ │ ├── build_env.pyc │ │ │ ├── cache.py │ │ │ ├── cache.pyc │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── autocompletion.py │ │ │ │ ├── autocompletion.pyc │ │ │ │ ├── base_command.py │ │ │ │ ├── base_command.pyc │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── cmdoptions.pyc │ │ │ │ ├── main_parser.py │ │ │ │ ├── main_parser.pyc │ │ │ │ ├── parser.py │ │ │ │ ├── parser.pyc │ │ │ │ ├── status_codes.py │ │ │ │ └── status_codes.pyc │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── check.py │ │ │ │ ├── check.pyc │ │ │ │ ├── completion.py │ │ │ │ ├── completion.pyc │ │ │ │ ├── configuration.py │ │ │ │ ├── configuration.pyc │ │ │ │ ├── debug.py │ │ │ │ ├── debug.pyc │ │ │ │ ├── download.py │ │ │ │ ├── download.pyc │ │ │ │ ├── freeze.py │ │ │ │ ├── freeze.pyc │ │ │ │ ├── hash.py │ │ │ │ ├── hash.pyc │ │ │ │ ├── help.py │ │ │ │ ├── help.pyc │ │ │ │ ├── install.py │ │ │ │ ├── install.pyc │ │ │ │ ├── list.py │ │ │ │ ├── list.pyc │ │ │ │ ├── search.py │ │ │ │ ├── search.pyc │ │ │ │ ├── show.py │ │ │ │ ├── show.pyc │ │ │ │ ├── uninstall.py │ │ │ │ ├── uninstall.pyc │ │ │ │ ├── wheel.py │ │ │ │ └── wheel.pyc │ │ │ ├── configuration.py │ │ │ ├── configuration.pyc │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── base.py │ │ │ │ ├── base.pyc │ │ │ │ ├── installed.py │ │ │ │ ├── installed.pyc │ │ │ │ ├── source.py │ │ │ │ ├── source.pyc │ │ │ │ ├── wheel.py │ │ │ │ └── wheel.pyc │ │ │ ├── download.py │ │ │ ├── download.pyc │ │ │ ├── exceptions.py │ │ │ ├── exceptions.pyc │ │ │ ├── index.py │ │ │ ├── index.pyc │ │ │ ├── legacy_resolve.py │ │ │ ├── legacy_resolve.pyc │ │ │ ├── locations.py │ │ │ ├── locations.pyc │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── candidate.py │ │ │ │ ├── candidate.pyc │ │ │ │ ├── format_control.py │ │ │ │ ├── format_control.pyc │ │ │ │ ├── index.py │ │ │ │ ├── index.pyc │ │ │ │ ├── link.py │ │ │ │ ├── link.pyc │ │ │ │ ├── search_scope.py │ │ │ │ ├── search_scope.pyc │ │ │ │ ├── selection_prefs.py │ │ │ │ ├── selection_prefs.pyc │ │ │ │ ├── target_python.py │ │ │ │ └── target_python.pyc │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── check.py │ │ │ │ ├── check.pyc │ │ │ │ ├── freeze.py │ │ │ │ ├── freeze.pyc │ │ │ │ ├── prepare.py │ │ │ │ └── prepare.pyc │ │ │ ├── pep425tags.py │ │ │ ├── pep425tags.pyc │ │ │ ├── pyproject.py │ │ │ ├── pyproject.pyc │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── constructors.py │ │ │ │ ├── constructors.pyc │ │ │ │ ├── req_file.py │ │ │ │ ├── req_file.pyc │ │ │ │ ├── req_install.py │ │ │ │ ├── req_install.pyc │ │ │ │ ├── req_set.py │ │ │ │ ├── req_set.pyc │ │ │ │ ├── req_tracker.py │ │ │ │ ├── req_tracker.pyc │ │ │ │ ├── req_uninstall.py │ │ │ │ └── req_uninstall.pyc │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── appdirs.pyc │ │ │ │ ├── compat.py │ │ │ │ ├── compat.pyc │ │ │ │ ├── deprecation.py │ │ │ │ ├── deprecation.pyc │ │ │ │ ├── encoding.py │ │ │ │ ├── encoding.pyc │ │ │ │ ├── filesystem.py │ │ │ │ ├── filesystem.pyc │ │ │ │ ├── glibc.py │ │ │ │ ├── glibc.pyc │ │ │ │ ├── hashes.py │ │ │ │ ├── hashes.pyc │ │ │ │ ├── logging.py │ │ │ │ ├── logging.pyc │ │ │ │ ├── marker_files.py │ │ │ │ ├── marker_files.pyc │ │ │ │ ├── misc.py │ │ │ │ ├── misc.pyc │ │ │ │ ├── models.py │ │ │ │ ├── models.pyc │ │ │ │ ├── outdated.py │ │ │ │ ├── outdated.pyc │ │ │ │ ├── packaging.py │ │ │ │ ├── packaging.pyc │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── setuptools_build.pyc │ │ │ │ ├── temp_dir.py │ │ │ │ ├── temp_dir.pyc │ │ │ │ ├── typing.py │ │ │ │ ├── typing.pyc │ │ │ │ ├── ui.py │ │ │ │ ├── ui.pyc │ │ │ │ ├── virtualenv.py │ │ │ │ └── virtualenv.pyc │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── bazaar.py │ │ │ │ ├── bazaar.pyc │ │ │ │ ├── git.py │ │ │ │ ├── git.pyc │ │ │ │ ├── mercurial.py │ │ │ │ ├── mercurial.pyc │ │ │ │ ├── subversion.py │ │ │ │ ├── subversion.pyc │ │ │ │ ├── versioncontrol.py │ │ │ │ └── versioncontrol.pyc │ │ │ ├── wheel.py │ │ │ └── wheel.pyc │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── appdirs.py │ │ │ ├── appdirs.pyc │ │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── _cmd.py │ │ │ ├── _cmd.pyc │ │ │ ├── adapter.py │ │ │ ├── adapter.pyc │ │ │ ├── cache.py │ │ │ ├── cache.pyc │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── file_cache.py │ │ │ │ ├── file_cache.pyc │ │ │ │ ├── redis_cache.py │ │ │ │ └── redis_cache.pyc │ │ │ ├── compat.py │ │ │ ├── compat.pyc │ │ │ ├── controller.py │ │ │ ├── controller.pyc │ │ │ ├── filewrapper.py │ │ │ ├── filewrapper.pyc │ │ │ ├── heuristics.py │ │ │ ├── heuristics.pyc │ │ │ ├── serialize.py │ │ │ ├── serialize.pyc │ │ │ ├── wrapper.py │ │ │ └── wrapper.pyc │ │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __main__.py │ │ │ ├── __main__.pyc │ │ │ ├── cacert.pem │ │ │ ├── core.py │ │ │ └── core.pyc │ │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── big5freq.py │ │ │ ├── big5freq.pyc │ │ │ ├── big5prober.py │ │ │ ├── big5prober.pyc │ │ │ ├── chardistribution.py │ │ │ ├── chardistribution.pyc │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetgroupprober.pyc │ │ │ ├── charsetprober.py │ │ │ ├── charsetprober.pyc │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── chardetect.py │ │ │ │ └── chardetect.pyc │ │ │ ├── codingstatemachine.py │ │ │ ├── codingstatemachine.pyc │ │ │ ├── compat.py │ │ │ ├── compat.pyc │ │ │ ├── cp949prober.py │ │ │ ├── cp949prober.pyc │ │ │ ├── enums.py │ │ │ ├── enums.pyc │ │ │ ├── escprober.py │ │ │ ├── escprober.pyc │ │ │ ├── escsm.py │ │ │ ├── escsm.pyc │ │ │ ├── eucjpprober.py │ │ │ ├── eucjpprober.pyc │ │ │ ├── euckrfreq.py │ │ │ ├── euckrfreq.pyc │ │ │ ├── euckrprober.py │ │ │ ├── euckrprober.pyc │ │ │ ├── euctwfreq.py │ │ │ ├── euctwfreq.pyc │ │ │ ├── euctwprober.py │ │ │ ├── euctwprober.pyc │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312freq.pyc │ │ │ ├── gb2312prober.py │ │ │ ├── gb2312prober.pyc │ │ │ ├── hebrewprober.py │ │ │ ├── hebrewprober.pyc │ │ │ ├── jisfreq.py │ │ │ ├── jisfreq.pyc │ │ │ ├── jpcntx.py │ │ │ ├── jpcntx.pyc │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langbulgarianmodel.pyc │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langcyrillicmodel.pyc │ │ │ ├── langgreekmodel.py │ │ │ ├── langgreekmodel.pyc │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhebrewmodel.pyc │ │ │ ├── langhungarianmodel.py │ │ │ ├── langhungarianmodel.pyc │ │ │ ├── langthaimodel.py │ │ │ ├── langthaimodel.pyc │ │ │ ├── langturkishmodel.py │ │ │ ├── langturkishmodel.pyc │ │ │ ├── latin1prober.py │ │ │ ├── latin1prober.pyc │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcharsetprober.pyc │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcsgroupprober.pyc │ │ │ ├── mbcssm.py │ │ │ ├── mbcssm.pyc │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcharsetprober.pyc │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sbcsgroupprober.pyc │ │ │ ├── sjisprober.py │ │ │ ├── sjisprober.pyc │ │ │ ├── universaldetector.py │ │ │ ├── universaldetector.pyc │ │ │ ├── utf8prober.py │ │ │ ├── utf8prober.pyc │ │ │ ├── version.py │ │ │ └── version.pyc │ │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── ansi.py │ │ │ ├── ansi.pyc │ │ │ ├── ansitowin32.py │ │ │ ├── ansitowin32.pyc │ │ │ ├── initialise.py │ │ │ ├── initialise.pyc │ │ │ ├── win32.py │ │ │ ├── win32.pyc │ │ │ ├── winterm.py │ │ │ └── winterm.pyc │ │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── misc.py │ │ │ │ ├── misc.pyc │ │ │ │ ├── shutil.py │ │ │ │ ├── shutil.pyc │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ ├── sysconfig.pyc │ │ │ │ ├── tarfile.py │ │ │ │ └── tarfile.pyc │ │ │ ├── compat.py │ │ │ ├── compat.pyc │ │ │ ├── database.py │ │ │ ├── database.pyc │ │ │ ├── index.py │ │ │ ├── index.pyc │ │ │ ├── locators.py │ │ │ ├── locators.pyc │ │ │ ├── manifest.py │ │ │ ├── manifest.pyc │ │ │ ├── markers.py │ │ │ ├── markers.pyc │ │ │ ├── metadata.py │ │ │ ├── metadata.pyc │ │ │ ├── resources.py │ │ │ ├── resources.pyc │ │ │ ├── scripts.py │ │ │ ├── scripts.pyc │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── util.pyc │ │ │ ├── version.py │ │ │ ├── version.pyc │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ ├── wheel.py │ │ │ └── wheel.pyc │ │ │ ├── distro.py │ │ │ ├── distro.pyc │ │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── _ihatexml.py │ │ │ ├── _ihatexml.pyc │ │ │ ├── _inputstream.py │ │ │ ├── _inputstream.pyc │ │ │ ├── _tokenizer.py │ │ │ ├── _tokenizer.pyc │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── _base.py │ │ │ │ ├── _base.pyc │ │ │ │ ├── datrie.py │ │ │ │ ├── datrie.pyc │ │ │ │ ├── py.py │ │ │ │ └── py.pyc │ │ │ ├── _utils.py │ │ │ ├── _utils.pyc │ │ │ ├── constants.py │ │ │ ├── constants.pyc │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── alphabeticalattributes.pyc │ │ │ │ ├── base.py │ │ │ │ ├── base.pyc │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── inject_meta_charset.pyc │ │ │ │ ├── lint.py │ │ │ │ ├── lint.pyc │ │ │ │ ├── optionaltags.py │ │ │ │ ├── optionaltags.pyc │ │ │ │ ├── sanitizer.py │ │ │ │ ├── sanitizer.pyc │ │ │ │ ├── whitespace.py │ │ │ │ └── whitespace.pyc │ │ │ ├── html5parser.py │ │ │ ├── html5parser.pyc │ │ │ ├── serializer.py │ │ │ ├── serializer.pyc │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── genshi.py │ │ │ │ ├── genshi.pyc │ │ │ │ ├── sax.py │ │ │ │ └── sax.pyc │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── base.py │ │ │ │ ├── base.pyc │ │ │ │ ├── dom.py │ │ │ │ ├── dom.pyc │ │ │ │ ├── etree.py │ │ │ │ ├── etree.pyc │ │ │ │ ├── etree_lxml.py │ │ │ │ └── etree_lxml.pyc │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── base.py │ │ │ │ ├── base.pyc │ │ │ │ ├── dom.py │ │ │ │ ├── dom.pyc │ │ │ │ ├── etree.py │ │ │ │ ├── etree.pyc │ │ │ │ ├── etree_lxml.py │ │ │ │ ├── etree_lxml.pyc │ │ │ │ ├── genshi.py │ │ │ │ └── genshi.pyc │ │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── codec.py │ │ │ ├── codec.pyc │ │ │ ├── compat.py │ │ │ ├── compat.pyc │ │ │ ├── core.py │ │ │ ├── core.pyc │ │ │ ├── idnadata.py │ │ │ ├── idnadata.pyc │ │ │ ├── intranges.py │ │ │ ├── intranges.pyc │ │ │ ├── package_data.py │ │ │ ├── package_data.pyc │ │ │ ├── uts46data.py │ │ │ └── uts46data.pyc │ │ │ ├── ipaddress.py │ │ │ ├── ipaddress.pyc │ │ │ ├── lockfile │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── linklockfile.py │ │ │ ├── linklockfile.pyc │ │ │ ├── mkdirlockfile.py │ │ │ ├── mkdirlockfile.pyc │ │ │ ├── pidlockfile.py │ │ │ ├── pidlockfile.pyc │ │ │ ├── sqlitelockfile.py │ │ │ ├── sqlitelockfile.pyc │ │ │ ├── symlinklockfile.py │ │ │ └── symlinklockfile.pyc │ │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── _version.py │ │ │ ├── _version.pyc │ │ │ ├── exceptions.py │ │ │ ├── exceptions.pyc │ │ │ ├── fallback.py │ │ │ └── fallback.pyc │ │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __about__.pyc │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── _compat.py │ │ │ ├── _compat.pyc │ │ │ ├── _structures.py │ │ │ ├── _structures.pyc │ │ │ ├── markers.py │ │ │ ├── markers.pyc │ │ │ ├── requirements.py │ │ │ ├── requirements.pyc │ │ │ ├── specifiers.py │ │ │ ├── specifiers.pyc │ │ │ ├── utils.py │ │ │ ├── utils.pyc │ │ │ ├── version.py │ │ │ └── version.pyc │ │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── _in_process.py │ │ │ ├── _in_process.pyc │ │ │ ├── build.py │ │ │ ├── build.pyc │ │ │ ├── check.py │ │ │ ├── check.pyc │ │ │ ├── colorlog.py │ │ │ ├── colorlog.pyc │ │ │ ├── compat.py │ │ │ ├── compat.pyc │ │ │ ├── envbuild.py │ │ │ ├── envbuild.pyc │ │ │ ├── wrappers.py │ │ │ └── wrappers.pyc │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── py31compat.py │ │ │ └── py31compat.pyc │ │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── bar.py │ │ │ ├── bar.pyc │ │ │ ├── counter.py │ │ │ ├── counter.pyc │ │ │ ├── spinner.py │ │ │ └── spinner.pyc │ │ │ ├── pyparsing.py │ │ │ ├── pyparsing.pyc │ │ │ ├── pytoml │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── core.py │ │ │ ├── core.pyc │ │ │ ├── parser.py │ │ │ ├── parser.pyc │ │ │ ├── test.py │ │ │ ├── test.pyc │ │ │ ├── utils.py │ │ │ ├── utils.pyc │ │ │ ├── writer.py │ │ │ └── writer.pyc │ │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __version__.py │ │ │ ├── __version__.pyc │ │ │ ├── _internal_utils.py │ │ │ ├── _internal_utils.pyc │ │ │ ├── adapters.py │ │ │ ├── adapters.pyc │ │ │ ├── api.py │ │ │ ├── api.pyc │ │ │ ├── auth.py │ │ │ ├── auth.pyc │ │ │ ├── certs.py │ │ │ ├── certs.pyc │ │ │ ├── compat.py │ │ │ ├── compat.pyc │ │ │ ├── cookies.py │ │ │ ├── cookies.pyc │ │ │ ├── exceptions.py │ │ │ ├── exceptions.pyc │ │ │ ├── help.py │ │ │ ├── help.pyc │ │ │ ├── hooks.py │ │ │ ├── hooks.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── packages.py │ │ │ ├── packages.pyc │ │ │ ├── sessions.py │ │ │ ├── sessions.pyc │ │ │ ├── status_codes.py │ │ │ ├── status_codes.pyc │ │ │ ├── structures.py │ │ │ ├── structures.pyc │ │ │ ├── utils.py │ │ │ └── utils.pyc │ │ │ ├── retrying.py │ │ │ ├── retrying.pyc │ │ │ ├── six.py │ │ │ ├── six.pyc │ │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── _collections.py │ │ │ ├── _collections.pyc │ │ │ ├── connection.py │ │ │ ├── connection.pyc │ │ │ ├── connectionpool.py │ │ │ ├── connectionpool.pyc │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _appengine_environ.pyc │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── bindings.py │ │ │ │ │ ├── bindings.pyc │ │ │ │ │ ├── low_level.py │ │ │ │ │ └── low_level.pyc │ │ │ │ ├── appengine.py │ │ │ │ ├── appengine.pyc │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── ntlmpool.pyc │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── pyopenssl.pyc │ │ │ │ ├── securetransport.py │ │ │ │ ├── securetransport.pyc │ │ │ │ ├── socks.py │ │ │ │ └── socks.pyc │ │ │ ├── exceptions.py │ │ │ ├── exceptions.pyc │ │ │ ├── fields.py │ │ │ ├── fields.pyc │ │ │ ├── filepost.py │ │ │ ├── filepost.pyc │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── makefile.py │ │ │ │ │ └── makefile.pyc │ │ │ │ ├── rfc3986 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── _mixin.py │ │ │ │ │ ├── _mixin.pyc │ │ │ │ │ ├── abnf_regexp.py │ │ │ │ │ ├── abnf_regexp.pyc │ │ │ │ │ ├── api.py │ │ │ │ │ ├── api.pyc │ │ │ │ │ ├── builder.py │ │ │ │ │ ├── builder.pyc │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compat.pyc │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── exceptions.pyc │ │ │ │ │ ├── iri.py │ │ │ │ │ ├── iri.pyc │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── misc.pyc │ │ │ │ │ ├── normalizers.py │ │ │ │ │ ├── normalizers.pyc │ │ │ │ │ ├── parseresult.py │ │ │ │ │ ├── parseresult.pyc │ │ │ │ │ ├── uri.py │ │ │ │ │ ├── uri.pyc │ │ │ │ │ ├── validators.py │ │ │ │ │ └── validators.pyc │ │ │ │ ├── six.py │ │ │ │ ├── six.pyc │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── _implementation.py │ │ │ │ │ └── _implementation.pyc │ │ │ ├── poolmanager.py │ │ │ ├── poolmanager.pyc │ │ │ ├── request.py │ │ │ ├── request.pyc │ │ │ ├── response.py │ │ │ ├── response.pyc │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── connection.pyc │ │ │ │ ├── queue.py │ │ │ │ ├── queue.pyc │ │ │ │ ├── request.py │ │ │ │ ├── request.pyc │ │ │ │ ├── response.py │ │ │ │ ├── response.pyc │ │ │ │ ├── retry.py │ │ │ │ ├── retry.pyc │ │ │ │ ├── ssl_.py │ │ │ │ ├── ssl_.pyc │ │ │ │ ├── timeout.py │ │ │ │ ├── timeout.pyc │ │ │ │ ├── url.py │ │ │ │ ├── url.pyc │ │ │ │ ├── wait.py │ │ │ │ └── wait.pyc │ │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── labels.py │ │ │ ├── labels.pyc │ │ │ ├── mklabels.py │ │ │ ├── mklabels.pyc │ │ │ ├── tests.py │ │ │ ├── tests.pyc │ │ │ ├── x_user_defined.py │ │ │ └── x_user_defined.pyc │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── appdirs.py │ │ │ ├── appdirs.pyc │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __about__.pyc │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _compat.pyc │ │ │ │ ├── _structures.py │ │ │ │ ├── _structures.pyc │ │ │ │ ├── markers.py │ │ │ │ ├── markers.pyc │ │ │ │ ├── requirements.py │ │ │ │ ├── requirements.pyc │ │ │ │ ├── specifiers.py │ │ │ │ ├── specifiers.pyc │ │ │ │ ├── utils.py │ │ │ │ ├── utils.pyc │ │ │ │ ├── version.py │ │ │ │ └── version.pyc │ │ │ ├── pyparsing.py │ │ │ ├── pyparsing.pyc │ │ │ ├── six.py │ │ │ └── six.pyc │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ ├── py31compat.py │ │ └── py31compat.pyc │ ├── 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 │ │ ├── __init__.pyc │ │ ├── _deprecation_warning.py │ │ ├── _deprecation_warning.pyc │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __about__.pyc │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _compat.pyc │ │ │ │ ├── _structures.py │ │ │ │ ├── _structures.pyc │ │ │ │ ├── markers.py │ │ │ │ ├── markers.pyc │ │ │ │ ├── requirements.py │ │ │ │ ├── requirements.pyc │ │ │ │ ├── specifiers.py │ │ │ │ ├── specifiers.pyc │ │ │ │ ├── utils.py │ │ │ │ ├── utils.pyc │ │ │ │ ├── version.py │ │ │ │ └── version.pyc │ │ │ ├── pyparsing.py │ │ │ ├── pyparsing.pyc │ │ │ ├── six.py │ │ │ └── six.pyc │ │ ├── archive_util.py │ │ ├── archive_util.pyc │ │ ├── build_meta.py │ │ ├── build_meta.pyc │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── cli.exe │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── alias.py │ │ │ ├── alias.pyc │ │ │ ├── bdist_egg.py │ │ │ ├── bdist_egg.pyc │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_rpm.pyc │ │ │ ├── bdist_wininst.py │ │ │ ├── bdist_wininst.pyc │ │ │ ├── build_clib.py │ │ │ ├── build_clib.pyc │ │ │ ├── build_ext.py │ │ │ ├── build_ext.pyc │ │ │ ├── build_py.py │ │ │ ├── build_py.pyc │ │ │ ├── develop.py │ │ │ ├── develop.pyc │ │ │ ├── dist_info.py │ │ │ ├── dist_info.pyc │ │ │ ├── easy_install.py │ │ │ ├── easy_install.pyc │ │ │ ├── egg_info.py │ │ │ ├── egg_info.pyc │ │ │ ├── install.py │ │ │ ├── install.pyc │ │ │ ├── install_egg_info.py │ │ │ ├── install_egg_info.pyc │ │ │ ├── install_lib.py │ │ │ ├── install_lib.pyc │ │ │ ├── install_scripts.py │ │ │ ├── install_scripts.pyc │ │ │ ├── launcher manifest.xml │ │ │ ├── py36compat.py │ │ │ ├── py36compat.pyc │ │ │ ├── register.py │ │ │ ├── register.pyc │ │ │ ├── rotate.py │ │ │ ├── rotate.pyc │ │ │ ├── saveopts.py │ │ │ ├── saveopts.pyc │ │ │ ├── sdist.py │ │ │ ├── sdist.pyc │ │ │ ├── setopt.py │ │ │ ├── setopt.pyc │ │ │ ├── test.py │ │ │ ├── test.pyc │ │ │ ├── upload.py │ │ │ ├── upload.pyc │ │ │ ├── upload_docs.py │ │ │ └── upload_docs.pyc │ │ ├── config.py │ │ ├── config.pyc │ │ ├── dep_util.py │ │ ├── dep_util.pyc │ │ ├── depends.py │ │ ├── depends.pyc │ │ ├── dist.py │ │ ├── dist.pyc │ │ ├── extension.py │ │ ├── extension.pyc │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ ├── glibc.py │ │ ├── glibc.pyc │ │ ├── glob.py │ │ ├── glob.pyc │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── gui.exe │ │ ├── launch.py │ │ ├── launch.pyc │ │ ├── lib2to3_ex.py │ │ ├── lib2to3_ex.pyc │ │ ├── monkey.py │ │ ├── monkey.pyc │ │ ├── msvc.py │ │ ├── msvc.pyc │ │ ├── namespaces.py │ │ ├── namespaces.pyc │ │ ├── package_index.py │ │ ├── package_index.pyc │ │ ├── pep425tags.py │ │ ├── pep425tags.pyc │ │ ├── py27compat.py │ │ ├── py27compat.pyc │ │ ├── py31compat.py │ │ ├── py31compat.pyc │ │ ├── py33compat.py │ │ ├── py33compat.pyc │ │ ├── sandbox.py │ │ ├── sandbox.pyc │ │ ├── script (dev).tmpl │ │ ├── script.tmpl │ │ ├── site-patch.py │ │ ├── site-patch.pyc │ │ ├── ssl_support.py │ │ ├── ssl_support.pyc │ │ ├── unicode_utils.py │ │ ├── unicode_utils.pyc │ │ ├── version.py │ │ ├── version.pyc │ │ ├── wheel.py │ │ ├── wheel.pyc │ │ ├── windows_support.py │ │ └── windows_support.pyc │ ├── wheel-0.33.6.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ └── wheel │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __main__.py │ │ ├── __main__.pyc │ │ ├── bdist_wheel.py │ │ ├── bdist_wheel.pyc │ │ ├── cli │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── convert.py │ │ ├── convert.pyc │ │ ├── pack.py │ │ ├── pack.pyc │ │ ├── unpack.py │ │ └── unpack.pyc │ │ ├── metadata.py │ │ ├── metadata.pyc │ │ ├── pep425tags.py │ │ ├── pep425tags.pyc │ │ ├── pkginfo.py │ │ ├── pkginfo.pyc │ │ ├── util.py │ │ ├── util.pyc │ │ ├── wheelfile.py │ │ └── wheelfile.pyc │ ├── site.py │ ├── site.pyc │ ├── sre.py │ ├── sre_compile.py │ ├── sre_constants.py │ ├── sre_parse.py │ ├── stat.py │ ├── stat.pyc │ ├── types.py │ ├── types.pyc │ ├── warnings.py │ └── warnings.pyc └── pip-selfcheck.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Scarp_WOS -------------------------------------------------------------------------------- /.idea/Scarp_WOS.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Spider_by_VZ/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/Spider_by_VZ/.DS_Store -------------------------------------------------------------------------------- /Spider_by_VZ/Mid_Process_File/2020-07-09-1594280605.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/Spider_by_VZ/Mid_Process_File/2020-07-09-1594280605.pkl -------------------------------------------------------------------------------- /Spider_by_VZ/Mid_Process_File/2020-07-09-1594288134.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/Spider_by_VZ/Mid_Process_File/2020-07-09-1594288134.pkl -------------------------------------------------------------------------------- /Spider_by_VZ/__pycache__/Main_Methods.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/Spider_by_VZ/__pycache__/Main_Methods.cpython-36.pyc -------------------------------------------------------------------------------- /Spider_by_VZ/article_information/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/Spider_by_VZ/article_information/.DS_Store -------------------------------------------------------------------------------- /Spider_by_VZ/article_pdf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/Spider_by_VZ/article_pdf/.DS_Store -------------------------------------------------------------------------------- /assets/ReadMe-1594282295341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/assets/ReadMe-1594282295341.png -------------------------------------------------------------------------------- /assets/ReadMe-1594282533769.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/assets/ReadMe-1594282533769.png -------------------------------------------------------------------------------- /assets/ReadMe-1594282742570.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/assets/ReadMe-1594282742570.png -------------------------------------------------------------------------------- /venv/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/.DS_Store -------------------------------------------------------------------------------- /venv/.Python: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/Python -------------------------------------------------------------------------------- /venv/bin/easy_install: -------------------------------------------------------------------------------- 1 | #!/Users/tangweize/PycharmProjects/bp/venv/bin/python 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from setuptools.command.easy_install import main 8 | 9 | if __name__ == '__main__': 10 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 11 | sys.exit(main()) 12 | -------------------------------------------------------------------------------- /venv/bin/easy_install-2.7: -------------------------------------------------------------------------------- 1 | #!/Users/tangweize/PycharmProjects/bp/venv/bin/python 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from setuptools.command.easy_install import main 8 | 9 | if __name__ == '__main__': 10 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 11 | sys.exit(main()) 12 | -------------------------------------------------------------------------------- /venv/bin/pip: -------------------------------------------------------------------------------- 1 | #!/Users/tangweize/PycharmProjects/bp/venv/bin/python 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from pip._internal import main 8 | 9 | if __name__ == '__main__': 10 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 11 | sys.exit(main()) 12 | -------------------------------------------------------------------------------- /venv/bin/pip2: -------------------------------------------------------------------------------- 1 | #!/Users/tangweize/PycharmProjects/bp/venv/bin/python 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from pip._internal import main 8 | 9 | if __name__ == '__main__': 10 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 11 | sys.exit(main()) 12 | -------------------------------------------------------------------------------- /venv/bin/pip2.7: -------------------------------------------------------------------------------- 1 | #!/Users/tangweize/PycharmProjects/bp/venv/bin/python 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from pip._internal import main 8 | 9 | if __name__ == '__main__': 10 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 11 | sys.exit(main()) 12 | -------------------------------------------------------------------------------- /venv/bin/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/bin/python -------------------------------------------------------------------------------- /venv/bin/python2: -------------------------------------------------------------------------------- 1 | python -------------------------------------------------------------------------------- /venv/bin/python2.7: -------------------------------------------------------------------------------- 1 | python -------------------------------------------------------------------------------- /venv/bin/wheel: -------------------------------------------------------------------------------- 1 | #!/Users/tangweize/PycharmProjects/bp/venv/bin/python 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from wheel.cli import main 8 | 9 | if __name__ == '__main__': 10 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 11 | sys.exit(main()) 12 | -------------------------------------------------------------------------------- /venv/include/python2.7: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -------------------------------------------------------------------------------- /venv/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/.DS_Store -------------------------------------------------------------------------------- /venv/lib/python2.7/UserDict.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py -------------------------------------------------------------------------------- /venv/lib/python2.7/UserDict.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/UserDict.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/_abcoll.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_abcoll.py -------------------------------------------------------------------------------- /venv/lib/python2.7/_abcoll.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/_abcoll.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/_weakrefset.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_weakrefset.py -------------------------------------------------------------------------------- /venv/lib/python2.7/_weakrefset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/_weakrefset.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/abc.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/abc.py -------------------------------------------------------------------------------- /venv/lib/python2.7/abc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/abc.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/codecs.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/codecs.py -------------------------------------------------------------------------------- /venv/lib/python2.7/codecs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/codecs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/config: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/config -------------------------------------------------------------------------------- /venv/lib/python2.7/copy_reg.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy_reg.py -------------------------------------------------------------------------------- /venv/lib/python2.7/copy_reg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/copy_reg.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/distutils/distutils.cfg: -------------------------------------------------------------------------------- 1 | # This is a config file local to this virtualenv installation 2 | # You may include options that will be used by all distutils commands, 3 | # and by easy_install. For instance: 4 | # 5 | # [easy_install] 6 | # find_links = http://mylocalsite 7 | -------------------------------------------------------------------------------- /venv/lib/python2.7/encodings: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings -------------------------------------------------------------------------------- /venv/lib/python2.7/fnmatch.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/fnmatch.py -------------------------------------------------------------------------------- /venv/lib/python2.7/genericpath.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/genericpath.py -------------------------------------------------------------------------------- /venv/lib/python2.7/genericpath.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/genericpath.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/lib-dynload: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload -------------------------------------------------------------------------------- /venv/lib/python2.7/linecache.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/linecache.py -------------------------------------------------------------------------------- /venv/lib/python2.7/linecache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/linecache.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/locale.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py -------------------------------------------------------------------------------- /venv/lib/python2.7/no-global-site-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/no-global-site-packages.txt -------------------------------------------------------------------------------- /venv/lib/python2.7/ntpath.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ntpath.py -------------------------------------------------------------------------------- /venv/lib/python2.7/orig-prefix.txt: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7 -------------------------------------------------------------------------------- /venv/lib/python2.7/os.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py -------------------------------------------------------------------------------- /venv/lib/python2.7/os.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/os.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/posixpath.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py -------------------------------------------------------------------------------- /venv/lib/python2.7/posixpath.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/posixpath.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/re.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/easy_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/easy_install.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip-19.2.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip-19.2.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.2.3" 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/__main__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/build_env.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/build_env.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/cache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/cache.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/cli/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/cli/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/cli/autocompletion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/cli/autocompletion.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/cli/base_command.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/cli/base_command.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/cli/cmdoptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/cli/cmdoptions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/cli/main_parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/cli/main_parser.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/cli/parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/cli/parser.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/cli/status_codes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/cli/status_codes.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/check.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/check.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/completion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/completion.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/configuration.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/configuration.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/debug.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/debug.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/download.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/download.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/freeze.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/freeze.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/hash.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/hash.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/help.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/help.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/install.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/list.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/list.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/search.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/search.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/show.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/show.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/uninstall.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/uninstall.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/commands/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/commands/wheel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/configuration.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/configuration.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/distributions/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/distributions/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/distributions/base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/distributions/base.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/distributions/installed.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/distributions/installed.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/distributions/source.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/distributions/source.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/distributions/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/distributions/wheel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/download.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/download.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/exceptions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/index.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/legacy_resolve.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/legacy_resolve.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/locations.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/locations.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/models/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/models/candidate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/models/candidate.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/models/format_control.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/models/format_control.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/models/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/models/index.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/models/link.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/models/link.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/models/search_scope.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/models/search_scope.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/models/selection_prefs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/models/selection_prefs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/models/target_python.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/models/target_python.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/operations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/operations/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/operations/check.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/operations/check.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/operations/freeze.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/operations/freeze.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/operations/prepare.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/operations/prepare.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/pep425tags.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/pep425tags.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/pyproject.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/pyproject.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/req/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/req/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/req/constructors.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/req/constructors.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/req/req_file.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/req/req_file.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/req/req_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/req/req_install.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/req/req_set.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/req/req_set.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/req/req_tracker.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/req/req_tracker.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/req/req_uninstall.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/req/req_uninstall.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/appdirs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/appdirs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/deprecation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/deprecation.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/encoding.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/encoding.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/filesystem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/filesystem.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/glibc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/glibc.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/hashes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/hashes.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/logging.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/logging.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/marker_files.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/marker_files.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/misc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/misc.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/models.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/outdated.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/outdated.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/packaging.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/packaging.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/setuptools_build.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/setuptools_build.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/temp_dir.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/temp_dir.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/typing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/typing.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/ui.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/ui.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/utils/virtualenv.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/utils/virtualenv.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/vcs/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/vcs/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/vcs/bazaar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/vcs/bazaar.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/vcs/git.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/vcs/git.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/vcs/mercurial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/vcs/mercurial.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/vcs/subversion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/vcs/subversion.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/vcs/versioncontrol.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/vcs/versioncontrol.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_internal/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_internal/wheel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/appdirs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/appdirs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/_cmd.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/_cmd.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/adapter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/adapter.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/cache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/cache.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/file_cache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/file_cache.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/controller.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/controller.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/filewrapper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/filewrapper.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/heuristics.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/heuristics.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/serialize.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/serialize.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/wrapper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/wrapper.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2019.06.16" 4 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/certifi/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/certifi/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/certifi/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/certifi/__main__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/certifi/core.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/certifi/core.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/big5freq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/big5freq.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/big5prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/big5prober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/chardistribution.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/chardistribution.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/charsetgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/charsetgroupprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/charsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/charsetprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/cli/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/cli/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/cli/chardetect.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/cli/chardetect.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/codingstatemachine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/codingstatemachine.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/cp949prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/cp949prober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/enums.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/enums.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/escprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/escprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/escsm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/escsm.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/eucjpprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/eucjpprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/euckrfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/euckrfreq.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/euckrprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/euckrprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/euctwfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/euctwfreq.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/euctwprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/euctwprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/gb2312freq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/gb2312freq.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/gb2312prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/gb2312prober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/hebrewprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/hebrewprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/jisfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/jisfreq.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/jpcntx.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/jpcntx.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/langbulgarianmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/langbulgarianmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/langcyrillicmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/langcyrillicmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/langgreekmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/langgreekmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/langhebrewmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/langhebrewmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/langhungarianmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/langhungarianmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/langthaimodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/langthaimodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/langturkishmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/langturkishmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/latin1prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/latin1prober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/mbcharsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/mbcharsetprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/mbcsgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/mbcsgroupprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/mbcssm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/mbcssm.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/sbcharsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/sbcharsetprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/sbcsgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/sbcsgroupprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/sjisprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/sjisprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/universaldetector.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/universaldetector.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/utf8prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/utf8prober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/chardet/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/chardet/version.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/colorama/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/colorama/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/colorama/ansi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/colorama/ansi.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/colorama/initialise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/colorama/initialise.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/colorama/win32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/colorama/win32.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/colorama/winterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/colorama/winterm.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/misc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/misc.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/shutil.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/shutil.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/sysconfig.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/sysconfig.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/tarfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/tarfile.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/database.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/database.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/index.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/locators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/locators.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/manifest.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/manifest.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/markers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/metadata.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/metadata.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/resources.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/resources.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/scripts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/scripts.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/util.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/version.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distlib/wheel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distro.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/distro.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_ihatexml.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_ihatexml.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_inputstream.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_inputstream.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_tokenizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_tokenizer.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_trie/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_trie/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_trie/_base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_trie/_base.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_trie/datrie.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_trie/datrie.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_trie/py.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_trie/py.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/_utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/constants.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/base.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/lint.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/lint.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/optionaltags.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/optionaltags.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/sanitizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/sanitizer.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/whitespace.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/whitespace.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/html5parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/html5parser.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/serializer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/serializer.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/genshi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/genshi.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/sax.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/sax.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/base.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/dom.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/dom.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/etree.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/etree.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/base.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/dom.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/dom.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/etree.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/etree.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/genshi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/genshi.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/idna/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/idna/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/idna/codec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/idna/codec.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/idna/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/idna/compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/idna/core.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/idna/core.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/idna/idnadata.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/idna/idnadata.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/idna/intranges.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/idna/intranges.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/idna/package_data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/idna/package_data.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/idna/uts46data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/idna/uts46data.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/ipaddress.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/ipaddress.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/lockfile/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/lockfile/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/lockfile/linklockfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/lockfile/linklockfile.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/lockfile/mkdirlockfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/lockfile/mkdirlockfile.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/lockfile/pidlockfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/lockfile/pidlockfile.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/lockfile/sqlitelockfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/lockfile/sqlitelockfile.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/lockfile/symlinklockfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/lockfile/symlinklockfile.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/msgpack/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/msgpack/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 6, 1) 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/msgpack/_version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/msgpack/_version.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/msgpack/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/msgpack/exceptions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/msgpack/fallback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/msgpack/fallback.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/__about__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/packaging/__about__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/packaging/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/packaging/_compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/_structures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/packaging/_structures.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/packaging/markers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/requirements.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/packaging/requirements.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/specifiers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/packaging/specifiers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/packaging/utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/packaging/version.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pep517/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pep517/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pep517/_in_process.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pep517/_in_process.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pep517/build.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pep517/build.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pep517/check.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pep517/check.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pep517/colorlog.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pep517/colorlog.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pep517/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pep517/compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pep517/envbuild.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pep517/envbuild.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pep517/wrappers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pep517/wrappers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/py31compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/py31compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/progress/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/progress/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/progress/bar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/progress/bar.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/progress/counter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/progress/counter.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/progress/spinner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/progress/spinner.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pyparsing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pyparsing.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pytoml/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pytoml/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pytoml/core.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pytoml/core.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pytoml/parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pytoml/parser.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pytoml/test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pytoml/test.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pytoml/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pytoml/utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pytoml/writer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/pytoml/writer.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/__version__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/__version__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/_internal_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/_internal_utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/adapters.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/adapters.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/api.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/api.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/auth.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/auth.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/certs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/certs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/cookies.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/cookies.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/exceptions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/help.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/help.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/hooks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/hooks.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/models.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/sessions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/sessions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/status_codes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/status_codes.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/structures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/structures.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/requests/utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/retrying.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/retrying.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/six.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/_collections.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/_collections.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/connection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/connection.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/connectionpool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/connectionpool.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/appengine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/appengine.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/securetransport.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/securetransport.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/socks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/contrib/socks.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/exceptions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/fields.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/fields.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/filepost.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/filepost.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/backports/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/backports/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/backports/makefile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/backports/makefile.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/_mixin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/_mixin.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/abnf_regexp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/abnf_regexp.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/api.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/api.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/builder.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/builder.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/exceptions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/iri.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/iri.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/misc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/misc.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/normalizers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/normalizers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/parseresult.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/parseresult.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/uri.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/uri.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/validators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/rfc3986/validators.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/six.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/poolmanager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/poolmanager.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/request.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/response.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/connection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/connection.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/queue.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/queue.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/request.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/response.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/retry.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/retry.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/ssl_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/ssl_.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/timeout.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/timeout.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/url.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/url.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/wait.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/urllib3/util/wait.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/webencodings/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/webencodings/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/webencodings/labels.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/webencodings/labels.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/webencodings/mklabels.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/webencodings/mklabels.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/webencodings/tests.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/webencodings/tests.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/webencodings/x_user_defined.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pip/_vendor/webencodings/x_user_defined.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/appdirs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/appdirs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__about__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__about__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_structures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_structures.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/markers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/requirements.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/requirements.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/specifiers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/specifiers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/version.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/pyparsing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/pyparsing.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/_vendor/six.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/extern/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/extern/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/py31compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/pkg_resources/py31compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools-41.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools-41.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools-41.2.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- 1 | class SetuptoolsDeprecationWarning(Warning): 2 | """ 3 | Base class for warning deprecations in ``setuptools`` 4 | 5 | This class is not derived from ``DeprecationWarning``, and as such is 6 | visible by default. 7 | """ 8 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_deprecation_warning.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_deprecation_warning.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/__about__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/__about__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/_compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/_structures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/_structures.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/markers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/requirements.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/requirements.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/specifiers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/specifiers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/packaging/version.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/pyparsing.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/_vendor/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/_vendor/six.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/archive_util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/archive_util.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/build_meta.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/build_meta.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/alias.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/alias.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/bdist_egg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/bdist_egg.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/bdist_rpm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/bdist_rpm.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/bdist_wininst.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/bdist_wininst.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/build_clib.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/build_clib.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/build_ext.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/build_ext.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/build_py.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/build_py.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/develop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/develop.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/dist_info.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/dist_info.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/easy_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/easy_install.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/egg_info.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/egg_info.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/install.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/install_egg_info.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/install_egg_info.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/install_lib.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/install_lib.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/install_scripts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/install_scripts.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/launcher manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/py36compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/py36compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- 1 | from distutils import log 2 | import distutils.command.register as orig 3 | 4 | 5 | class register(orig.register): 6 | __doc__ = orig.register.__doc__ 7 | 8 | def run(self): 9 | try: 10 | # Make sure that we are using valid current name/version info 11 | self.run_command('egg_info') 12 | orig.register.run(self) 13 | finally: 14 | self.announce( 15 | "WARNING: Registering is deprecated, use twine to " 16 | "upload instead (https://pypi.org/p/twine/)", 17 | log.WARN 18 | ) 19 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/register.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/register.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/rotate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/rotate.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- 1 | from setuptools.command.setopt import edit_config, option_base 2 | 3 | 4 | class saveopts(option_base): 5 | """Save command-line options to a file""" 6 | 7 | description = "save supplied options to setup.cfg or other config file" 8 | 9 | def run(self): 10 | dist = self.distribution 11 | settings = {} 12 | 13 | for cmd in dist.command_options: 14 | 15 | if cmd == 'saveopts': 16 | continue # don't save our own options! 17 | 18 | for opt, (src, val) in dist.get_option_dict(cmd).items(): 19 | if src == "command line": 20 | settings.setdefault(cmd, {})[opt] = val 21 | 22 | edit_config(self.filename, settings, self.dry_run) 23 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/saveopts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/saveopts.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/sdist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/sdist.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/setopt.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/setopt.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/test.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/upload.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/upload.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/upload_docs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/command/upload_docs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/config.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/dep_util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/dep_util.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/depends.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/depends.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/dist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/dist.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/extension.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/extension.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/extern/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/extern/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/glibc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/glibc.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/glob.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/glob.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/launch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/launch.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/lib2to3_ex.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/lib2to3_ex.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/monkey.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/monkey.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/msvc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/msvc.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/namespaces.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/namespaces.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/package_index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/package_index.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/pep425tags.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/pep425tags.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/py27compat.py: -------------------------------------------------------------------------------- 1 | """ 2 | Compatibility Support for Python 2.7 and earlier 3 | """ 4 | 5 | import platform 6 | 7 | from setuptools.extern import six 8 | 9 | 10 | def get_all_headers(message, key): 11 | """ 12 | Given an HTTPMessage, return all headers matching a given key. 13 | """ 14 | return message.get_all(key) 15 | 16 | 17 | if six.PY2: 18 | def get_all_headers(message, key): 19 | return message.getheaders(key) 20 | 21 | 22 | linux_py2_ascii = ( 23 | platform.system() == 'Linux' and 24 | six.PY2 25 | ) 26 | 27 | rmtree_safe = str if linux_py2_ascii else lambda x: x 28 | """Workaround for http://bugs.python.org/issue24672""" 29 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/py27compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/py27compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/py31compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/py31compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/py33compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/py33compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/sandbox.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/sandbox.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-DEV-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').require(%(spec)r) 4 | __file__ = %(dev_path)r 5 | with open(__file__) as f: 6 | exec(compile(f.read(), __file__, 'exec')) 7 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/site-patch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/site-patch.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/ssl_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/ssl_support.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/unicode_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/unicode_utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | 3 | try: 4 | __version__ = pkg_resources.get_distribution('setuptools').version 5 | except Exception: 6 | __version__ = 'unknown' 7 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/version.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/wheel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/windows_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/setuptools/windows_support.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel-0.33.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel-0.33.6.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 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel-0.33.6.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | wheel = wheel.cli:main 3 | 4 | [distutils.commands] 5 | bdist_wheel = wheel.bdist_wheel:bdist_wheel 6 | 7 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel-0.33.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/__init__.py: -------------------------------------------------------------------------------- 1 | # __variables__ with double-quoted values will be available in setup.py: 2 | __version__ = "0.33.6" 3 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/__main__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Wheel command line tool (enable python -m wheel syntax) 3 | """ 4 | 5 | import sys 6 | 7 | 8 | def main(): # needed for console script 9 | if __package__ == '': 10 | # To be able to run 'python wheel-0.9.whl/wheel': 11 | import os.path 12 | path = os.path.dirname(os.path.dirname(__file__)) 13 | sys.path[0:0] = [path] 14 | import wheel.cli 15 | sys.exit(wheel.cli.main()) 16 | 17 | 18 | if __name__ == "__main__": 19 | sys.exit(main()) 20 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/__main__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/bdist_wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/bdist_wheel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/cli/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/cli/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/cli/convert.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/cli/convert.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/cli/pack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/cli/pack.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/cli/unpack.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | 3 | import os.path 4 | import sys 5 | 6 | from ..wheelfile import WheelFile 7 | 8 | 9 | def unpack(path, dest='.'): 10 | """Unpack a wheel. 11 | 12 | Wheel content will be unpacked to {dest}/{name}-{ver}, where {name} 13 | is the package name and {ver} its version. 14 | 15 | :param path: The path to the wheel. 16 | :param dest: Destination directory (default to current directory). 17 | """ 18 | with WheelFile(path) as wf: 19 | namever = wf.parsed_filename.group('namever') 20 | destination = os.path.join(dest, namever) 21 | print("Unpacking to: {}...".format(destination), end='') 22 | sys.stdout.flush() 23 | wf.extractall(destination) 24 | 25 | print('OK') 26 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/cli/unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/cli/unpack.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/metadata.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/metadata.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/pep425tags.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/pep425tags.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/pkginfo.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/pkginfo.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/util.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/wheel/wheelfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site-packages/wheel/wheelfile.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/site.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/sre.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre.py -------------------------------------------------------------------------------- /venv/lib/python2.7/sre_compile.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_compile.py -------------------------------------------------------------------------------- /venv/lib/python2.7/sre_constants.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_constants.py -------------------------------------------------------------------------------- /venv/lib/python2.7/sre_parse.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_parse.py -------------------------------------------------------------------------------- /venv/lib/python2.7/stat.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/stat.py -------------------------------------------------------------------------------- /venv/lib/python2.7/stat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/stat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/types.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/types.py -------------------------------------------------------------------------------- /venv/lib/python2.7/types.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/types.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/warnings.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/warnings.py -------------------------------------------------------------------------------- /venv/lib/python2.7/warnings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangweize/SpiderForWebOfScience/e1106f99484305a1a0f12dc9f01e4e52d43a84d4/venv/lib/python2.7/warnings.pyc -------------------------------------------------------------------------------- /venv/pip-selfcheck.json: -------------------------------------------------------------------------------- 1 | {"last_check":"2019-09-03T07:38:49Z","pypi_version":"19.2.3"} --------------------------------------------------------------------------------