├── .gitattributes ├── .gitignore ├── README.md ├── requirements.txt ├── script.py ├── twilio_accnt.py └── venv ├── .Python ├── bin ├── activate ├── activate.csh ├── activate.fish ├── activate_this.py ├── easy_install ├── easy_install-2.7 ├── pip ├── pip2 ├── pip2.7 ├── python ├── python2 └── python2.7 ├── include └── python2.7 └── lib └── 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 ├── __init__.pyc └── distutils.cfg ├── encodings ├── fnmatch.py ├── fnmatch.pyc ├── genericpath.py ├── genericpath.pyc ├── lib-dynload ├── linecache.py ├── linecache.pyc ├── locale.py ├── locale.pyc ├── no-global-site-packages.txt ├── ntpath.py ├── orig-prefix.txt ├── os.py ├── os.pyc ├── posixpath.py ├── posixpath.pyc ├── re.py ├── re.pyc ├── site-packages ├── _markerlib │ ├── __init__.py │ ├── __init__.pyc │ ├── markers.py │ └── markers.pyc ├── easy_install.py ├── easy_install.pyc ├── pip-6.1.1.dist-info │ ├── DESCRIPTION.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ ├── pbr.json │ └── top_level.txt ├── pip │ ├── __init__.py │ ├── __init__.pyc │ ├── __main__.py │ ├── __main__.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── _markerlib │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── markers.py │ │ │ └── markers.pyc │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __init__.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 │ │ ├── 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 │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── constants.py │ │ │ ├── constants.pyc │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── _base.py │ │ │ │ ├── _base.pyc │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── alphabeticalattributes.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 │ │ │ ├── ihatexml.py │ │ │ ├── ihatexml.pyc │ │ │ ├── inputstream.py │ │ │ ├── inputstream.pyc │ │ │ ├── sanitizer.py │ │ │ ├── sanitizer.pyc │ │ │ ├── serializer │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── htmlserializer.py │ │ │ │ └── htmlserializer.pyc │ │ │ ├── tokenizer.py │ │ │ ├── tokenizer.pyc │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.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 │ │ │ │ ├── genshistream.py │ │ │ │ ├── genshistream.pyc │ │ │ │ ├── lxmletree.py │ │ │ │ ├── lxmletree.pyc │ │ │ │ ├── pulldom.py │ │ │ │ └── pulldom.pyc │ │ │ ├── trie │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── _base.py │ │ │ │ ├── _base.pyc │ │ │ │ ├── datrie.py │ │ │ │ ├── datrie.pyc │ │ │ │ ├── py.py │ │ │ │ └── py.pyc │ │ │ ├── utils.py │ │ │ └── utils.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 │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __about__.pyc │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── _compat.py │ │ │ ├── _compat.pyc │ │ │ ├── _structures.py │ │ │ ├── _structures.pyc │ │ │ ├── specifiers.py │ │ │ ├── specifiers.pyc │ │ │ ├── version.py │ │ │ └── version.pyc │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── test_pkg_resources.py │ │ │ │ ├── test_pkg_resources.pyc │ │ │ │ ├── test_resources.py │ │ │ │ └── test_resources.pyc │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── bar.py │ │ │ ├── bar.pyc │ │ │ ├── counter.py │ │ │ ├── counter.pyc │ │ │ ├── helpers.py │ │ │ ├── helpers.pyc │ │ │ ├── spinner.py │ │ │ └── spinner.pyc │ │ ├── re-vendor.py │ │ ├── re-vendor.pyc │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── adapters.py │ │ │ ├── adapters.pyc │ │ │ ├── api.py │ │ │ ├── api.pyc │ │ │ ├── auth.py │ │ │ ├── auth.pyc │ │ │ ├── cacert.pem │ │ │ ├── certs.py │ │ │ ├── certs.pyc │ │ │ ├── compat.py │ │ │ ├── compat.pyc │ │ │ ├── cookies.py │ │ │ ├── cookies.pyc │ │ │ ├── exceptions.py │ │ │ ├── exceptions.pyc │ │ │ ├── hooks.py │ │ │ ├── hooks.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5freq.pyc │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── big5prober.pyc │ │ │ │ │ ├── chardetect.py │ │ │ │ │ ├── chardetect.pyc │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── chardistribution.pyc │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetgroupprober.pyc │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── charsetprober.pyc │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ ├── codingstatemachine.pyc │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compat.pyc │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── constants.pyc │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ ├── cp949prober.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 │ │ │ │ │ ├── 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 │ │ │ │ └── urllib3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── _collections.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connection.pyc │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── connectionpool.pyc │ │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── ntlmpool.pyc │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ └── pyopenssl.pyc │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── exceptions.pyc │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── fields.pyc │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── filepost.pyc │ │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ ├── ordered_dict.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 │ │ │ │ │ ├── request.py │ │ │ │ │ ├── request.pyc │ │ │ │ │ ├── response.py │ │ │ │ │ ├── response.pyc │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── retry.pyc │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── ssl_.pyc │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── timeout.pyc │ │ │ │ │ ├── url.py │ │ │ │ │ └── url.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 │ ├── basecommand.py │ ├── basecommand.pyc │ ├── baseparser.py │ ├── baseparser.pyc │ ├── cmdoptions.py │ ├── cmdoptions.pyc │ ├── commands │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── completion.py │ │ ├── completion.pyc │ │ ├── freeze.py │ │ ├── freeze.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 │ │ ├── unzip.py │ │ ├── unzip.pyc │ │ ├── wheel.py │ │ ├── wheel.pyc │ │ ├── zip.py │ │ └── zip.pyc │ ├── compat │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── dictconfig.py │ │ └── dictconfig.pyc │ ├── download.py │ ├── download.pyc │ ├── exceptions.py │ ├── exceptions.pyc │ ├── index.py │ ├── index.pyc │ ├── locations.py │ ├── locations.pyc │ ├── models │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── index.py │ │ └── index.pyc │ ├── operations │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── freeze.py │ │ └── freeze.pyc │ ├── pep425tags.py │ ├── pep425tags.pyc │ ├── req │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── req_file.py │ │ ├── req_file.pyc │ │ ├── req_install.py │ │ ├── req_install.pyc │ │ ├── req_requirement.py │ │ ├── req_requirement.pyc │ │ ├── req_set.py │ │ ├── req_set.pyc │ │ ├── req_uninstall.py │ │ └── req_uninstall.pyc │ ├── status_codes.py │ ├── status_codes.pyc │ ├── utils │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── appdirs.py │ │ ├── appdirs.pyc │ │ ├── build.py │ │ ├── build.pyc │ │ ├── deprecation.py │ │ ├── deprecation.pyc │ │ ├── filesystem.py │ │ ├── filesystem.pyc │ │ ├── logging.py │ │ ├── logging.pyc │ │ ├── outdated.py │ │ ├── outdated.pyc │ │ ├── ui.py │ │ └── ui.pyc │ ├── vcs │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── bazaar.py │ │ ├── bazaar.pyc │ │ ├── git.py │ │ ├── git.pyc │ │ ├── mercurial.py │ │ ├── mercurial.pyc │ │ ├── subversion.py │ │ └── subversion.pyc │ ├── wheel.py │ └── wheel.pyc ├── pkg_resources │ ├── __init__.py │ ├── __init__.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ └── packaging │ │ │ ├── __about__.py │ │ │ ├── __about__.pyc │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── _compat.py │ │ │ ├── _compat.pyc │ │ │ ├── _structures.py │ │ │ ├── _structures.pyc │ │ │ ├── specifiers.py │ │ │ ├── specifiers.pyc │ │ │ ├── version.py │ │ │ └── version.pyc │ └── tests │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── test_pkg_resources.py │ │ ├── test_pkg_resources.pyc │ │ ├── test_resources.py │ │ └── test_resources.pyc ├── setuptools-15.0.dist-info │ ├── DESCRIPTION.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── metadata.json │ ├── top_level.txt │ └── zip-safe └── setuptools │ ├── __init__.py │ ├── __init__.pyc │ ├── archive_util.py │ ├── archive_util.pyc │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli-arm-32.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_ext.py │ ├── build_ext.pyc │ ├── build_py.py │ ├── build_py.pyc │ ├── develop.py │ ├── develop.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 │ ├── 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_docs.py │ └── upload_docs.pyc │ ├── compat.py │ ├── compat.pyc │ ├── depends.py │ ├── depends.pyc │ ├── dist.py │ ├── dist.pyc │ ├── extension.py │ ├── extension.pyc │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui-arm-32.exe │ ├── gui.exe │ ├── lib2to3_ex.py │ ├── lib2to3_ex.pyc │ ├── msvc9_support.py │ ├── msvc9_support.pyc │ ├── package_index.py │ ├── package_index.pyc │ ├── py26compat.py │ ├── py26compat.pyc │ ├── py27compat.py │ ├── py27compat.pyc │ ├── py31compat.py │ ├── py31compat.pyc │ ├── sandbox.py │ ├── sandbox.pyc │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── site-patch.py │ ├── site-patch.pyc │ ├── ssl_support.py │ ├── ssl_support.pyc │ ├── tests │ ├── __init__.py │ ├── __init__.pyc │ ├── contexts.py │ ├── contexts.pyc │ ├── environment.py │ ├── environment.pyc │ ├── fixtures.py │ ├── fixtures.pyc │ ├── py26compat.py │ ├── py26compat.pyc │ ├── script-with-bom.py │ ├── script-with-bom.pyc │ ├── server.py │ ├── server.pyc │ ├── test_bdist_egg.py │ ├── test_bdist_egg.pyc │ ├── test_build_ext.py │ ├── test_build_ext.pyc │ ├── test_develop.py │ ├── test_develop.pyc │ ├── test_dist_info.py │ ├── test_dist_info.pyc │ ├── test_easy_install.py │ ├── test_easy_install.pyc │ ├── test_egg_info.py │ ├── test_egg_info.pyc │ ├── test_find_packages.py │ ├── test_find_packages.pyc │ ├── test_integration.py │ ├── test_integration.pyc │ ├── test_markerlib.py │ ├── test_markerlib.pyc │ ├── test_msvc9compiler.py │ ├── test_msvc9compiler.pyc │ ├── test_packageindex.py │ ├── test_packageindex.pyc │ ├── test_sandbox.py │ ├── test_sandbox.pyc │ ├── test_sdist.py │ ├── test_sdist.pyc │ ├── test_test.py │ ├── test_test.pyc │ ├── test_upload_docs.py │ ├── test_upload_docs.pyc │ ├── test_windows_wrappers.py │ ├── test_windows_wrappers.pyc │ ├── textwrap.py │ └── textwrap.pyc │ ├── unicode_utils.py │ ├── unicode_utils.pyc │ ├── utils.py │ ├── utils.pyc │ ├── version.py │ ├── version.pyc │ ├── windows_support.py │ └── windows_support.pyc ├── site.py ├── site.pyc ├── sre.py ├── sre_compile.py ├── sre_compile.pyc ├── sre_constants.py ├── sre_constants.pyc ├── sre_parse.py ├── sre_parse.pyc ├── stat.py ├── stat.pyc ├── types.py ├── types.pyc ├── warnings.py └── warnings.pyc /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # API File 2 | twilio_accnt.py 3 | 4 | # Windows image file caches 5 | Thumbs.db 6 | ehthumbs.db 7 | 8 | # Folder config file 9 | Desktop.ini 10 | 11 | # Recycle Bin used on file shares 12 | $RECYCLE.BIN/ 13 | 14 | # Windows Installer files 15 | *.cab 16 | *.msi 17 | *.msm 18 | *.msp 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Icon must end with two \r 32 | Icon 33 | 34 | 35 | # Thumbnails 36 | ._* 37 | 38 | # Files that might appear on external disk 39 | .Spotlight-V100 40 | .Trashes 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | 49 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mechanize 2 | twilio 3 | -------------------------------------------------------------------------------- /twilio_accnt.py: -------------------------------------------------------------------------------- 1 | SID = 2 | TOKEN = 3 | PHONE = 4 | -------------------------------------------------------------------------------- /venv/.Python: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/Python -------------------------------------------------------------------------------- /venv/bin/activate.csh: -------------------------------------------------------------------------------- 1 | # This file must be used with "source bin/activate.csh" *from csh*. 2 | # You cannot run it directly. 3 | # Created by Davide Di Blasi . 4 | 5 | alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate && unalias pydoc' 6 | 7 | # Unset irrelevant variables. 8 | deactivate nondestructive 9 | 10 | setenv VIRTUAL_ENV "/Users/rohan/Projects/UIUCClassChecker/venv" 11 | 12 | set _OLD_VIRTUAL_PATH="$PATH" 13 | setenv PATH "$VIRTUAL_ENV/bin:$PATH" 14 | 15 | 16 | 17 | if ("" != "") then 18 | set env_name = "" 19 | else 20 | if (`basename "$VIRTUAL_ENV"` == "__") then 21 | # special case for Aspen magic directories 22 | # see http://www.zetadev.com/software/aspen/ 23 | set env_name = `basename \`dirname "$VIRTUAL_ENV"\`` 24 | else 25 | set env_name = `basename "$VIRTUAL_ENV"` 26 | endif 27 | endif 28 | 29 | # Could be in a non-interactive environment, 30 | # in which case, $prompt is undefined and we wouldn't 31 | # care about the prompt anyway. 32 | if ( $?prompt ) then 33 | set _OLD_VIRTUAL_PROMPT="$prompt" 34 | set prompt = "[$env_name] $prompt" 35 | endif 36 | 37 | unset env_name 38 | 39 | alias pydoc python -m pydoc 40 | 41 | rehash 42 | 43 | -------------------------------------------------------------------------------- /venv/bin/activate_this.py: -------------------------------------------------------------------------------- 1 | """By using execfile(this_file, dict(__file__=this_file)) you will 2 | activate this virtualenv environment. 3 | 4 | This can be used when you must use an existing Python interpreter, not 5 | the virtualenv bin/python 6 | """ 7 | 8 | try: 9 | __file__ 10 | except NameError: 11 | raise AssertionError( 12 | "You must run this like execfile('path/to/activate_this.py', dict(__file__='path/to/activate_this.py'))") 13 | import sys 14 | import os 15 | 16 | old_os_path = os.environ.get('PATH', '') 17 | os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + os.pathsep + old_os_path 18 | base = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 19 | if sys.platform == 'win32': 20 | site_packages = os.path.join(base, 'Lib', 'site-packages') 21 | else: 22 | site_packages = os.path.join(base, 'lib', 'python%s' % sys.version[:3], 'site-packages') 23 | prev_sys_path = list(sys.path) 24 | import site 25 | site.addsitedir(site_packages) 26 | sys.real_prefix = sys.prefix 27 | sys.prefix = base 28 | # Move the added items to the front of the path: 29 | new_sys_path = [] 30 | for item in list(sys.path): 31 | if item not in prev_sys_path: 32 | new_sys_path.append(item) 33 | sys.path.remove(item) 34 | sys.path[:0] = new_sys_path 35 | -------------------------------------------------------------------------------- /venv/bin/easy_install: -------------------------------------------------------------------------------- 1 | #!/Users/rohan/Projects/UIUCClassChecker/venv/bin/python2.7 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/rohan/Projects/UIUCClassChecker/venv/bin/python2.7 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/rohan/Projects/UIUCClassChecker/venv/bin/python2.7 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from pip 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/rohan/Projects/UIUCClassChecker/venv/bin/python2.7 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from pip 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/rohan/Projects/UIUCClassChecker/venv/bin/python2.7 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from pip 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: -------------------------------------------------------------------------------- 1 | python2.7 -------------------------------------------------------------------------------- /venv/bin/python2: -------------------------------------------------------------------------------- 1 | python2.7 -------------------------------------------------------------------------------- /venv/bin/python2.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/bin/python2.7 -------------------------------------------------------------------------------- /venv/include/python2.7: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/include/python2.7 -------------------------------------------------------------------------------- /venv/lib/python2.7/UserDict.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py -------------------------------------------------------------------------------- /venv/lib/python2.7/UserDict.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/UserDict.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/_abcoll.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_abcoll.py -------------------------------------------------------------------------------- /venv/lib/python2.7/_abcoll.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/_abcoll.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/_weakrefset.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_weakrefset.py -------------------------------------------------------------------------------- /venv/lib/python2.7/_weakrefset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/_weakrefset.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/abc.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/abc.py -------------------------------------------------------------------------------- /venv/lib/python2.7/abc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/abc.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/codecs.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/codecs.py -------------------------------------------------------------------------------- /venv/lib/python2.7/codecs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/codecs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/config: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/config -------------------------------------------------------------------------------- /venv/lib/python2.7/copy_reg.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy_reg.py -------------------------------------------------------------------------------- /venv/lib/python2.7/copy_reg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/copy_reg.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/distutils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/distutils/__init__.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 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings -------------------------------------------------------------------------------- /venv/lib/python2.7/fnmatch.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/fnmatch.py -------------------------------------------------------------------------------- /venv/lib/python2.7/fnmatch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/fnmatch.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/genericpath.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/genericpath.py -------------------------------------------------------------------------------- /venv/lib/python2.7/genericpath.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/genericpath.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/lib-dynload: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload -------------------------------------------------------------------------------- /venv/lib/python2.7/linecache.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/linecache.py -------------------------------------------------------------------------------- /venv/lib/python2.7/linecache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/linecache.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/locale.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py -------------------------------------------------------------------------------- /venv/lib/python2.7/locale.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/locale.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/no-global-site-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/no-global-site-packages.txt -------------------------------------------------------------------------------- /venv/lib/python2.7/ntpath.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ntpath.py -------------------------------------------------------------------------------- /venv/lib/python2.7/orig-prefix.txt: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7 -------------------------------------------------------------------------------- /venv/lib/python2.7/os.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py -------------------------------------------------------------------------------- /venv/lib/python2.7/os.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/os.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/posixpath.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py -------------------------------------------------------------------------------- /venv/lib/python2.7/posixpath.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/posixpath.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/re.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py -------------------------------------------------------------------------------- /venv/lib/python2.7/re.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/re.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/_markerlib/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import ast 3 | from _markerlib.markers import default_environment, compile, interpret 4 | except ImportError: 5 | if 'ast' in globals(): 6 | raise 7 | def default_environment(): 8 | return {} 9 | def compile(marker): 10 | def marker_fn(environment=None, override=None): 11 | # 'empty markers are True' heuristic won't install extra deps. 12 | return not marker.strip() 13 | marker_fn.__doc__ = marker 14 | return marker_fn 15 | def interpret(marker, environment=None, override=None): 16 | return compile(marker)() 17 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/_markerlib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/_markerlib/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/_markerlib/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/_markerlib/markers.pyc -------------------------------------------------------------------------------- /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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/easy_install.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip-6.1.1.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | pip 2 | === 3 | 4 | The `PyPA recommended 5 | `_ 6 | tool for installing Python packages. 7 | 8 | * `Installation `_ 9 | * `Documentation `_ 10 | * `Changelog `_ 11 | * `Github Page `_ 12 | * `Issue Tracking `_ 13 | * `Mailing list `_ 14 | * User IRC: #pypa on Freenode. 15 | * Dev IRC: #pypa-dev on Freenode. 16 | 17 | 18 | .. image:: https://pypip.in/v/pip/badge.png 19 | :target: https://pypi.python.org/pypi/pip 20 | 21 | .. image:: https://secure.travis-ci.org/pypa/pip.png?branch=develop 22 | :target: http://travis-ci.org/pypa/pip 23 | 24 | 25 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip-6.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip-6.1.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip:main 3 | pip3 = pip:main 4 | pip3.4 = pip:main 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip-6.1.1.dist-info/metadata.json: -------------------------------------------------------------------------------- 1 | {"extensions": {"python.details": {"contacts": [{"role": "author", "email": "python-virtualenv@groups.google.com", "name": "The pip developers"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://pip.pypa.io/"}}, "python.commands": {"wrap_console": {"pip3": "pip:main", "pip3.4": "pip:main", "pip": "pip:main"}}, "python.exports": {"console_scripts": {"pip3": "pip:main", "pip3.4": "pip:main", "pip": "pip:main"}}}, "run_requires": [{"requires": ["pytest", "virtualenv (>=1.10)", "scripttest (>=1.3)", "mock"], "extra": "testing"}], "summary": "The PyPA recommended tool for installing Python packages.", "name": "pip", "test_requires": [{"requires": ["pytest", "virtualenv (>=1.10)", "scripttest (>=1.3)", "mock"]}], "generator": "bdist_wheel (0.24.0)", "extras": ["testing"], "classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Build Tools", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: Implementation :: PyPy"], "license": "MIT", "version": "6.1.1", "keywords": ["easy_install", "distutils", "setuptools", "egg", "virtualenv"], "metadata_version": "2.0"} -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip-6.1.1.dist-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"git_version": "573ddd4", "is_release": true} -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip-6.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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 | import pip # noqa 17 | 18 | if __name__ == '__main__': 19 | sys.exit(pip.main()) 20 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/__main__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/_markerlib/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import ast 3 | from pip._vendor._markerlib.markers import default_environment, compile, interpret 4 | except ImportError: 5 | if 'ast' in globals(): 6 | raise 7 | def default_environment(): 8 | return {} 9 | def compile(marker): 10 | def marker_fn(environment=None, override=None): 11 | # 'empty markers are True' heuristic won't install extra deps. 12 | return not marker.strip() 13 | marker_fn.__doc__ = marker 14 | return marker_fn 15 | def interpret(marker, environment=None, override=None): 16 | return compile(marker)() 17 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/_markerlib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/_markerlib/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/_markerlib/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/_markerlib/markers.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.11.2' 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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/adapter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/adapter.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- 1 | """ 2 | The cache object API for implementing caches. The default is a thread 3 | safe in-memory dictionary. 4 | """ 5 | from threading import Lock 6 | 7 | 8 | class BaseCache(object): 9 | 10 | def get(self, key): 11 | raise NotImplemented() 12 | 13 | def set(self, key, value): 14 | raise NotImplemented() 15 | 16 | def delete(self, key): 17 | raise NotImplemented() 18 | 19 | def close(self): 20 | pass 21 | 22 | 23 | class DictCache(BaseCache): 24 | 25 | def __init__(self, init_dict=None): 26 | self.lock = Lock() 27 | self.data = init_dict or {} 28 | 29 | def get(self, key): 30 | return self.data.get(key, None) 31 | 32 | def set(self, key, value): 33 | with self.lock: 34 | self.data.update({key: value}) 35 | 36 | def delete(self, key): 37 | with self.lock: 38 | if key in self.data: 39 | self.data.pop(key) 40 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/cache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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 textwrap import dedent 2 | 3 | try: 4 | from .file_cache import FileCache 5 | except ImportError: 6 | notice = dedent(''' 7 | NOTE: In order to use the FileCache you must have 8 | lockfile installed. You can install it via pip: 9 | pip install lockfile 10 | ''') 11 | print(notice) 12 | 13 | 14 | try: 15 | import redis 16 | from .redis_cache import RedisCache 17 | except ImportError: 18 | pass 19 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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.py: -------------------------------------------------------------------------------- 1 | from __future__ import division 2 | 3 | from datetime import datetime 4 | 5 | 6 | def total_seconds(td): 7 | """Python 2.6 compatability""" 8 | if hasattr(td, 'total_seconds'): 9 | return td.total_seconds() 10 | 11 | ms = td.microseconds 12 | secs = (td.seconds + td.days * 24 * 3600) 13 | return (ms + secs * 10**6) / 10**6 14 | 15 | 16 | class RedisCache(object): 17 | 18 | def __init__(self, conn): 19 | self.conn = conn 20 | 21 | def get(self, key): 22 | return self.conn.get(key) 23 | 24 | def set(self, key, value, expires=None): 25 | if not expires: 26 | self.conn.set(key, value) 27 | else: 28 | expires = expires - datetime.now() 29 | self.conn.setex(key, total_seconds(expires), value) 30 | 31 | def delete(self, key): 32 | self.conn.delete(key) 33 | 34 | def clear(self): 35 | """Helper for clearing all the keys in a database. Use with 36 | caution!""" 37 | for key in self.conn.keys(): 38 | self.conn.delete(key) 39 | 40 | def close(self): 41 | self.conn.disconnect() 42 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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 | from pip._vendor.requests.packages.urllib3.response import HTTPResponse 14 | from pip._vendor.requests.packages.urllib3.util import is_fp_closed 15 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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(sess, 6 | cache=None, 7 | cache_etags=True, 8 | serializer=None, 9 | heuristic=None): 10 | 11 | cache = cache or DictCache() 12 | adapter = CacheControlAdapter( 13 | cache, 14 | cache_etags=cache_etags, 15 | serializer=serializer, 16 | heuristic=heuristic, 17 | ) 18 | sess.mount('http://', adapter) 19 | sess.mount('https://', adapter) 20 | 21 | return sess 22 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/wrapper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/wrapper.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 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.3.3' 7 | 8 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/colorama/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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-2014 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.0' 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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/misc.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012 The Python Software Foundation. 4 | # See LICENSE.txt and CONTRIBUTORS.txt. 5 | # 6 | """Backports for individual classes and functions.""" 7 | 8 | import os 9 | import sys 10 | 11 | __all__ = ['cache_from_source', 'callable', 'fsencode'] 12 | 13 | 14 | try: 15 | from imp import cache_from_source 16 | except ImportError: 17 | def cache_from_source(py_file, debug=__debug__): 18 | ext = debug and 'c' or 'o' 19 | return py_file + ext 20 | 21 | 22 | try: 23 | callable = callable 24 | except NameError: 25 | from collections import Callable 26 | 27 | def callable(obj): 28 | return isinstance(obj, Callable) 29 | 30 | 31 | try: 32 | fsencode = os.fsencode 33 | except AttributeError: 34 | def fsencode(filename): 35 | if isinstance(filename, bytes): 36 | return filename 37 | elif isinstance(filename, str): 38 | return filename.encode(sys.getfilesystemencoding()) 39 | else: 40 | raise TypeError("expect bytes or str, not %s" % 41 | type(filename).__name__) 42 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/misc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/distlib/wheel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | HTML parsing library based on the WHATWG "HTML5" 3 | specification. The parser is designed to be compatible with existing 4 | HTML found in the wild and implements well-defined error recovery that 5 | is largely compatible with modern desktop web browsers. 6 | 7 | Example usage: 8 | 9 | import html5lib 10 | f = open("my_document.html") 11 | tree = html5lib.parse(f) 12 | """ 13 | 14 | from __future__ import absolute_import, division, unicode_literals 15 | 16 | from .html5parser import HTMLParser, parse, parseFragment 17 | from .treebuilders import getTreeBuilder 18 | from .treewalkers import getTreeWalker 19 | from .serializer import serialize 20 | 21 | __all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", 22 | "getTreeWalker", "serialize"] 23 | __version__ = "0.999" 24 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/__init__.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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/_base.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from . import _base 4 | 5 | try: 6 | from collections import OrderedDict 7 | except ImportError: 8 | from ordereddict import OrderedDict 9 | 10 | 11 | class Filter(_base.Filter): 12 | def __iter__(self): 13 | for token in _base.Filter.__iter__(self): 14 | if token["type"] in ("StartTag", "EmptyTag"): 15 | attrs = OrderedDict() 16 | for name, value in sorted(token["data"].items(), 17 | key=lambda x: x[0]): 18 | attrs[name] = value 19 | token["data"] = attrs 20 | yield token 21 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/optionaltags.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/sanitizer.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from . import _base 4 | from ..sanitizer import HTMLSanitizerMixin 5 | 6 | 7 | class Filter(_base.Filter, HTMLSanitizerMixin): 8 | def __iter__(self): 9 | for token in _base.Filter.__iter__(self): 10 | token = self.sanitize_token(token) 11 | if token: 12 | yield token 13 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/sanitizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/sanitizer.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/whitespace.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | import re 4 | 5 | from . import _base 6 | from ..constants import rcdataElements, spaceCharacters 7 | spaceCharacters = "".join(spaceCharacters) 8 | 9 | SPACES_REGEX = re.compile("[%s]+" % spaceCharacters) 10 | 11 | 12 | class Filter(_base.Filter): 13 | 14 | spacePreserveElements = frozenset(["pre", "textarea"] + list(rcdataElements)) 15 | 16 | def __iter__(self): 17 | preserve = 0 18 | for token in _base.Filter.__iter__(self): 19 | type = token["type"] 20 | if type == "StartTag" \ 21 | and (preserve or token["name"] in self.spacePreserveElements): 22 | preserve += 1 23 | 24 | elif type == "EndTag" and preserve: 25 | preserve -= 1 26 | 27 | elif not preserve and type == "SpaceCharacters" and token["data"]: 28 | # Test on token["data"] above to not introduce spaces where there were not 29 | token["data"] = " " 30 | 31 | elif not preserve and type == "Characters": 32 | token["data"] = collapse_spaces(token["data"]) 33 | 34 | yield token 35 | 36 | 37 | def collapse_spaces(text): 38 | return SPACES_REGEX.sub(' ', text) 39 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/whitespace.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/html5parser.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/ihatexml.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/inputstream.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/sanitizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/sanitizer.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/serializer/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .. import treewalkers 4 | 5 | from .htmlserializer import HTMLSerializer 6 | 7 | 8 | def serialize(input, tree="etree", format="html", encoding=None, 9 | **serializer_opts): 10 | # XXX: Should we cache this? 11 | walker = treewalkers.getTreeWalker(tree) 12 | if format == "html": 13 | s = HTMLSerializer(**serializer_opts) 14 | else: 15 | raise ValueError("type must be html") 16 | return s.render(walker(input), encoding) 17 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/serializer/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/serializer/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/serializer/htmlserializer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/serializer/htmlserializer.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/tokenizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/tokenizer.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/sax.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from xml.sax.xmlreader import AttributesNSImpl 4 | 5 | from ..constants import adjustForeignAttributes, unadjustForeignAttributes 6 | 7 | prefix_mapping = {} 8 | for prefix, localName, namespace in adjustForeignAttributes.values(): 9 | if prefix is not None: 10 | prefix_mapping[prefix] = namespace 11 | 12 | 13 | def to_sax(walker, handler): 14 | """Call SAX-like content handler based on treewalker walker""" 15 | handler.startDocument() 16 | for prefix, namespace in prefix_mapping.items(): 17 | handler.startPrefixMapping(prefix, namespace) 18 | 19 | for token in walker: 20 | type = token["type"] 21 | if type == "Doctype": 22 | continue 23 | elif type in ("StartTag", "EmptyTag"): 24 | attrs = AttributesNSImpl(token["data"], 25 | unadjustForeignAttributes) 26 | handler.startElementNS((token["namespace"], token["name"]), 27 | token["name"], 28 | attrs) 29 | if type == "EmptyTag": 30 | handler.endElementNS((token["namespace"], token["name"]), 31 | token["name"]) 32 | elif type == "EndTag": 33 | handler.endElementNS((token["namespace"], token["name"]), 34 | token["name"]) 35 | elif type in ("Characters", "SpaceCharacters"): 36 | handler.characters(token["data"]) 37 | elif type == "Comment": 38 | pass 39 | else: 40 | assert False, "Unknown token type" 41 | 42 | for prefix, namespace in prefix_mapping.items(): 43 | handler.endPrefixMapping(prefix) 44 | handler.endDocument() 45 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/sax.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/_base.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/dom.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from xml.dom import Node 4 | 5 | import gettext 6 | _ = gettext.gettext 7 | 8 | from . import _base 9 | 10 | 11 | class TreeWalker(_base.NonRecursiveTreeWalker): 12 | def getNodeDetails(self, node): 13 | if node.nodeType == Node.DOCUMENT_TYPE_NODE: 14 | return _base.DOCTYPE, node.name, node.publicId, node.systemId 15 | 16 | elif node.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE): 17 | return _base.TEXT, node.nodeValue 18 | 19 | elif node.nodeType == Node.ELEMENT_NODE: 20 | attrs = {} 21 | for attr in list(node.attributes.keys()): 22 | attr = node.getAttributeNode(attr) 23 | if attr.namespaceURI: 24 | attrs[(attr.namespaceURI, attr.localName)] = attr.value 25 | else: 26 | attrs[(None, attr.name)] = attr.value 27 | return (_base.ELEMENT, node.namespaceURI, node.nodeName, 28 | attrs, node.hasChildNodes()) 29 | 30 | elif node.nodeType == Node.COMMENT_NODE: 31 | return _base.COMMENT, node.nodeValue 32 | 33 | elif node.nodeType in (Node.DOCUMENT_NODE, Node.DOCUMENT_FRAGMENT_NODE): 34 | return (_base.DOCUMENT,) 35 | 36 | else: 37 | return _base.UNKNOWN, node.nodeType 38 | 39 | def getFirstChild(self, node): 40 | return node.firstChild 41 | 42 | def getNextSibling(self, node): 43 | return node.nextSibling 44 | 45 | def getParentNode(self, node): 46 | return node.parentNode 47 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/dom.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/etree.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/genshistream.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/genshistream.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/lxmletree.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/lxmletree.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/pulldom.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/pulldom.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 | try: 8 | from .datrie import Trie as DATrie 9 | except ImportError: 10 | pass 11 | else: 12 | Trie = DATrie 13 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/_base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from collections import Mapping 4 | 5 | 6 | class Trie(Mapping): 7 | """Abstract base class for tries""" 8 | 9 | def keys(self, prefix=None): 10 | keys = super().keys() 11 | 12 | if prefix is None: 13 | return set(keys) 14 | 15 | # Python 2.6: no set comprehensions 16 | return set([x for x in keys if x.startswith(prefix)]) 17 | 18 | def has_keys_with_prefix(self, prefix): 19 | for key in self.keys(): 20 | if key.startswith(prefix): 21 | return True 22 | 23 | return False 24 | 25 | def longest_prefix(self, prefix): 26 | if prefix in self: 27 | return prefix 28 | 29 | for i in range(1, len(prefix) + 1): 30 | if prefix[:-i] in self: 31 | return prefix[:-i] 32 | 33 | raise KeyError(prefix) 34 | 35 | def longest_prefix_item(self, prefix): 36 | lprefix = self.longest_prefix(prefix) 37 | return (lprefix, self[lprefix]) 38 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/_base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/_base.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/datrie.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from datrie import Trie as DATrie 4 | from pip._vendor.six import text_type 5 | 6 | from ._base import Trie as ABCTrie 7 | 8 | 9 | class Trie(ABCTrie): 10 | def __init__(self, data): 11 | chars = set() 12 | for key in data.keys(): 13 | if not isinstance(key, text_type): 14 | raise TypeError("All keys must be strings") 15 | for char in key: 16 | chars.add(char) 17 | 18 | self._data = DATrie("".join(chars)) 19 | for key, value in data.items(): 20 | self._data[key] = value 21 | 22 | def __contains__(self, key): 23 | return key in self._data 24 | 25 | def __len__(self): 26 | return len(self._data) 27 | 28 | def __iter__(self): 29 | raise NotImplementedError() 30 | 31 | def __getitem__(self, key): 32 | return self._data[key] 33 | 34 | def keys(self, prefix=None): 35 | return self._data.keys(prefix) 36 | 37 | def has_keys_with_prefix(self, prefix): 38 | return self._data.has_keys_with_prefix(prefix) 39 | 40 | def longest_prefix(self, prefix): 41 | return self._data.longest_prefix(prefix) 42 | 43 | def longest_prefix_item(self, prefix): 44 | return self._data.longest_prefix_item(prefix) 45 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/datrie.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/ipaddress.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/lockfile/symlinklockfile.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Donald Stufft 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | from __future__ import absolute_import, division, print_function 15 | 16 | __all__ = [ 17 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 18 | "__email__", "__license__", "__copyright__", 19 | ] 20 | 21 | __title__ = "packaging" 22 | __summary__ = "Core utilities for Python packages" 23 | __uri__ = "https://github.com/pypa/packaging" 24 | 25 | __version__ = "15.0" 26 | 27 | __author__ = "Donald Stufft" 28 | __email__ = "donald@stufft.io" 29 | 30 | __license__ = "Apache License, Version 2.0" 31 | __copyright__ = "Copyright 2014 %s" % __author__ 32 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/__about__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/packaging/__about__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Donald Stufft 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | from __future__ import absolute_import, division, print_function 15 | 16 | from .__about__ import ( 17 | __author__, __copyright__, __email__, __license__, __summary__, __title__, 18 | __uri__, __version__ 19 | ) 20 | 21 | __all__ = [ 22 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 23 | "__email__", "__license__", "__copyright__", 24 | ] 25 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/packaging/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Donald Stufft 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | from __future__ import absolute_import, division, print_function 15 | 16 | import sys 17 | 18 | 19 | PY2 = sys.version_info[0] == 2 20 | PY3 = sys.version_info[0] == 3 21 | 22 | # flake8: noqa 23 | 24 | if PY3: 25 | string_types = str, 26 | else: 27 | string_types = basestring, 28 | 29 | 30 | def with_metaclass(meta, *bases): 31 | """ 32 | Create a base class with a metaclass. 33 | """ 34 | # This requires a bit of explanation: the basic idea is to make a dummy 35 | # metaclass for one level of class instantiation that replaces itself with 36 | # the actual metaclass. 37 | class metaclass(meta): 38 | def __new__(cls, name, this_bases, d): 39 | return meta(name, bases, d) 40 | return type.__new__(metaclass, 'temporary_class', (), {}) 41 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/packaging/_structures.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/specifiers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/packaging/specifiers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/packaging/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/packaging/version.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/tests/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/tests/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/tests/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/tests/test_pkg_resources.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/tests/test_pkg_resources.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/tests/test_resources.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/pkg_resources/tests/test_resources.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/progress/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/progress/bar.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | # Copyright (c) 2012 Giorgos Verigakis 4 | # 5 | # Permission to use, copy, modify, and distribute this software for any 6 | # purpose with or without fee is hereby granted, provided that the above 7 | # copyright notice and this permission notice appear in all copies. 8 | # 9 | # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | 17 | from __future__ import unicode_literals 18 | 19 | from . import Infinite, Progress 20 | from .helpers import WriteMixin 21 | 22 | 23 | class Counter(WriteMixin, Infinite): 24 | message = '' 25 | hide_cursor = True 26 | 27 | def update(self): 28 | self.write(str(self.index)) 29 | 30 | 31 | class Countdown(WriteMixin, Progress): 32 | hide_cursor = True 33 | 34 | def update(self): 35 | self.write(str(self.remaining)) 36 | 37 | 38 | class Stack(WriteMixin, Progress): 39 | phases = (' ', '▁', '▂', '▃', '▄', '▅', '▆', '▇', '█') 40 | hide_cursor = True 41 | 42 | def update(self): 43 | nphases = len(self.phases) 44 | i = min(nphases - 1, int(self.progress * nphases)) 45 | self.write(self.phases[i]) 46 | 47 | 48 | class Pie(Stack): 49 | phases = ('○', '◔', '◑', '◕', '●') 50 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/progress/counter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/progress/counter.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/progress/helpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/progress/helpers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | # Copyright (c) 2012 Giorgos Verigakis 4 | # 5 | # Permission to use, copy, modify, and distribute this software for any 6 | # purpose with or without fee is hereby granted, provided that the above 7 | # copyright notice and this permission notice appear in all copies. 8 | # 9 | # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | 17 | from __future__ import unicode_literals 18 | 19 | from . import Infinite 20 | from .helpers import WriteMixin 21 | 22 | 23 | class Spinner(WriteMixin, Infinite): 24 | message = '' 25 | phases = ('-', '\\', '|', '/') 26 | hide_cursor = True 27 | 28 | def update(self): 29 | i = self.index % len(self.phases) 30 | self.write(self.phases[i]) 31 | 32 | 33 | class PieSpinner(Spinner): 34 | phases = ['◷', '◶', '◵', '◴'] 35 | 36 | 37 | class MoonSpinner(Spinner): 38 | phases = ['◑', '◒', '◐', '◓'] 39 | 40 | 41 | class LineSpinner(Spinner): 42 | phases = ['⎺', '⎻', '⎼', '⎽', '⎼', '⎻'] 43 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/progress/spinner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/progress/spinner.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/re-vendor.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | import pip 4 | import glob 5 | import shutil 6 | 7 | here = os.path.abspath(os.path.dirname(__file__)) 8 | 9 | def usage(): 10 | print("Usage: re-vendor.py [clean|vendor]") 11 | sys.exit(1) 12 | 13 | def clean(): 14 | for fn in os.listdir(here): 15 | dirname = os.path.join(here, fn) 16 | if os.path.isdir(dirname): 17 | shutil.rmtree(dirname) 18 | # six is a single file, not a package 19 | os.unlink(os.path.join(here, 'six.py')) 20 | 21 | def vendor(): 22 | pip.main(['install', '-t', here, '-r', 'vendor.txt']) 23 | for dirname in glob.glob('*.egg-info'): 24 | shutil.rmtree(dirname) 25 | 26 | if __name__ == '__main__': 27 | if len(sys.argv) != 2: 28 | usage() 29 | if sys.argv[1] == 'clean': 30 | clean() 31 | elif sys.argv[1] == 'vendor': 32 | vendor() 33 | else: 34 | usage() 35 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/re-vendor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/re-vendor.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/adapters.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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 | certs.py 6 | ~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. 9 | 10 | If you are packaging Requests, e.g., for a Linux distribution or a managed 11 | environment, you can change the definition of where() to return a separately 12 | packaged CA bundle. 13 | """ 14 | import os.path 15 | 16 | try: 17 | from certifi import where 18 | except ImportError: 19 | def where(): 20 | """Return the preferred certificate bundle.""" 21 | # vendored bundle inside Requests 22 | return os.path.join(os.path.dirname(__file__), 'cacert.pem') 23 | 24 | if __name__ == '__main__': 25 | print(where()) 26 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/certs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/certs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | pythoncompat 5 | """ 6 | 7 | from .packages import chardet 8 | 9 | import sys 10 | 11 | # ------- 12 | # Pythons 13 | # ------- 14 | 15 | # Syntax sugar. 16 | _ver = sys.version_info 17 | 18 | #: Python 2.x? 19 | is_py2 = (_ver[0] == 2) 20 | 21 | #: Python 3.x? 22 | is_py3 = (_ver[0] == 3) 23 | 24 | try: 25 | import simplejson as json 26 | except (ImportError, SyntaxError): 27 | # simplejson does not support Python 3.2, it throws a SyntaxError 28 | # because of u'...' Unicode literals. 29 | import json 30 | 31 | # --------- 32 | # Specifics 33 | # --------- 34 | 35 | if is_py2: 36 | from urllib import quote, unquote, quote_plus, unquote_plus, urlencode, getproxies, proxy_bypass 37 | from urlparse import urlparse, urlunparse, urljoin, urlsplit, urldefrag 38 | from urllib2 import parse_http_list 39 | import cookielib 40 | from Cookie import Morsel 41 | from StringIO import StringIO 42 | from .packages.urllib3.packages.ordered_dict import OrderedDict 43 | 44 | builtin_str = str 45 | bytes = str 46 | str = unicode 47 | basestring = basestring 48 | numeric_types = (int, long, float) 49 | 50 | elif is_py3: 51 | from urllib.parse import urlparse, urlunparse, urljoin, urlsplit, urlencode, quote, unquote, quote_plus, unquote_plus, urldefrag 52 | from urllib.request import parse_http_list, getproxies, proxy_bypass 53 | from http import cookiejar as cookielib 54 | from http.cookies import Morsel 55 | from io import StringIO 56 | from collections import OrderedDict 57 | 58 | builtin_str = str 59 | str = str 60 | bytes = bytes 61 | basestring = (str, bytes) 62 | numeric_types = (int, float) 63 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/exceptions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | requests.hooks 5 | ~~~~~~~~~~~~~~ 6 | 7 | This module provides the capabilities for the Requests hooks system. 8 | 9 | Available hooks: 10 | 11 | ``response``: 12 | The response generated from a Request. 13 | 14 | """ 15 | 16 | 17 | HOOKS = ['response'] 18 | 19 | 20 | def default_hooks(): 21 | hooks = {} 22 | for event in HOOKS: 23 | hooks[event] = [] 24 | return hooks 25 | 26 | # TODO: response is the only one 27 | 28 | 29 | def dispatch_hook(key, hooks, hook_data, **kwargs): 30 | """Dispatches a hook dictionary on a given piece of data.""" 31 | 32 | hooks = hooks or dict() 33 | 34 | if key in hooks: 35 | hooks = hooks.get(key) 36 | 37 | if hasattr(hooks, '__call__'): 38 | hooks = [hooks] 39 | 40 | for hook in hooks: 41 | _hook_data = hook(hook_data, **kwargs) 42 | if _hook_data is not None: 43 | hook_data = _hook_data 44 | 45 | return hook_data 46 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/hooks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/models.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/__init__.py: -------------------------------------------------------------------------------- 1 | ######################## BEGIN LICENSE BLOCK ######################## 2 | # This library is free software; you can redistribute it and/or 3 | # modify it under the terms of the GNU Lesser General Public 4 | # License as published by the Free Software Foundation; either 5 | # version 2.1 of the License, or (at your option) any later version. 6 | # 7 | # This library is distributed in the hope that it will be useful, 8 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 10 | # Lesser General Public License for more details. 11 | # 12 | # You should have received a copy of the GNU Lesser General Public 13 | # License along with this library; if not, write to the Free Software 14 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 15 | # 02110-1301 USA 16 | ######################### END LICENSE BLOCK ######################### 17 | 18 | __version__ = "2.3.0" 19 | from sys import version_info 20 | 21 | 22 | def detect(aBuf): 23 | if ((version_info < (3, 0) and isinstance(aBuf, unicode)) or 24 | (version_info >= (3, 0) and not isinstance(aBuf, bytes))): 25 | raise ValueError('Expected a bytes object, not a unicode object') 26 | 27 | from . import universaldetector 28 | u = universaldetector.UniversalDetector() 29 | u.reset() 30 | u.feed(aBuf) 31 | u.close() 32 | return u.result 33 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/big5freq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/big5freq.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/big5prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/big5prober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/chardetect.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/chardetect.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/chardistribution.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/chardistribution.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/charsetgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/charsetgroupprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/charsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/charsetprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/codingstatemachine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/codingstatemachine.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/compat.py: -------------------------------------------------------------------------------- 1 | ######################## BEGIN LICENSE BLOCK ######################## 2 | # Contributor(s): 3 | # Ian Cordasco - port to Python 4 | # 5 | # This library is free software; you can redistribute it and/or 6 | # modify it under the terms of the GNU Lesser General Public 7 | # License as published by the Free Software Foundation; either 8 | # version 2.1 of the License, or (at your option) any later version. 9 | # 10 | # This library is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 | # Lesser General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU Lesser General Public 16 | # License along with this library; if not, write to the Free Software 17 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 18 | # 02110-1301 USA 19 | ######################### END LICENSE BLOCK ######################### 20 | 21 | import sys 22 | 23 | 24 | if sys.version_info < (3, 0): 25 | base_str = (str, unicode) 26 | else: 27 | base_str = (bytes, str) 28 | 29 | 30 | def wrap_ord(a): 31 | if sys.version_info < (3, 0) and isinstance(a, base_str): 32 | return ord(a) 33 | else: 34 | return a 35 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/constants.py: -------------------------------------------------------------------------------- 1 | ######################## BEGIN LICENSE BLOCK ######################## 2 | # The Original Code is Mozilla Universal charset detector code. 3 | # 4 | # The Initial Developer of the Original Code is 5 | # Netscape Communications Corporation. 6 | # Portions created by the Initial Developer are Copyright (C) 2001 7 | # the Initial Developer. All Rights Reserved. 8 | # 9 | # Contributor(s): 10 | # Mark Pilgrim - port to Python 11 | # Shy Shalom - original C code 12 | # 13 | # This library is free software; you can redistribute it and/or 14 | # modify it under the terms of the GNU Lesser General Public 15 | # License as published by the Free Software Foundation; either 16 | # version 2.1 of the License, or (at your option) any later version. 17 | # 18 | # This library is distributed in the hope that it will be useful, 19 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 20 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21 | # Lesser General Public License for more details. 22 | # 23 | # You should have received a copy of the GNU Lesser General Public 24 | # License along with this library; if not, write to the Free Software 25 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 26 | # 02110-1301 USA 27 | ######################### END LICENSE BLOCK ######################### 28 | 29 | _debug = 0 30 | 31 | eDetecting = 0 32 | eFoundIt = 1 33 | eNotMe = 2 34 | 35 | eStart = 0 36 | eError = 1 37 | eItsMe = 2 38 | 39 | SHORTCUT_THRESHOLD = 0.95 40 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/constants.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/cp949prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/cp949prober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/escprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/escprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/escsm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/escsm.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/eucjpprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/eucjpprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euckrfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euckrfreq.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euckrprober.py: -------------------------------------------------------------------------------- 1 | ######################## BEGIN LICENSE BLOCK ######################## 2 | # The Original Code is mozilla.org code. 3 | # 4 | # The Initial Developer of the Original Code is 5 | # Netscape Communications Corporation. 6 | # Portions created by the Initial Developer are Copyright (C) 1998 7 | # the Initial Developer. All Rights Reserved. 8 | # 9 | # Contributor(s): 10 | # Mark Pilgrim - port to Python 11 | # 12 | # This library is free software; you can redistribute it and/or 13 | # modify it under the terms of the GNU Lesser General Public 14 | # License as published by the Free Software Foundation; either 15 | # version 2.1 of the License, or (at your option) any later version. 16 | # 17 | # This library is distributed in the hope that it will be useful, 18 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 | # Lesser General Public License for more details. 21 | # 22 | # You should have received a copy of the GNU Lesser General Public 23 | # License along with this library; if not, write to the Free Software 24 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 25 | # 02110-1301 USA 26 | ######################### END LICENSE BLOCK ######################### 27 | 28 | from .mbcharsetprober import MultiByteCharSetProber 29 | from .codingstatemachine import CodingStateMachine 30 | from .chardistribution import EUCKRDistributionAnalysis 31 | from .mbcssm import EUCKRSMModel 32 | 33 | 34 | class EUCKRProber(MultiByteCharSetProber): 35 | def __init__(self): 36 | MultiByteCharSetProber.__init__(self) 37 | self._mCodingSM = CodingStateMachine(EUCKRSMModel) 38 | self._mDistributionAnalyzer = EUCKRDistributionAnalysis() 39 | self.reset() 40 | 41 | def get_charset_name(self): 42 | return "EUC-KR" 43 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euckrprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euckrprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euctwfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euctwfreq.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euctwprober.py: -------------------------------------------------------------------------------- 1 | ######################## BEGIN LICENSE BLOCK ######################## 2 | # The Original Code is mozilla.org code. 3 | # 4 | # The Initial Developer of the Original Code is 5 | # Netscape Communications Corporation. 6 | # Portions created by the Initial Developer are Copyright (C) 1998 7 | # the Initial Developer. All Rights Reserved. 8 | # 9 | # Contributor(s): 10 | # Mark Pilgrim - port to Python 11 | # 12 | # This library is free software; you can redistribute it and/or 13 | # modify it under the terms of the GNU Lesser General Public 14 | # License as published by the Free Software Foundation; either 15 | # version 2.1 of the License, or (at your option) any later version. 16 | # 17 | # This library is distributed in the hope that it will be useful, 18 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 | # Lesser General Public License for more details. 21 | # 22 | # You should have received a copy of the GNU Lesser General Public 23 | # License along with this library; if not, write to the Free Software 24 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 25 | # 02110-1301 USA 26 | ######################### END LICENSE BLOCK ######################### 27 | 28 | from .mbcharsetprober import MultiByteCharSetProber 29 | from .codingstatemachine import CodingStateMachine 30 | from .chardistribution import EUCTWDistributionAnalysis 31 | from .mbcssm import EUCTWSMModel 32 | 33 | class EUCTWProber(MultiByteCharSetProber): 34 | def __init__(self): 35 | MultiByteCharSetProber.__init__(self) 36 | self._mCodingSM = CodingStateMachine(EUCTWSMModel) 37 | self._mDistributionAnalyzer = EUCTWDistributionAnalysis() 38 | self.reset() 39 | 40 | def get_charset_name(self): 41 | return "EUC-TW" 42 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euctwprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euctwprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/gb2312freq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/gb2312freq.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/gb2312prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/gb2312prober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/hebrewprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/hebrewprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/jisfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/jisfreq.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/jpcntx.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/jpcntx.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langbulgarianmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langbulgarianmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langcyrillicmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langcyrillicmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langgreekmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langgreekmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langhebrewmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langhebrewmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langhungarianmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langhungarianmodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langthaimodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langthaimodel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/latin1prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/latin1prober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcharsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcharsetprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcsgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcsgroupprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcssm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcssm.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sbcharsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sbcharsetprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sbcsgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sbcsgroupprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sjisprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sjisprober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/universaldetector.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/universaldetector.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/utf8prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/utf8prober.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/_collections.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/_collections.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/connection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/connection.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/connectionpool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/connectionpool.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/exceptions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/fields.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/fields.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/filepost.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/filepost.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/six.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | # Python 3.2+ 3 | from ssl import CertificateError, match_hostname 4 | except ImportError: 5 | try: 6 | # Backport of the function from a pypi module 7 | from backports.ssl_match_hostname import CertificateError, match_hostname 8 | except ImportError: 9 | # Our vendored copy 10 | from ._implementation import CertificateError, match_hostname 11 | 12 | # Not needed, but documenting what we provide. 13 | __all__ = ('CertificateError', 'match_hostname') 14 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/poolmanager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/poolmanager.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/request.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- 1 | # For backwards compatibility, provide imports that used to be here. 2 | from .connection import is_connection_dropped 3 | from .request import make_headers 4 | from .response import is_fp_closed 5 | from .ssl_ import ( 6 | SSLContext, 7 | HAS_SNI, 8 | assert_fingerprint, 9 | resolve_cert_reqs, 10 | resolve_ssl_version, 11 | ssl_wrap_socket, 12 | ) 13 | from .timeout import ( 14 | current_time, 15 | Timeout, 16 | ) 17 | 18 | from .retry import Retry 19 | from .url import ( 20 | get_host, 21 | parse_url, 22 | split_first, 23 | Url, 24 | ) 25 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/connection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/connection.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/request.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/response.py: -------------------------------------------------------------------------------- 1 | def is_fp_closed(obj): 2 | """ 3 | Checks whether a given file-like object is closed. 4 | 5 | :param obj: 6 | The file-like object to check. 7 | """ 8 | 9 | try: 10 | # Check via the official file-like-object way. 11 | return obj.closed 12 | except AttributeError: 13 | pass 14 | 15 | try: 16 | # Check if the object is a container for another file-like object that 17 | # gets released on exhaustion (e.g. HTTPResponse). 18 | return obj.fp is None 19 | except AttributeError: 20 | pass 21 | 22 | raise ValueError("Unable to determine whether fp is closed.") 23 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/response.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/retry.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/retry.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/timeout.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/timeout.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/url.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/url.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/requests/sessions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/retrying.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/_vendor/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/_vendor/six.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/basecommand.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/basecommand.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/baseparser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/baseparser.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/cmdoptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/cmdoptions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/completion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/completion.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/freeze.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/freeze.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/help.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from pip.basecommand import Command, SUCCESS 4 | from pip.exceptions import CommandError 5 | 6 | 7 | class HelpCommand(Command): 8 | """Show help for commands""" 9 | name = 'help' 10 | usage = """ 11 | %prog """ 12 | summary = 'Show help for commands.' 13 | 14 | def run(self, options, args): 15 | from pip.commands import commands_dict, get_similar_commands 16 | 17 | try: 18 | # 'pip help' with no args is handled by pip.__init__.parseopt() 19 | cmd_name = args[0] # the command we need help for 20 | except IndexError: 21 | return SUCCESS 22 | 23 | if cmd_name not in commands_dict: 24 | guess = get_similar_commands(cmd_name) 25 | 26 | msg = ['unknown command "%s"' % cmd_name] 27 | if guess: 28 | msg.append('maybe you meant "%s"' % guess) 29 | 30 | raise CommandError(' - '.join(msg)) 31 | 32 | command = commands_dict[cmd_name]() 33 | command.parser.print_help() 34 | 35 | return SUCCESS 36 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/help.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/help.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/install.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/list.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/list.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/search.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/search.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/show.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/show.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/uninstall.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/uninstall.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/unzip.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from pip.commands.zip import ZipCommand 4 | 5 | 6 | class UnzipCommand(ZipCommand): 7 | """Unzip individual packages.""" 8 | name = 'unzip' 9 | summary = 'DEPRECATED. Unzip individual packages.' 10 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/unzip.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/unzip.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/wheel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/commands/zip.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/commands/zip.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/compat/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/compat/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/compat/dictconfig.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/compat/dictconfig.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/download.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/download.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/exceptions.py: -------------------------------------------------------------------------------- 1 | """Exceptions used throughout package""" 2 | from __future__ import absolute_import 3 | 4 | 5 | class PipError(Exception): 6 | """Base pip exception""" 7 | 8 | 9 | class InstallationError(PipError): 10 | """General exception during installation""" 11 | 12 | 13 | class UninstallationError(PipError): 14 | """General exception during uninstallation""" 15 | 16 | 17 | class DistributionNotFound(InstallationError): 18 | """Raised when a distribution cannot be found to satisfy a requirement""" 19 | 20 | 21 | class BestVersionAlreadyInstalled(PipError): 22 | """Raised when the most up-to-date version of a package is already 23 | installed. """ 24 | 25 | 26 | class BadCommand(PipError): 27 | """Raised when virtualenv or a command is not found""" 28 | 29 | 30 | class CommandError(PipError): 31 | """Raised when there is an error in command-line arguments""" 32 | 33 | 34 | class PreviousBuildDirError(PipError): 35 | """Raised when there's a previous conflicting build directory""" 36 | 37 | 38 | class HashMismatch(InstallationError): 39 | """Distribution file hash values don't match.""" 40 | 41 | 42 | class InvalidWheelFilename(InstallationError): 43 | """Invalid wheel filename.""" 44 | 45 | 46 | class UnsupportedWheel(InstallationError): 47 | """Unsupported wheel.""" 48 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/exceptions.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/index.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/locations.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/locations.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/models/__init__.py: -------------------------------------------------------------------------------- 1 | from pip.models.index import Index, PyPI 2 | 3 | 4 | __all__ = ["Index", "PyPI"] 5 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/models/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/models/index.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.six.moves.urllib import parse as urllib_parse 2 | 3 | 4 | class Index(object): 5 | def __init__(self, url): 6 | self.url = url 7 | self.netloc = urllib_parse.urlsplit(url).netloc 8 | self.simple_url = self.url_to_path('simple') 9 | self.pypi_url = self.url_to_path('pypi') 10 | self.pip_json_url = self.url_to_path('pypi/pip/json') 11 | 12 | def url_to_path(self, path): 13 | return urllib_parse.urljoin(self.url, path) 14 | 15 | 16 | PyPI = Index('https://pypi.python.org/') 17 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/models/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/models/index.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/operations/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/operations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/operations/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/operations/freeze.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/operations/freeze.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/pep425tags.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/pep425tags.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/req/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from .req_install import InstallRequirement 4 | from .req_set import RequirementSet, Requirements 5 | from .req_file import parse_requirements 6 | 7 | __all__ = [ 8 | RequirementSet, Requirements, InstallRequirement, parse_requirements, 9 | ] 10 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/req/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/req/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/req/req_file.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/req/req_file.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/req/req_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/req/req_install.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/req/req_requirement.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.packaging.version import parse as parse_version 2 | 3 | 4 | class InstallationCandidate(object): 5 | 6 | def __init__(self, project, version, location): 7 | self.project = project 8 | self.version = parse_version(version) 9 | self.location = location 10 | self._key = (self.project, self.version, self.location) 11 | 12 | def __repr__(self): 13 | return "".format( 14 | self.project, self.version, self.location, 15 | ) 16 | 17 | def __hash__(self): 18 | return hash(self._key) 19 | 20 | def __lt__(self, other): 21 | 22 | return self._compare(other, lambda s, o: s < o) 23 | 24 | def __le__(self, other): 25 | return self._compare(other, lambda s, o: s <= o) 26 | 27 | def __eq__(self, other): 28 | return self._compare(other, lambda s, o: s == o) 29 | 30 | def __ge__(self, other): 31 | return self._compare(other, lambda s, o: s >= o) 32 | 33 | def __gt__(self, other): 34 | return self._compare(other, lambda s, o: s > o) 35 | 36 | def __ne__(self, other): 37 | return self._compare(other, lambda s, o: s != o) 38 | 39 | def _compare(self, other, method): 40 | if not isinstance(other, InstallationCandidate): 41 | return NotImplemented 42 | 43 | return method(self._key, other._key) 44 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/req/req_requirement.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/req/req_requirement.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/req/req_set.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/req/req_set.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/req/req_uninstall.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/req/req_uninstall.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/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/status_codes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/status_codes.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/utils/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/utils/appdirs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/utils/appdirs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/utils/build.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import os.path 4 | import tempfile 5 | 6 | from pip.utils import rmtree 7 | 8 | 9 | class BuildDirectory(object): 10 | 11 | def __init__(self, name=None, delete=None): 12 | # If we were not given an explicit directory, and we were not given an 13 | # explicit delete option, then we'll default to deleting. 14 | if name is None and delete is None: 15 | delete = True 16 | 17 | if name is None: 18 | # We realpath here because some systems have their default tmpdir 19 | # symlinked to another directory. This tends to confuse build 20 | # scripts, so we canonicalize the path by traversing potential 21 | # symlinks here. 22 | name = os.path.realpath(tempfile.mkdtemp(prefix="pip-build-")) 23 | # If we were not given an explicit directory, and we were not given 24 | # an explicit delete option, then we'll default to deleting. 25 | if delete is None: 26 | delete = True 27 | 28 | self.name = name 29 | self.delete = delete 30 | 31 | def __repr__(self): 32 | return "<{} {!r}>".format(self.__class__.__name__, self.name) 33 | 34 | def __enter__(self): 35 | return self.name 36 | 37 | def __exit__(self, exc, value, tb): 38 | self.cleanup() 39 | 40 | def cleanup(self): 41 | if self.delete: 42 | rmtree(self.name) 43 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/utils/build.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/utils/build.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/utils/deprecation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/utils/deprecation.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/utils/filesystem.py: -------------------------------------------------------------------------------- 1 | import os 2 | import os.path 3 | 4 | from pip.compat import get_path_uid 5 | 6 | 7 | def check_path_owner(path): 8 | # If we don't have a way to check the effective uid of this process, then 9 | # we'll just assume that we own the directory. 10 | if not hasattr(os, "geteuid"): 11 | return True 12 | 13 | previous = None 14 | while path != previous: 15 | if os.path.lexists(path): 16 | # Check if path is writable by current user. 17 | if os.geteuid() == 0: 18 | # Special handling for root user in order to handle properly 19 | # cases where users use sudo without -H flag. 20 | try: 21 | path_uid = get_path_uid(path) 22 | except OSError: 23 | return False 24 | return path_uid == 0 25 | else: 26 | return os.access(path, os.W_OK) 27 | else: 28 | previous, path = path, os.path.dirname(path) 29 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/utils/filesystem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/utils/filesystem.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/utils/logging.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/utils/logging.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/utils/outdated.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/utils/outdated.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/utils/ui.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/utils/ui.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/vcs/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/vcs/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/vcs/bazaar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/vcs/bazaar.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/vcs/git.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/vcs/git.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/vcs/mercurial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/vcs/mercurial.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/vcs/subversion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/vcs/subversion.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pip/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pip/wheel.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Donald Stufft 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | from __future__ import absolute_import, division, print_function 15 | 16 | __all__ = [ 17 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 18 | "__email__", "__license__", "__copyright__", 19 | ] 20 | 21 | __title__ = "packaging" 22 | __summary__ = "Core utilities for Python packages" 23 | __uri__ = "https://github.com/pypa/packaging" 24 | 25 | __version__ = "15.0" 26 | 27 | __author__ = "Donald Stufft" 28 | __email__ = "donald@stufft.io" 29 | 30 | __license__ = "Apache License, Version 2.0" 31 | __copyright__ = "Copyright 2014 %s" % __author__ 32 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__about__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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 | # Copyright 2014 Donald Stufft 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | from __future__ import absolute_import, division, print_function 15 | 16 | from .__about__ import ( 17 | __author__, __copyright__, __email__, __license__, __summary__, __title__, 18 | __uri__, __version__ 19 | ) 20 | 21 | __all__ = [ 22 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 23 | "__email__", "__license__", "__copyright__", 24 | ] 25 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Donald Stufft 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | from __future__ import absolute_import, division, print_function 15 | 16 | import sys 17 | 18 | 19 | PY2 = sys.version_info[0] == 2 20 | PY3 = sys.version_info[0] == 3 21 | 22 | # flake8: noqa 23 | 24 | if PY3: 25 | string_types = str, 26 | else: 27 | string_types = basestring, 28 | 29 | 30 | def with_metaclass(meta, *bases): 31 | """ 32 | Create a base class with a metaclass. 33 | """ 34 | # This requires a bit of explanation: the basic idea is to make a dummy 35 | # metaclass for one level of class instantiation that replaces itself with 36 | # the actual metaclass. 37 | class metaclass(meta): 38 | def __new__(cls, name, this_bases, d): 39 | return meta(name, bases, d) 40 | return type.__new__(metaclass, 'temporary_class', (), {}) 41 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_structures.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/specifiers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/specifiers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/version.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pkg_resources/tests/__init__.py -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/tests/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pkg_resources/tests/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/tests/test_pkg_resources.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pkg_resources/tests/test_pkg_resources.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/pkg_resources/tests/test_resources.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/pkg_resources/tests/test_resources.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools-15.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools-15.0.dist-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | https://pypi.python.org/packages/source/c/certifi/certifi-1.0.1.tar.gz#md5=45f5cb94b8af9e1df0f9450a8f61b790 2 | https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2 3 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools-15.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _markerlib 2 | easy_install 3 | pkg_resources 4 | setuptools 5 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools-15.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/archive_util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/archive_util.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/cli-arm-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/cli-arm-32.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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', 6 | ] 7 | 8 | from distutils.command.bdist import bdist 9 | import sys 10 | 11 | from setuptools.command import install_scripts 12 | 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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/command/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/alias.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/command/bdist_egg.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- 1 | import distutils.command.bdist_rpm as orig 2 | 3 | 4 | class bdist_rpm(orig.bdist_rpm): 5 | """ 6 | Override the default bdist_rpm behavior to do the following: 7 | 8 | 1. Run egg_info to ensure the name and version are properly calculated. 9 | 2. Always run 'install' using --single-version-externally-managed to 10 | disable eggs in RPM distributions. 11 | 3. Replace dash with underscore in the version numbers for better RPM 12 | compatibility. 13 | """ 14 | 15 | def run(self): 16 | # ensure distro name is up-to-date 17 | self.run_command('egg_info') 18 | 19 | orig.bdist_rpm.run(self) 20 | 21 | def _make_spec_file(self): 22 | version = self.distribution.get_version() 23 | rpmversion = version.replace('-', '_') 24 | spec = orig.bdist_rpm._make_spec_file(self) 25 | line23 = '%define version ' + version 26 | line24 = '%define version ' + rpmversion 27 | spec = [ 28 | line.replace( 29 | "Source0: %{name}-%{version}.tar", 30 | "Source0: %{name}-%{unmangled_version}.tar" 31 | ).replace( 32 | "setup.py install ", 33 | "setup.py install --single-version-externally-managed " 34 | ).replace( 35 | "%setup", 36 | "%setup -n %{name}-%{unmangled_version}" 37 | ).replace(line23, line24) 38 | for line in spec 39 | ] 40 | insert_loc = spec.index(line24) + 1 41 | unmangled_version = "%define unmangled_version " + version 42 | spec.insert(insert_loc, unmangled_version) 43 | return spec 44 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/bdist_rpm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/command/bdist_wininst.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/build_ext.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/command/develop.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/easy_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/register.py: -------------------------------------------------------------------------------- 1 | import distutils.command.register as orig 2 | 3 | 4 | class register(orig.register): 5 | __doc__ = orig.register.__doc__ 6 | 7 | def run(self): 8 | # Make sure that we are using valid current name/version info 9 | self.run_command('egg_info') 10 | orig.register.run(self) 11 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/register.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/command/register.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/rotate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/command/saveopts.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/sdist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/command/sdist.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/setopt.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/command/setopt.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/command/test.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/command/upload_docs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/command/upload_docs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/depends.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/depends.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/dist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/dist.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/extension.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/extension.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/gui-arm-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/gui-arm-32.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/lib2to3_ex.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/lib2to3_ex.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/msvc9_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/msvc9_support.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/package_index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/package_index.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/py26compat.py: -------------------------------------------------------------------------------- 1 | """ 2 | Compatibility Support for Python 2.6 and earlier 3 | """ 4 | 5 | import sys 6 | 7 | from setuptools.compat import splittag 8 | 9 | def strip_fragment(url): 10 | """ 11 | In `Python 8280 `_, Python 2.7 and 12 | later was patched to disregard the fragment when making URL requests. 13 | Do the same for Python 2.6 and earlier. 14 | """ 15 | url, fragment = splittag(url) 16 | return url 17 | 18 | if sys.version_info >= (2,7): 19 | strip_fragment = lambda x: x 20 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/py26compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/py26compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/py27compat.py: -------------------------------------------------------------------------------- 1 | """ 2 | Compatibility Support for Python 2.7 and earlier 3 | """ 4 | 5 | import sys 6 | 7 | def get_all_headers(message, key): 8 | """ 9 | Given an HTTPMessage, return all headers matching a given key. 10 | """ 11 | return message.get_all(key) 12 | 13 | if sys.version_info < (3,): 14 | def get_all_headers(message, key): 15 | return message.getheaders(key) 16 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/py27compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/py27compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/py31compat.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import unittest 3 | 4 | __all__ = ['get_config_vars', 'get_path'] 5 | 6 | try: 7 | # Python 2.7 or >=3.2 8 | from sysconfig import get_config_vars, get_path 9 | except ImportError: 10 | from distutils.sysconfig import get_config_vars, get_python_lib 11 | def get_path(name): 12 | if name not in ('platlib', 'purelib'): 13 | raise ValueError("Name must be purelib or platlib") 14 | return get_python_lib(name=='platlib') 15 | 16 | try: 17 | # Python >=3.2 18 | from tempfile import TemporaryDirectory 19 | except ImportError: 20 | import shutil 21 | import tempfile 22 | class TemporaryDirectory(object): 23 | """" 24 | Very simple temporary directory context manager. 25 | Will try to delete afterward, but will also ignore OS and similar 26 | errors on deletion. 27 | """ 28 | def __init__(self): 29 | self.name = None # Handle mkdtemp raising an exception 30 | self.name = tempfile.mkdtemp() 31 | 32 | def __enter__(self): 33 | return self.name 34 | 35 | def __exit__(self, exctype, excvalue, exctrace): 36 | try: 37 | shutil.rmtree(self.name, True) 38 | except OSError: #removal errors are not the only possible 39 | pass 40 | self.name = None 41 | 42 | 43 | unittest_main = unittest.main 44 | 45 | _PY31 = (3, 1) <= sys.version_info[:2] < (3, 2) 46 | if _PY31: 47 | # on Python 3.1, translate testRunner==None to TextTestRunner 48 | # for compatibility with Python 2.6, 2.7, and 3.2+ 49 | def unittest_main(*args, **kwargs): 50 | if 'testRunner' in kwargs and kwargs['testRunner'] is None: 51 | kwargs['testRunner'] = unittest.TextTestRunner 52 | return unittest.main(*args, **kwargs) 53 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/py31compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/py31compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/sandbox.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/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 | exec(compile(open(__file__).read(), __file__, 'exec')) 6 | -------------------------------------------------------------------------------- /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/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/site-patch.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/ssl_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/ssl_support.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/__init__.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/contexts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/contexts.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/environment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/environment.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/fixtures.py: -------------------------------------------------------------------------------- 1 | try: 2 | from unittest import mock 3 | except ImportError: 4 | import mock 5 | import pytest 6 | 7 | from . import contexts 8 | 9 | 10 | @pytest.yield_fixture 11 | def user_override(): 12 | """ 13 | Override site.USER_BASE and site.USER_SITE with temporary directories in 14 | a context. 15 | """ 16 | with contexts.tempdir() as user_base: 17 | with mock.patch('site.USER_BASE', user_base): 18 | with contexts.tempdir() as user_site: 19 | with mock.patch('site.USER_SITE', user_site): 20 | with contexts.save_user_site_setting(): 21 | yield 22 | 23 | 24 | @pytest.yield_fixture 25 | def tmpdir_cwd(tmpdir): 26 | with tmpdir.as_cwd() as orig: 27 | yield orig 28 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/fixtures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/fixtures.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/py26compat.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import tarfile 3 | import contextlib 4 | 5 | def _tarfile_open_ex(*args, **kwargs): 6 | """ 7 | Extend result as a context manager. 8 | """ 9 | return contextlib.closing(tarfile.open(*args, **kwargs)) 10 | 11 | if sys.version_info[:2] < (2, 7) or (3, 0) <= sys.version_info[:2] < (3, 2): 12 | tarfile_open = _tarfile_open_ex 13 | else: 14 | tarfile_open = tarfile.open 15 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/py26compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/py26compat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/script-with-bom.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | result = 'passed' 4 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/script-with-bom.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/script-with-bom.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/server.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/server.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_bdist_egg.py: -------------------------------------------------------------------------------- 1 | """develop tests 2 | """ 3 | import os 4 | import re 5 | 6 | import pytest 7 | 8 | from setuptools.dist import Distribution 9 | 10 | from . import contexts 11 | 12 | SETUP_PY = """\ 13 | from setuptools import setup 14 | 15 | setup(name='foo', py_modules=['hi']) 16 | """ 17 | 18 | @pytest.yield_fixture 19 | def setup_context(tmpdir): 20 | with (tmpdir/'setup.py').open('w') as f: 21 | f.write(SETUP_PY) 22 | with (tmpdir/'hi.py').open('w') as f: 23 | f.write('1\n') 24 | with tmpdir.as_cwd(): 25 | yield tmpdir 26 | 27 | 28 | class Test: 29 | def test_bdist_egg(self, setup_context, user_override): 30 | dist = Distribution(dict( 31 | script_name='setup.py', 32 | script_args=['bdist_egg'], 33 | name='foo', 34 | py_modules=['hi'] 35 | )) 36 | os.makedirs(os.path.join('build', 'src')) 37 | with contexts.quiet(): 38 | dist.parse_command_line() 39 | dist.run_commands() 40 | 41 | # let's see if we got our egg link at the right place 42 | [content] = os.listdir('dist') 43 | assert re.match('foo-0.0.0-py[23].\d.egg$', content) 44 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_bdist_egg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_bdist_egg.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_build_ext.py: -------------------------------------------------------------------------------- 1 | import distutils.command.build_ext as orig 2 | 3 | from setuptools.command.build_ext import build_ext 4 | from setuptools.dist import Distribution 5 | 6 | class TestBuildExt: 7 | def test_get_ext_filename(self): 8 | """ 9 | Setuptools needs to give back the same 10 | result as distutils, even if the fullname 11 | is not in ext_map. 12 | """ 13 | dist = Distribution() 14 | cmd = build_ext(dist) 15 | cmd.ext_map['foo/bar'] = '' 16 | res = cmd.get_ext_filename('foo') 17 | wanted = orig.build_ext.get_ext_filename(cmd, 'foo') 18 | assert res == wanted 19 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_build_ext.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_build_ext.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_develop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_develop.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_dist_info.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_dist_info.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_easy_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_easy_install.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_egg_info.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_egg_info.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_find_packages.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_find_packages.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_integration.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_integration.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_markerlib.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_markerlib.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_msvc9compiler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_msvc9compiler.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_packageindex.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_packageindex.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_sandbox.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_sandbox.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_sdist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_sdist.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_test.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_upload_docs.py: -------------------------------------------------------------------------------- 1 | import os 2 | import zipfile 3 | import contextlib 4 | 5 | import pytest 6 | 7 | from setuptools.command.upload_docs import upload_docs 8 | from setuptools.dist import Distribution 9 | 10 | from .textwrap import DALS 11 | from . import contexts 12 | 13 | 14 | SETUP_PY = DALS( 15 | """ 16 | from setuptools import setup 17 | 18 | setup(name='foo') 19 | """) 20 | 21 | 22 | @pytest.fixture 23 | def sample_project(tmpdir_cwd): 24 | # setup.py 25 | with open('setup.py', 'wt') as f: 26 | f.write(SETUP_PY) 27 | 28 | os.mkdir('build') 29 | 30 | # A test document. 31 | with open('build/index.html', 'w') as f: 32 | f.write("Hello world.") 33 | 34 | # An empty folder. 35 | os.mkdir('build/empty') 36 | 37 | 38 | @pytest.mark.usefixtures('sample_project') 39 | @pytest.mark.usefixtures('user_override') 40 | class TestUploadDocsTest: 41 | 42 | def test_create_zipfile(self): 43 | """ 44 | Ensure zipfile creation handles common cases, including a folder 45 | containing an empty folder. 46 | """ 47 | 48 | dist = Distribution() 49 | 50 | cmd = upload_docs(dist) 51 | cmd.target_dir = cmd.upload_dir = 'build' 52 | with contexts.tempdir() as tmp_dir: 53 | tmp_file = os.path.join(tmp_dir, 'foo.zip') 54 | zip_file = cmd.create_zipfile(tmp_file) 55 | 56 | assert zipfile.is_zipfile(tmp_file) 57 | 58 | with contextlib.closing(zipfile.ZipFile(tmp_file)) as zip_file: 59 | assert zip_file.namelist() == ['index.html'] 60 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_upload_docs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_upload_docs.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/test_windows_wrappers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/test_windows_wrappers.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/textwrap.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import textwrap 4 | 5 | 6 | def DALS(s): 7 | "dedent and left-strip" 8 | return textwrap.dedent(s).lstrip() 9 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/tests/textwrap.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/tests/textwrap.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- 1 | import unicodedata 2 | import sys 3 | from setuptools.compat import unicode as decoded_string 4 | 5 | 6 | # HFS Plus uses decomposed UTF-8 7 | def decompose(path): 8 | if isinstance(path, decoded_string): 9 | return unicodedata.normalize('NFD', path) 10 | try: 11 | path = path.decode('utf-8') 12 | path = unicodedata.normalize('NFD', path) 13 | path = path.encode('utf-8') 14 | except UnicodeError: 15 | pass # Not UTF-8 16 | return path 17 | 18 | 19 | def filesys_decode(path): 20 | """ 21 | Ensure that the given path is decoded, 22 | NONE when no expected encoding works 23 | """ 24 | 25 | fs_enc = sys.getfilesystemencoding() 26 | if isinstance(path, decoded_string): 27 | return path 28 | 29 | for enc in (fs_enc, "utf-8"): 30 | try: 31 | return path.decode(enc) 32 | except UnicodeDecodeError: 33 | continue 34 | 35 | 36 | def try_encode(string, enc): 37 | "turn unicode encoding into a functional routine" 38 | try: 39 | return string.encode(enc) 40 | except UnicodeEncodeError: 41 | return None 42 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/unicode_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/unicode_utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/utils.py: -------------------------------------------------------------------------------- 1 | import os 2 | import os.path 3 | 4 | 5 | def cs_path_exists(fspath): 6 | if not os.path.exists(fspath): 7 | return False 8 | # make absolute so we always have a directory 9 | abspath = os.path.abspath(fspath) 10 | directory, filename = os.path.split(abspath) 11 | return filename in os.listdir(directory) -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/utils.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '15.0' 2 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/version.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- 1 | import platform 2 | import ctypes 3 | 4 | 5 | def windows_only(func): 6 | if platform.system() != 'Windows': 7 | return lambda *args, **kwargs: None 8 | return func 9 | 10 | 11 | @windows_only 12 | def hide_file(path): 13 | """ 14 | Set the hidden attribute on a file or directory. 15 | 16 | From http://stackoverflow.com/questions/19622133/ 17 | 18 | `path` must be text. 19 | """ 20 | __import__('ctypes.wintypes') 21 | SetFileAttributes = ctypes.windll.kernel32.SetFileAttributesW 22 | SetFileAttributes.argtypes = ctypes.wintypes.LPWSTR, ctypes.wintypes.DWORD 23 | SetFileAttributes.restype = ctypes.wintypes.BOOL 24 | 25 | FILE_ATTRIBUTE_HIDDEN = 0x02 26 | 27 | ret = SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN) 28 | if not ret: 29 | raise ctypes.WinError() 30 | -------------------------------------------------------------------------------- /venv/lib/python2.7/site-packages/setuptools/windows_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site-packages/setuptools/windows_support.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/site.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/site.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/sre.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre.py -------------------------------------------------------------------------------- /venv/lib/python2.7/sre_compile.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_compile.py -------------------------------------------------------------------------------- /venv/lib/python2.7/sre_compile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/sre_compile.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/sre_constants.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_constants.py -------------------------------------------------------------------------------- /venv/lib/python2.7/sre_constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/sre_constants.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/sre_parse.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_parse.py -------------------------------------------------------------------------------- /venv/lib/python2.7/sre_parse.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/sre_parse.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/stat.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/stat.py -------------------------------------------------------------------------------- /venv/lib/python2.7/stat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/stat.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/types.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/types.py -------------------------------------------------------------------------------- /venv/lib/python2.7/types.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/types.pyc -------------------------------------------------------------------------------- /venv/lib/python2.7/warnings.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/lib/python2.7/warnings.py -------------------------------------------------------------------------------- /venv/lib/python2.7/warnings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathur/UIUCClassChecker/bfb12ebaa1a119f023ea911937445f446479a7ef/venv/lib/python2.7/warnings.pyc --------------------------------------------------------------------------------