├── .Python ├── .idea ├── Neural Style Transfer.iml ├── encodings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Network.py ├── README.md ├── bin ├── activate ├── activate.csh ├── activate.fish ├── activate_this.py ├── easy_install ├── easy_install-2.7 ├── pip ├── pip2 ├── pip2.7 ├── python ├── python-config ├── python2 ├── python2.7 └── wheel ├── include └── python2.7 └── lib └── 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 ├── easy_install.py ├── easy_install.pyc ├── pip-8.1.2.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt ├── pip │ ├── __init__.py │ ├── __init__.pyc │ ├── __main__.py │ ├── __main__.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── _cmd.py │ │ │ ├── _cmd.pyc │ │ │ ├── adapter.py │ │ │ ├── adapter.pyc │ │ │ ├── cache.py │ │ │ ├── cache.pyc │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── file_cache.py │ │ │ │ ├── file_cache.pyc │ │ │ │ ├── redis_cache.py │ │ │ │ └── redis_cache.pyc │ │ │ ├── compat.py │ │ │ ├── compat.pyc │ │ │ ├── controller.py │ │ │ ├── controller.pyc │ │ │ ├── filewrapper.py │ │ │ ├── filewrapper.pyc │ │ │ ├── heuristics.py │ │ │ ├── heuristics.pyc │ │ │ ├── serialize.py │ │ │ ├── serialize.pyc │ │ │ ├── wrapper.py │ │ │ └── wrapper.pyc │ │ ├── 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 │ │ │ ├── markers.py │ │ │ ├── markers.pyc │ │ │ ├── requirements.py │ │ │ ├── requirements.pyc │ │ │ ├── specifiers.py │ │ │ ├── specifiers.pyc │ │ │ ├── utils.py │ │ │ ├── utils.pyc │ │ │ ├── version.py │ │ │ └── version.pyc │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── bar.py │ │ │ ├── bar.pyc │ │ │ ├── counter.py │ │ │ ├── counter.pyc │ │ │ ├── helpers.py │ │ │ ├── helpers.pyc │ │ │ ├── spinner.py │ │ │ └── spinner.pyc │ │ ├── pyparsing.py │ │ ├── pyparsing.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 │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── appengine.pyc │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── ntlmpool.pyc │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── pyopenssl.pyc │ │ │ │ │ ├── socks.py │ │ │ │ │ └── socks.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 │ │ ├── download.py │ │ ├── download.pyc │ │ ├── freeze.py │ │ ├── freeze.pyc │ │ ├── hash.py │ │ ├── hash.pyc │ │ ├── help.py │ │ ├── help.pyc │ │ ├── install.py │ │ ├── install.pyc │ │ ├── list.py │ │ ├── list.pyc │ │ ├── search.py │ │ ├── search.pyc │ │ ├── show.py │ │ ├── show.pyc │ │ ├── uninstall.py │ │ ├── uninstall.pyc │ │ ├── wheel.py │ │ └── wheel.pyc │ ├── compat │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── dictconfig.py │ │ ├── dictconfig.pyc │ │ ├── ordereddict.py │ │ └── ordereddict.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_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 │ │ ├── encoding.py │ │ ├── encoding.pyc │ │ ├── filesystem.py │ │ ├── filesystem.pyc │ │ ├── hashes.py │ │ ├── hashes.pyc │ │ ├── logging.py │ │ ├── logging.pyc │ │ ├── outdated.py │ │ ├── outdated.pyc │ │ ├── setuptools_build.py │ │ ├── setuptools_build.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 │ │ │ ├── markers.py │ │ │ ├── markers.pyc │ │ │ ├── requirements.py │ │ │ ├── requirements.pyc │ │ │ ├── specifiers.py │ │ │ ├── specifiers.pyc │ │ │ ├── utils.py │ │ │ ├── utils.pyc │ │ │ ├── version.py │ │ │ └── version.pyc │ │ ├── pyparsing.py │ │ ├── pyparsing.pyc │ │ ├── six.py │ │ └── six.pyc │ └── extern │ │ ├── __init__.py │ │ └── __init__.pyc ├── setuptools-21.2.1.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── 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.py │ │ ├── upload.pyc │ │ ├── upload_docs.py │ │ └── upload_docs.pyc │ ├── depends.py │ ├── depends.pyc │ ├── dist.py │ ├── dist.pyc │ ├── extension.py │ ├── extension.pyc │ ├── extern │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui-arm-32.exe │ ├── gui.exe │ ├── launch.py │ ├── launch.pyc │ ├── 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 │ ├── unicode_utils.py │ ├── unicode_utils.pyc │ ├── utils.py │ ├── utils.pyc │ ├── version.py │ ├── version.pyc │ ├── windows_support.py │ └── windows_support.pyc ├── wheel-0.29.0.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt └── wheel │ ├── __init__.py │ ├── __init__.pyc │ ├── __main__.py │ ├── __main__.pyc │ ├── archive.py │ ├── archive.pyc │ ├── bdist_wheel.py │ ├── bdist_wheel.pyc │ ├── decorator.py │ ├── decorator.pyc │ ├── egg2wheel.py │ ├── egg2wheel.pyc │ ├── eggnames.txt │ ├── install.py │ ├── install.pyc │ ├── metadata.py │ ├── metadata.pyc │ ├── paths.py │ ├── paths.pyc │ ├── pep425tags.py │ ├── pep425tags.pyc │ ├── pkginfo.py │ ├── pkginfo.pyc │ ├── signatures │ ├── __init__.py │ ├── __init__.pyc │ ├── djbec.py │ ├── djbec.pyc │ ├── ed25519py.py │ ├── ed25519py.pyc │ ├── keys.py │ └── keys.pyc │ ├── test │ ├── __init__.py │ ├── __init__.pyc │ ├── complex-dist │ │ ├── complexdist │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ ├── setup.py │ │ └── setup.pyc │ ├── headers.dist │ │ ├── header.h │ │ ├── headersdist.py │ │ ├── headersdist.pyc │ │ ├── setup.py │ │ └── setup.pyc │ ├── pydist-schema.json │ ├── simple.dist │ │ ├── setup.py │ │ ├── setup.pyc │ │ └── simpledist │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ ├── test-1.0-py2.py3-none-win32.whl │ ├── test_basic.py │ ├── test_basic.pyc │ ├── test_install.py │ ├── test_install.pyc │ ├── test_keys.py │ ├── test_keys.pyc │ ├── test_paths.py │ ├── test_paths.pyc │ ├── test_ranking.py │ ├── test_ranking.pyc │ ├── test_signatures.py │ ├── test_signatures.pyc │ ├── test_tagopt.py │ ├── test_tagopt.pyc │ ├── test_tool.py │ ├── test_tool.pyc │ ├── test_wheelfile.py │ └── test_wheelfile.pyc │ ├── tool │ ├── __init__.py │ └── __init__.pyc │ ├── util.py │ ├── util.pyc │ ├── wininst2wheel.py │ └── wininst2wheel.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 /.Python: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/Python -------------------------------------------------------------------------------- /.idea/Neural Style Transfer.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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/jravel/Downloads/Neural-Style-Transfer-master" 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 | set env_name = `basename "$VIRTUAL_ENV"` 21 | endif 22 | 23 | # Could be in a non-interactive environment, 24 | # in which case, $prompt is undefined and we wouldn't 25 | # care about the prompt anyway. 26 | if ( $?prompt ) then 27 | set _OLD_VIRTUAL_PROMPT="$prompt" 28 | set prompt = "[$env_name] $prompt" 29 | endif 30 | 31 | unset env_name 32 | 33 | alias pydoc python -m pydoc 34 | 35 | rehash 36 | 37 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /bin/easy_install: -------------------------------------------------------------------------------- 1 | #!/Users/jravel/Downloads/Neural-Style-Transfer-master/bin/python 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from setuptools.command.easy_install import main 8 | 9 | if __name__ == '__main__': 10 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 11 | sys.exit(main()) 12 | -------------------------------------------------------------------------------- /bin/easy_install-2.7: -------------------------------------------------------------------------------- 1 | #!/Users/jravel/Downloads/Neural-Style-Transfer-master/bin/python 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from setuptools.command.easy_install import main 8 | 9 | if __name__ == '__main__': 10 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 11 | sys.exit(main()) 12 | -------------------------------------------------------------------------------- /bin/pip: -------------------------------------------------------------------------------- 1 | #!/Users/jravel/Downloads/Neural-Style-Transfer-master/bin/python 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 | -------------------------------------------------------------------------------- /bin/pip2: -------------------------------------------------------------------------------- 1 | #!/Users/jravel/Downloads/Neural-Style-Transfer-master/bin/python 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 | -------------------------------------------------------------------------------- /bin/pip2.7: -------------------------------------------------------------------------------- 1 | #!/Users/jravel/Downloads/Neural-Style-Transfer-master/bin/python 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 | -------------------------------------------------------------------------------- /bin/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/bin/python -------------------------------------------------------------------------------- /bin/python2: -------------------------------------------------------------------------------- 1 | python -------------------------------------------------------------------------------- /bin/python2.7: -------------------------------------------------------------------------------- 1 | python -------------------------------------------------------------------------------- /bin/wheel: -------------------------------------------------------------------------------- 1 | #!/Users/jravel/Downloads/Neural-Style-Transfer-master/bin/python 2 | 3 | # -*- coding: utf-8 -*- 4 | import re 5 | import sys 6 | 7 | from wheel.tool 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 | -------------------------------------------------------------------------------- /include/python2.7: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -------------------------------------------------------------------------------- /lib/python2.7/UserDict.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py -------------------------------------------------------------------------------- /lib/python2.7/UserDict.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/UserDict.pyc -------------------------------------------------------------------------------- /lib/python2.7/_abcoll.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_abcoll.py -------------------------------------------------------------------------------- /lib/python2.7/_abcoll.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/_abcoll.pyc -------------------------------------------------------------------------------- /lib/python2.7/_weakrefset.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_weakrefset.py -------------------------------------------------------------------------------- /lib/python2.7/_weakrefset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/_weakrefset.pyc -------------------------------------------------------------------------------- /lib/python2.7/abc.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/abc.py -------------------------------------------------------------------------------- /lib/python2.7/abc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/abc.pyc -------------------------------------------------------------------------------- /lib/python2.7/codecs.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/codecs.py -------------------------------------------------------------------------------- /lib/python2.7/codecs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/codecs.pyc -------------------------------------------------------------------------------- /lib/python2.7/config: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/config -------------------------------------------------------------------------------- /lib/python2.7/copy_reg.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy_reg.py -------------------------------------------------------------------------------- /lib/python2.7/copy_reg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/copy_reg.pyc -------------------------------------------------------------------------------- /lib/python2.7/distutils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/distutils/__init__.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/encodings: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings -------------------------------------------------------------------------------- /lib/python2.7/fnmatch.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/fnmatch.py -------------------------------------------------------------------------------- /lib/python2.7/fnmatch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/fnmatch.pyc -------------------------------------------------------------------------------- /lib/python2.7/genericpath.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/genericpath.py -------------------------------------------------------------------------------- /lib/python2.7/genericpath.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/genericpath.pyc -------------------------------------------------------------------------------- /lib/python2.7/lib-dynload: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload -------------------------------------------------------------------------------- /lib/python2.7/linecache.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/linecache.py -------------------------------------------------------------------------------- /lib/python2.7/linecache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/linecache.pyc -------------------------------------------------------------------------------- /lib/python2.7/locale.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py -------------------------------------------------------------------------------- /lib/python2.7/locale.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/locale.pyc -------------------------------------------------------------------------------- /lib/python2.7/no-global-site-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/no-global-site-packages.txt -------------------------------------------------------------------------------- /lib/python2.7/ntpath.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ntpath.py -------------------------------------------------------------------------------- /lib/python2.7/orig-prefix.txt: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7 -------------------------------------------------------------------------------- /lib/python2.7/os.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py -------------------------------------------------------------------------------- /lib/python2.7/os.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/os.pyc -------------------------------------------------------------------------------- /lib/python2.7/posixpath.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py -------------------------------------------------------------------------------- /lib/python2.7/posixpath.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/posixpath.pyc -------------------------------------------------------------------------------- /lib/python2.7/re.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py -------------------------------------------------------------------------------- /lib/python2.7/re.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/re.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/easy_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/easy_install.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip-8.1.2.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 | * `User mailing list `_ 14 | * `Dev mailing list `_ 15 | * User IRC: #pypa on Freenode. 16 | * Dev IRC: #pypa-dev on Freenode. 17 | 18 | 19 | .. image:: https://img.shields.io/pypi/v/pip.svg 20 | :target: https://pypi.python.org/pypi/pip 21 | 22 | .. image:: https://img.shields.io/travis/pypa/pip/develop.svg 23 | :target: http://travis-ci.org/pypa/pip 24 | 25 | .. image:: https://readthedocs.org/projects/pip/badge/?version=stable 26 | :target: https://pip.pypa.io/en/stable 27 | 28 | Code of Conduct 29 | --------------- 30 | 31 | Everyone interacting in the pip project's codebases, issue trackers, chat 32 | rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_. 33 | 34 | .. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/ 35 | 36 | 37 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip-8.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip-8.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip-8.1.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip:main 3 | pip3 = pip:main 4 | pip3.5 = pip:main 5 | 6 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip-8.1.2.dist-info/metadata.json: -------------------------------------------------------------------------------- 1 | {"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.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: PyPy"], "extensions": {"python.commands": {"wrap_console": {"pip": "pip:main", "pip3": "pip:main", "pip3.5": "pip:main"}}, "python.details": {"contacts": [{"email": "python-virtualenv@groups.google.com", "name": "The pip developers", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://pip.pypa.io/"}}, "python.exports": {"console_scripts": {"pip": "pip:main", "pip3": "pip:main", "pip3.5": "pip:main"}}}, "extras": ["testing"], "generator": "bdist_wheel (0.29.0)", "keywords": ["easy_install", "distutils", "setuptools", "egg", "virtualenv"], "license": "MIT", "metadata_version": "2.0", "name": "pip", "run_requires": [{"extra": "testing", "requires": ["mock", "pretend", "pytest", "scripttest (>=1.3)", "virtualenv (>=1.10)"]}], "summary": "The PyPA recommended tool for installing Python packages.", "test_requires": [{"requires": ["mock", "pretend", "pytest", "scripttest (>=1.3)", "virtualenv (>=1.10)"]}], "version": "8.1.2"} -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip-8.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/__init__.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/__main__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/__init__.pyc -------------------------------------------------------------------------------- /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.6' 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- 1 | import logging 2 | 3 | from pip._vendor import requests 4 | 5 | from pip._vendor.cachecontrol.adapter import CacheControlAdapter 6 | from pip._vendor.cachecontrol.cache import DictCache 7 | from pip._vendor.cachecontrol.controller import logger 8 | 9 | from argparse import ArgumentParser 10 | 11 | 12 | def setup_logging(): 13 | logger.setLevel(logging.DEBUG) 14 | handler = logging.StreamHandler() 15 | logger.addHandler(handler) 16 | 17 | 18 | def get_session(): 19 | adapter = CacheControlAdapter( 20 | DictCache(), 21 | cache_etags=True, 22 | serializer=None, 23 | heuristic=None, 24 | ) 25 | sess = requests.Session() 26 | sess.mount('http://', adapter) 27 | sess.mount('https://', adapter) 28 | 29 | sess.cache_controller = adapter.controller 30 | return sess 31 | 32 | 33 | def get_args(): 34 | parser = ArgumentParser() 35 | parser.add_argument('url', help='The URL to try and cache') 36 | return parser.parse_args() 37 | 38 | 39 | def main(args=None): 40 | args = get_args() 41 | sess = get_session() 42 | 43 | # Make a request to get a response 44 | resp = sess.get(args.url) 45 | 46 | # Turn on logging 47 | setup_logging() 48 | 49 | # try setting the cache 50 | sess.cache_controller.cache_response(resp.request, resp.raw) 51 | 52 | # Now try to get it 53 | if sess.cache_controller.cached_request(resp.request): 54 | print('Cached!') 55 | else: 56 | print('Not cached :(') 57 | 58 | 59 | if __name__ == '__main__': 60 | main() 61 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/_cmd.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/_cmd.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/adapter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/adapter.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/cache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/cache.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/file_cache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/file_cache.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.pyc -------------------------------------------------------------------------------- /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 | 16 | # Replicate some six behaviour 17 | try: 18 | text_type = (unicode,) 19 | except NameError: 20 | text_type = (str,) 21 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/compat.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/controller.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/controller.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/filewrapper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/filewrapper.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/heuristics.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/heuristics.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/serialize.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/serialize.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/cachecontrol/wrapper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/cachecontrol/wrapper.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.3.7' 7 | 8 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/colorama/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/colorama/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/colorama/ansi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/colorama/ansi.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/colorama/initialise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/colorama/initialise.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/colorama/win32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/colorama/win32.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/colorama/winterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/colorama/winterm.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2016 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.3' 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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/__init__.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/_backport/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/__init__.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/_backport/misc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/misc.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/_backport/shutil.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/shutil.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/_backport/sysconfig.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/sysconfig.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/_backport/tarfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/_backport/tarfile.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/compat.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/database.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/database.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/index.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/locators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/locators.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/manifest.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/manifest.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/markers.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/metadata.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/metadata.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/resources.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/resources.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/scripts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/scripts.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/util.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/version.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/distlib/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/distlib/wheel.pyc -------------------------------------------------------------------------------- /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 | 24 | # this has to be at the top level, see how setup.py parses this 25 | __version__ = "1.0b8" 26 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/constants.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/filters/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/__init__.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/filters/_base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/_base.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/filters/lint.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/lint.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/filters/optionaltags.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/optionaltags.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/filters/sanitizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/sanitizer.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/filters/whitespace.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/filters/whitespace.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/html5parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/html5parser.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/ihatexml.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/ihatexml.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/inputstream.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/inputstream.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/sanitizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/sanitizer.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/serializer/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/serializer/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/serializer/htmlserializer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/serializer/htmlserializer.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/tokenizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/tokenizer.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/sax.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treeadapters/sax.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/_base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/_base.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/dom.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/dom.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/etree.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/etree.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/_base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/_base.pyc -------------------------------------------------------------------------------- /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 | from . import _base 6 | 7 | 8 | class TreeWalker(_base.NonRecursiveTreeWalker): 9 | def getNodeDetails(self, node): 10 | if node.nodeType == Node.DOCUMENT_TYPE_NODE: 11 | return _base.DOCTYPE, node.name, node.publicId, node.systemId 12 | 13 | elif node.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE): 14 | return _base.TEXT, node.nodeValue 15 | 16 | elif node.nodeType == Node.ELEMENT_NODE: 17 | attrs = {} 18 | for attr in list(node.attributes.keys()): 19 | attr = node.getAttributeNode(attr) 20 | if attr.namespaceURI: 21 | attrs[(attr.namespaceURI, attr.localName)] = attr.value 22 | else: 23 | attrs[(None, attr.name)] = attr.value 24 | return (_base.ELEMENT, node.namespaceURI, node.nodeName, 25 | attrs, node.hasChildNodes()) 26 | 27 | elif node.nodeType == Node.COMMENT_NODE: 28 | return _base.COMMENT, node.nodeValue 29 | 30 | elif node.nodeType in (Node.DOCUMENT_NODE, Node.DOCUMENT_FRAGMENT_NODE): 31 | return (_base.DOCUMENT,) 32 | 33 | else: 34 | return _base.UNKNOWN, node.nodeType 35 | 36 | def getFirstChild(self, node): 37 | return node.firstChild 38 | 39 | def getNextSibling(self, node): 40 | return node.nextSibling 41 | 42 | def getParentNode(self, node): 43 | return node.parentNode 44 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/dom.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/dom.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/etree.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/etree.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/genshistream.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/genshistream.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/lxmletree.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/lxmletree.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/pulldom.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/treewalkers/pulldom.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/trie/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/__init__.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/trie/_base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/_base.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/trie/datrie.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/datrie.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/trie/py.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/py.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/html5lib/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/html5lib/utils.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/ipaddress.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/ipaddress.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/lockfile/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/lockfile/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/lockfile/linklockfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/lockfile/linklockfile.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/lockfile/mkdirlockfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/lockfile/mkdirlockfile.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/lockfile/pidlockfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/lockfile/pidlockfile.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/lockfile/sqlitelockfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/lockfile/sqlitelockfile.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/lockfile/symlinklockfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/lockfile/symlinklockfile.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 8 | "__email__", "__license__", "__copyright__", 9 | ] 10 | 11 | __title__ = "packaging" 12 | __summary__ = "Core utilities for Python packages" 13 | __uri__ = "https://github.com/pypa/packaging" 14 | 15 | __version__ = "16.7" 16 | 17 | __author__ = "Donald Stufft and individual contributors" 18 | __email__ = "donald@stufft.io" 19 | 20 | __license__ = "BSD or Apache License, Version 2.0" 21 | __copyright__ = "Copyright 2014-2016 %s" % __author__ 22 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/__about__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/packaging/__about__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, __copyright__, __email__, __license__, __summary__, __title__, 8 | __uri__, __version__ 9 | ) 10 | 11 | __all__ = [ 12 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 13 | "__email__", "__license__", "__copyright__", 14 | ] 15 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/packaging/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = str, 16 | else: 17 | string_types = basestring, 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | return type.__new__(metaclass, 'temporary_class', (), {}) 31 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/packaging/_compat.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/_structures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/packaging/_structures.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/packaging/markers.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/requirements.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/packaging/requirements.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/specifiers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/packaging/specifiers.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import re 7 | 8 | 9 | _canonicalize_regex = re.compile(r"[-_.]+") 10 | 11 | 12 | def canonicalize_name(name): 13 | # This is taken from PEP 503. 14 | return _canonicalize_regex.sub("-", name).lower() 15 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/packaging/utils.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/packaging/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/packaging/version.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/pkg_resources/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/pkg_resources/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/progress/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/progress/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/progress/bar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/progress/bar.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/progress/counter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/progress/counter.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/progress/helpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/progress/helpers.pyc -------------------------------------------------------------------------------- /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 . import Infinite 18 | from .helpers import WriteMixin 19 | 20 | 21 | class Spinner(WriteMixin, Infinite): 22 | message = '' 23 | phases = ('-', '\\', '|', '/') 24 | hide_cursor = True 25 | 26 | def update(self): 27 | i = self.index % len(self.phases) 28 | self.write(self.phases[i]) 29 | 30 | 31 | class PieSpinner(Spinner): 32 | phases = [u'◷', u'◶', u'◵', u'◴'] 33 | 34 | 35 | class MoonSpinner(Spinner): 36 | phases = [u'◑', u'◒', u'◐', u'◓'] 37 | 38 | 39 | class LineSpinner(Spinner): 40 | phases = [u'⎺', u'⎻', u'⎼', u'⎽', u'⎼', u'⎻'] 41 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/progress/spinner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/progress/spinner.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/pyparsing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/pyparsing.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/re-vendor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/re-vendor.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/adapters.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/adapters.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/api.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/api.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/auth.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/auth.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/certs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/certs.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/compat.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/cookies.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/cookies.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/exceptions.pyc -------------------------------------------------------------------------------- /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 | HOOKS = ['response'] 16 | 17 | def default_hooks(): 18 | return dict((event, []) for event in HOOKS) 19 | 20 | # TODO: response is the only one 21 | 22 | 23 | def dispatch_hook(key, hooks, hook_data, **kwargs): 24 | """Dispatches a hook dictionary on a given piece of data.""" 25 | hooks = hooks or dict() 26 | hooks = hooks.get(key) 27 | if hooks: 28 | if hasattr(hooks, '__call__'): 29 | hooks = [hooks] 30 | for hook in hooks: 31 | _hook_data = hook(hook_data, **kwargs) 32 | if _hook_data is not None: 33 | hook_data = _hook_data 34 | return hook_data 35 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/hooks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/hooks.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/models.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/__init__.py: -------------------------------------------------------------------------------- 1 | ''' 2 | Debian and other distributions "unbundle" requests' vendored dependencies, and 3 | rewrite all imports to use the global versions of ``urllib3`` and ``chardet``. 4 | The problem with this is that not only requests itself imports those 5 | dependencies, but third-party code outside of the distros' control too. 6 | 7 | In reaction to these problems, the distro maintainers replaced 8 | ``requests.packages`` with a magical "stub module" that imports the correct 9 | modules. The implementations were varying in quality and all had severe 10 | problems. For example, a symlink (or hardlink) that links the correct modules 11 | into place introduces problems regarding object identity, since you now have 12 | two modules in `sys.modules` with the same API, but different identities:: 13 | 14 | requests.packages.urllib3 is not urllib3 15 | 16 | With version ``2.5.2``, requests started to maintain its own stub, so that 17 | distro-specific breakage would be reduced to a minimum, even though the whole 18 | issue is not requests' fault in the first place. See 19 | https://github.com/kennethreitz/requests/pull/2375 for the corresponding pull 20 | request. 21 | ''' 22 | 23 | from __future__ import absolute_import 24 | import sys 25 | 26 | try: 27 | from . import urllib3 28 | except ImportError: 29 | import urllib3 30 | sys.modules['%s.urllib3' % __name__] = urllib3 31 | 32 | try: 33 | from . import chardet 34 | except ImportError: 35 | import chardet 36 | sys.modules['%s.chardet' % __name__] = chardet 37 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/__init__.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/big5freq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/big5freq.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/big5prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/big5prober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/chardetect.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/chardetect.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/chardistribution.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/chardistribution.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/charsetgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/charsetgroupprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/charsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/charsetprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/codingstatemachine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/codingstatemachine.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/compat.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/constants.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/cp949prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/cp949prober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/escprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/escprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/escsm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/escsm.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/eucjpprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/eucjpprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euckrfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euckrfreq.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euckrprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euckrprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euctwfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euctwfreq.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euctwprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/euctwprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/gb2312freq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/gb2312freq.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/gb2312prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/gb2312prober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/hebrewprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/hebrewprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/jisfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/jisfreq.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/jpcntx.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/jpcntx.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langbulgarianmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langbulgarianmodel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langcyrillicmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langcyrillicmodel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langgreekmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langgreekmodel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langhebrewmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langhebrewmodel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langhungarianmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langhungarianmodel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langthaimodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/langthaimodel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/latin1prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/latin1prober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcharsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcharsetprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcsgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcsgroupprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcssm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/mbcssm.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sbcharsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sbcharsetprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sbcsgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sbcsgroupprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sjisprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/sjisprober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/universaldetector.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/universaldetector.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/utf8prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/chardet/utf8prober.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/_collections.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/_collections.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/connection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/connection.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/connectionpool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/connectionpool.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/appengine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/appengine.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/socks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/socks.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/exceptions.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/fields.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/fields.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/filepost.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/filepost.pyc -------------------------------------------------------------------------------- /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 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/six.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/poolmanager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/poolmanager.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/request.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/response.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | # For backwards compatibility, provide imports that used to be here. 3 | from .connection import is_connection_dropped 4 | from .request import make_headers 5 | from .response import is_fp_closed 6 | from .ssl_ import ( 7 | SSLContext, 8 | HAS_SNI, 9 | IS_PYOPENSSL, 10 | assert_fingerprint, 11 | resolve_cert_reqs, 12 | resolve_ssl_version, 13 | ssl_wrap_socket, 14 | ) 15 | from .timeout import ( 16 | current_time, 17 | Timeout, 18 | ) 19 | 20 | from .retry import Retry 21 | from .url import ( 22 | get_host, 23 | parse_url, 24 | split_first, 25 | Url, 26 | ) 27 | 28 | __all__ = ( 29 | 'HAS_SNI', 30 | 'IS_PYOPENSSL', 31 | 'SSLContext', 32 | 'Retry', 33 | 'Timeout', 34 | 'Url', 35 | 'assert_fingerprint', 36 | 'current_time', 37 | 'is_connection_dropped', 38 | 'is_fp_closed', 39 | 'get_host', 40 | 'parse_url', 41 | 'make_headers', 42 | 'resolve_cert_reqs', 43 | 'resolve_ssl_version', 44 | 'split_first', 45 | 'ssl_wrap_socket', 46 | ) 47 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/connection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/connection.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/request.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/response.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/retry.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/retry.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/timeout.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/timeout.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/url.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/url.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/sessions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/sessions.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/status_codes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/status_codes.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/structures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/structures.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/requests/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/requests/utils.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/retrying.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/retrying.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/_vendor/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/_vendor/six.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/basecommand.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/basecommand.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/baseparser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/baseparser.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/cmdoptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/cmdoptions.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/completion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/completion.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/download.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/download.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/freeze.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/freeze.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/hash.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/hash.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/help.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/help.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/install.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/list.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/list.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/search.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/search.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/show.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/show.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/uninstall.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/uninstall.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/commands/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/commands/wheel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/compat/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/compat/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/compat/dictconfig.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/compat/dictconfig.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/compat/ordereddict.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/compat/ordereddict.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/download.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/download.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/exceptions.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/index.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/locations.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/locations.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/models/__init__.py: -------------------------------------------------------------------------------- 1 | from pip.models.index import Index, PyPI 2 | 3 | 4 | __all__ = ["Index", "PyPI"] 5 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/models/__init__.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/models/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/models/index.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/operations/__init__.py -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/operations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/operations/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/operations/freeze.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/operations/freeze.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/pep425tags.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/pep425tags.pyc -------------------------------------------------------------------------------- /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", 9 | "parse_requirements", 10 | ] 11 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/req/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/req/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/req/req_file.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/req/req_file.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/req/req_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/req/req_install.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/req/req_set.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/req/req_set.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/req/req_uninstall.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/req/req_uninstall.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/status_codes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/status_codes.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/appdirs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/appdirs.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/build.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/build.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/deprecation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/deprecation.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/encoding.py: -------------------------------------------------------------------------------- 1 | import codecs 2 | import locale 3 | import re 4 | 5 | 6 | BOMS = [ 7 | (codecs.BOM_UTF8, 'utf8'), 8 | (codecs.BOM_UTF16, 'utf16'), 9 | (codecs.BOM_UTF16_BE, 'utf16-be'), 10 | (codecs.BOM_UTF16_LE, 'utf16-le'), 11 | (codecs.BOM_UTF32, 'utf32'), 12 | (codecs.BOM_UTF32_BE, 'utf32-be'), 13 | (codecs.BOM_UTF32_LE, 'utf32-le'), 14 | ] 15 | 16 | ENCODING_RE = re.compile(b'coding[:=]\s*([-\w.]+)') 17 | 18 | 19 | def auto_decode(data): 20 | """Check a bytes string for a BOM to correctly detect the encoding 21 | 22 | Fallback to locale.getpreferredencoding(False) like open() on Python3""" 23 | for bom, encoding in BOMS: 24 | if data.startswith(bom): 25 | return data[len(bom):].decode(encoding) 26 | # Lets check the first two lines as in PEP263 27 | for line in data.split(b'\n')[:2]: 28 | if line[0:1] == b'#' and ENCODING_RE.search(line): 29 | encoding = ENCODING_RE.search(line).groups()[0].decode('ascii') 30 | return data.decode(encoding) 31 | return data.decode(locale.getpreferredencoding(False)) 32 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/encoding.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/encoding.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/filesystem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/filesystem.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/hashes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/hashes.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/logging.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/logging.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/outdated.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/outdated.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/setuptools_build.py: -------------------------------------------------------------------------------- 1 | # Shim to wrap setup.py invocation with setuptools 2 | SETUPTOOLS_SHIM = ( 3 | "import setuptools, tokenize;__file__=%r;" 4 | "exec(compile(getattr(tokenize, 'open', open)(__file__).read()" 5 | ".replace('\\r\\n', '\\n'), __file__, 'exec'))" 6 | ) 7 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/setuptools_build.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/setuptools_build.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/utils/ui.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/utils/ui.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/vcs/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/vcs/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/vcs/bazaar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/vcs/bazaar.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/vcs/git.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/vcs/git.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/vcs/mercurial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/vcs/mercurial.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/vcs/subversion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/vcs/subversion.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pip/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pip/wheel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.py -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 8 | "__email__", "__license__", "__copyright__", 9 | ] 10 | 11 | __title__ = "packaging" 12 | __summary__ = "Core utilities for Python packages" 13 | __uri__ = "https://github.com/pypa/packaging" 14 | 15 | __version__ = "16.7" 16 | 17 | __author__ = "Donald Stufft and individual contributors" 18 | __email__ = "donald@stufft.io" 19 | 20 | __license__ = "BSD or Apache License, Version 2.0" 21 | __copyright__ = "Copyright 2014-2016 %s" % __author__ 22 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__about__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__about__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, __copyright__, __email__, __license__, __summary__, __title__, 8 | __uri__, __version__ 9 | ) 10 | 11 | __all__ = [ 12 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 13 | "__email__", "__license__", "__copyright__", 14 | ] 15 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = str, 16 | else: 17 | string_types = basestring, 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | return type.__new__(metaclass, 'temporary_class', (), {}) 31 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_compat.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_structures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/_structures.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/markers.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/requirements.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/requirements.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/specifiers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/specifiers.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import re 7 | 8 | 9 | _canonicalize_regex = re.compile(r"[-_.]+") 10 | 11 | 12 | def canonicalize_name(name): 13 | # This is taken from PEP 503. 14 | return _canonicalize_regex.sub("-", name).lower() 15 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/utils.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/packaging/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/packaging/version.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/pyparsing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/pyparsing.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/_vendor/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/_vendor/six.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/pkg_resources/extern/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/pkg_resources/extern/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools-21.2.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools-21.2.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.26.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools-21.2.1.dist-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | https://pypi.python.org/packages/source/c/certifi/certifi-2016.2.28.tar.gz#md5=5d672aa766e1f773c75cfeccd02d3650 2 | https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2 3 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools-21.2.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools-21.2.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/archive_util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/archive_util.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/cli-arm-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/cli-arm-32.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | 'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop', 3 | 'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts', 4 | 'sdist', 'setopt', 'test', 'install_egg_info', 'install_scripts', 5 | 'register', 'bdist_wininst', 'upload_docs', 'upload', 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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/alias.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/alias.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/bdist_egg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/bdist_egg.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/bdist_rpm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/bdist_rpm.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/bdist_wininst.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/bdist_wininst.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/build_ext.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/build_ext.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/build_py.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/build_py.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/develop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/develop.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/easy_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/easy_install.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/egg_info.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/egg_info.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/install.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/install_egg_info.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/install_egg_info.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/install_lib.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/install_lib.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/install_scripts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/install_scripts.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/launcher manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/register.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/register.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/rotate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/rotate.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/saveopts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/saveopts.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/sdist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/sdist.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/setopt.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/setopt.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/test.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- 1 | import getpass 2 | from distutils.command import upload as orig 3 | 4 | 5 | class upload(orig.upload): 6 | """ 7 | Override default upload behavior to obtain password 8 | in a variety of different ways. 9 | """ 10 | 11 | def finalize_options(self): 12 | orig.upload.finalize_options(self) 13 | # Attempt to obtain password. Short circuit evaluation at the first 14 | # sign of success. 15 | self.password = ( 16 | self.password or 17 | self._load_password_from_keyring() or 18 | self._prompt_for_password() 19 | ) 20 | 21 | def _load_password_from_keyring(self): 22 | """ 23 | Attempt to load password from keyring. Suppress Exceptions. 24 | """ 25 | try: 26 | keyring = __import__('keyring') 27 | return keyring.get_password(self.repository, self.username) 28 | except Exception: 29 | pass 30 | 31 | def _prompt_for_password(self): 32 | """ 33 | Prompt for a password on the tty. Suppress Exceptions. 34 | """ 35 | try: 36 | return getpass.getpass() 37 | except (Exception, KeyboardInterrupt): 38 | pass 39 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/upload.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/upload.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/command/upload_docs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/command/upload_docs.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/depends.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/depends.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/dist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/dist.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/extension.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/extension.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- 1 | from pkg_resources.extern import VendorImporter 2 | 3 | 4 | names = 'six', 5 | VendorImporter(__name__, names, 'pkg_resources._vendor').install() 6 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/extern/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/extern/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/gui-arm-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/gui-arm-32.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- 1 | """ 2 | Launch the Python script on the command line after 3 | setuptools is bootstrapped via import. 4 | """ 5 | 6 | # Note that setuptools gets imported implicitly by the 7 | # invocation of this script using python -m setuptools.launch 8 | 9 | import tokenize 10 | import sys 11 | 12 | 13 | def run(): 14 | """ 15 | Run the script in sys.argv[1] as if it had 16 | been invoked naturally. 17 | """ 18 | __builtins__ 19 | script_name = sys.argv[1] 20 | namespace = dict( 21 | __file__ = script_name, 22 | __name__ = '__main__', 23 | __doc__ = None, 24 | ) 25 | sys.argv[:] = sys.argv[1:] 26 | 27 | open_ = getattr(tokenize, 'open', open) 28 | script = open_(script_name).read() 29 | norm_script = script.replace('\\r\\n', '\\n') 30 | code = compile(norm_script, script_name, 'exec') 31 | exec(code, namespace) 32 | 33 | 34 | if __name__ == '__main__': 35 | run() 36 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/launch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/launch.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/lib2to3_ex.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/lib2to3_ex.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/msvc9_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/msvc9_support.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/package_index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/package_index.pyc -------------------------------------------------------------------------------- /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 | try: 8 | from urllib.parse import splittag 9 | except ImportError: 10 | from urllib import splittag 11 | 12 | def strip_fragment(url): 13 | """ 14 | In `Python 8280 `_, Python 2.7 and 15 | later was patched to disregard the fragment when making URL requests. 16 | Do the same for Python 2.6 and earlier. 17 | """ 18 | url, fragment = splittag(url) 19 | return url 20 | 21 | if sys.version_info >= (2,7): 22 | strip_fragment = lambda x: x 23 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/py26compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/py26compat.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/py27compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/py27compat.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/py31compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/py31compat.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/sandbox.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/sandbox.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/site-patch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/site-patch.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/ssl_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/ssl_support.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- 1 | import unicodedata 2 | import sys 3 | 4 | from setuptools.extern import six 5 | 6 | # HFS Plus uses decomposed UTF-8 7 | def decompose(path): 8 | if isinstance(path, six.text_type): 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 | if isinstance(path, six.text_type): 26 | return path 27 | 28 | fs_enc = sys.getfilesystemencoding() or 'utf-8' 29 | candidates = fs_enc, 'utf-8' 30 | 31 | for enc in candidates: 32 | try: 33 | return path.decode(enc) 34 | except UnicodeDecodeError: 35 | continue 36 | 37 | 38 | def try_encode(string, enc): 39 | "turn unicode encoding into a functional routine" 40 | try: 41 | return string.encode(enc) 42 | except UnicodeEncodeError: 43 | return None 44 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/unicode_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/unicode_utils.pyc -------------------------------------------------------------------------------- /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) -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/utils.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | 3 | try: 4 | __version__ = pkg_resources.require('setuptools')[0].version 5 | except Exception: 6 | __version__ = 'unknown' 7 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/version.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/setuptools/windows_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/setuptools/windows_support.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel-0.29.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel-0.29.0.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- 1 | "wheel" copyright (c) 2012-2014 Daniel Holth and 2 | contributors. 3 | 4 | The MIT License 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a 7 | copy of this software and associated documentation files (the "Software"), 8 | to deal in the Software without restriction, including without limitation 9 | the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 | and/or sell copies of the Software, and to permit persons to whom the 11 | Software is furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included 14 | in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 | THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel-0.29.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel-0.29.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | wheel = wheel.tool:main 3 | 4 | [distutils.commands] 5 | bdist_wheel = wheel.bdist_wheel:bdist_wheel -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel-0.29.0.dist-info/metadata.json: -------------------------------------------------------------------------------- 1 | {"classifiers": ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "Programming Language :: Python", "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"], "extensions": {"python.commands": {"wrap_console": {"wheel": "wheel.tool:main"}}, "python.details": {"contacts": [{"email": "dholth@fastmail.fm", "name": "Daniel Holth", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst", "license": "LICENSE.txt"}, "project_urls": {"Home": "https://bitbucket.org/pypa/wheel/"}}, "python.exports": {"console_scripts": {"wheel": "wheel.tool:main"}, "distutils.commands": {"bdist_wheel": "wheel.bdist_wheel:bdist_wheel"}}}, "extras": ["faster-signatures", "signatures", "tool"], "generator": "bdist_wheel (0.29.0)", "keywords": ["wheel", "packaging"], "license": "MIT", "metadata_version": "2.0", "name": "wheel", "run_requires": [{"extra": "faster-signatures", "requires": ["ed25519ll"]}, {"extra": "signatures", "requires": ["keyring", "keyrings.alt"]}, {"environment": "python_version==\"2.6\"", "requires": ["argparse"]}, {"environment": "python_version==\"2.6\"", "extra": "signatures", "requires": ["importlib"]}, {"environment": "sys_platform!=\"win32\"", "extra": "signatures", "requires": ["pyxdg"]}], "summary": "A built-package format for Python.", "test_requires": [{"requires": ["coverage", "jsonschema", "pytest", "pytest-cov"]}], "version": "0.29.0"} -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel-0.29.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/__init__.py: -------------------------------------------------------------------------------- 1 | # __variables__ with double-quoted values will be available in setup.py: 2 | __version__ = "0.29.0" 3 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/__main__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Wheel command line tool (enable python -m wheel syntax) 3 | """ 4 | 5 | import sys 6 | 7 | def main(): # needed for console script 8 | if __package__ == '': 9 | # To be able to run 'python wheel-0.9.whl/wheel': 10 | import os.path 11 | path = os.path.dirname(os.path.dirname(__file__)) 12 | sys.path[0:0] = [path] 13 | import wheel.tool 14 | sys.exit(wheel.tool.main()) 15 | 16 | if __name__ == "__main__": 17 | sys.exit(main()) 18 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/__main__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/archive.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/archive.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/bdist_wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/bdist_wheel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/decorator.py: -------------------------------------------------------------------------------- 1 | # from Pyramid 2 | 3 | 4 | class reify(object): 5 | """Put the result of a method which uses this (non-data) 6 | descriptor decorator in the instance dict after the first call, 7 | effectively replacing the decorator with an instance variable. 8 | """ 9 | 10 | def __init__(self, wrapped): 11 | self.wrapped = wrapped 12 | self.__doc__ = wrapped.__doc__ 13 | 14 | def __get__(self, inst, objtype=None): 15 | if inst is None: 16 | return self 17 | val = self.wrapped(inst) 18 | setattr(inst, self.wrapped.__name__, val) 19 | return val 20 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/decorator.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/egg2wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/egg2wheel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/install.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/metadata.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/metadata.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/paths.py: -------------------------------------------------------------------------------- 1 | """ 2 | Installation paths. 3 | 4 | Map the .data/ subdirectory names to install paths. 5 | """ 6 | 7 | import os.path 8 | import sys 9 | import distutils.dist as dist 10 | import distutils.command.install as install 11 | 12 | def get_install_command(name): 13 | # late binding due to potential monkeypatching 14 | d = dist.Distribution({'name':name}) 15 | i = install.install(d) 16 | i.finalize_options() 17 | return i 18 | 19 | def get_install_paths(name): 20 | """ 21 | Return the (distutils) install paths for the named dist. 22 | 23 | A dict with ('purelib', 'platlib', 'headers', 'scripts', 'data') keys. 24 | """ 25 | paths = {} 26 | 27 | i = get_install_command(name) 28 | 29 | for key in install.SCHEME_KEYS: 30 | paths[key] = getattr(i, 'install_' + key) 31 | 32 | # pip uses a similar path as an alternative to the system's (read-only) 33 | # include directory: 34 | if hasattr(sys, 'real_prefix'): # virtualenv 35 | paths['headers'] = os.path.join(sys.prefix, 36 | 'include', 37 | 'site', 38 | 'python' + sys.version[:3], 39 | name) 40 | 41 | return paths 42 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/paths.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/paths.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/pep425tags.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/pep425tags.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/pkginfo.py: -------------------------------------------------------------------------------- 1 | """Tools for reading and writing PKG-INFO / METADATA without caring 2 | about the encoding.""" 3 | 4 | from email.parser import Parser 5 | 6 | try: 7 | unicode 8 | _PY3 = False 9 | except NameError: 10 | _PY3 = True 11 | 12 | if not _PY3: 13 | from email.generator import Generator 14 | 15 | def read_pkg_info_bytes(bytestr): 16 | return Parser().parsestr(bytestr) 17 | 18 | def read_pkg_info(path): 19 | with open(path, "r") as headers: 20 | message = Parser().parse(headers) 21 | return message 22 | 23 | def write_pkg_info(path, message): 24 | with open(path, 'w') as metadata: 25 | Generator(metadata, maxheaderlen=0).flatten(message) 26 | 27 | else: 28 | from email.generator import BytesGenerator 29 | def read_pkg_info_bytes(bytestr): 30 | headers = bytestr.decode(encoding="ascii", errors="surrogateescape") 31 | message = Parser().parsestr(headers) 32 | return message 33 | 34 | def read_pkg_info(path): 35 | with open(path, "r", 36 | encoding="ascii", 37 | errors="surrogateescape") as headers: 38 | message = Parser().parse(headers) 39 | return message 40 | 41 | def write_pkg_info(path, message): 42 | with open(path, "wb") as out: 43 | BytesGenerator(out, maxheaderlen=0).flatten(message) 44 | 45 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/pkginfo.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/pkginfo.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/signatures/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/signatures/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/signatures/djbec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/signatures/djbec.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/signatures/ed25519py.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/signatures/ed25519py.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/signatures/keys.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/signatures/keys.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/complex-dist/complexdist/__init__.py: -------------------------------------------------------------------------------- 1 | def main(): 2 | return 3 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/complex-dist/complexdist/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/complex-dist/complexdist/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/complex-dist/setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup 2 | 3 | try: 4 | unicode 5 | def u8(s): 6 | return s.decode('unicode-escape') 7 | except NameError: 8 | def u8(s): 9 | return s 10 | 11 | setup(name='complex-dist', 12 | version='0.1', 13 | description=u8('Another testing distribution \N{SNOWMAN}'), 14 | long_description=u8('Another testing distribution \N{SNOWMAN}'), 15 | author="Illustrious Author", 16 | author_email="illustrious@example.org", 17 | url="http://example.org/exemplary", 18 | packages=['complexdist'], 19 | setup_requires=["wheel", "setuptools"], 20 | install_requires=["quux", "splort"], 21 | extras_require={'simple':['simple.dist']}, 22 | tests_require=["foo", "bar>=10.0.0"], 23 | entry_points={ 24 | 'console_scripts': [ 25 | 'complex-dist=complexdist:main', 26 | 'complex-dist2=complexdist:main', 27 | ], 28 | }, 29 | ) 30 | 31 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/complex-dist/setup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/complex-dist/setup.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/headers.dist/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/headers.dist/header.h -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/headers.dist/headersdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/headers.dist/headersdist.py -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/headers.dist/headersdist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/headers.dist/headersdist.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/headers.dist/setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup 2 | 3 | try: 4 | unicode 5 | def u8(s): 6 | return s.decode('unicode-escape').encode('utf-8') 7 | except NameError: 8 | def u8(s): 9 | return s.encode('utf-8') 10 | 11 | setup(name='headers.dist', 12 | version='0.1', 13 | description=u8('A distribution with headers'), 14 | headers=['header.h'] 15 | ) 16 | 17 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/headers.dist/setup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/headers.dist/setup.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/simple.dist/setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup 2 | 3 | try: 4 | unicode 5 | def u8(s): 6 | return s.decode('unicode-escape').encode('utf-8') 7 | except NameError: 8 | def u8(s): 9 | return s.encode('utf-8') 10 | 11 | setup(name='simple.dist', 12 | version='0.1', 13 | description=u8('A testing distribution \N{SNOWMAN}'), 14 | packages=['simpledist'], 15 | extras_require={'voting': ['beaglevote']}, 16 | ) 17 | 18 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/simple.dist/setup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/simple.dist/setup.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/simple.dist/simpledist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/simple.dist/simpledist/__init__.py -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/simple.dist/simpledist/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/simple.dist/simpledist/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test-1.0-py2.py3-none-win32.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/test-1.0-py2.py3-none-win32.whl -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_basic.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/test_basic.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/test_install.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_keys.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/test_keys.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_paths.py: -------------------------------------------------------------------------------- 1 | import wheel.paths 2 | from distutils.command.install import SCHEME_KEYS 3 | 4 | def test_path(): 5 | d = wheel.paths.get_install_paths('wheel') 6 | assert len(d) == len(SCHEME_KEYS) 7 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_paths.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/test_paths.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_ranking.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/test_ranking.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_signatures.py: -------------------------------------------------------------------------------- 1 | from wheel import signatures 2 | from wheel.signatures import djbec, ed25519py 3 | from wheel.util import binary 4 | 5 | def test_getlib(): 6 | signatures.get_ed25519ll() 7 | 8 | def test_djbec(): 9 | djbec.dsa_test() 10 | djbec.dh_test() 11 | 12 | def test_ed25519py(): 13 | kp0 = ed25519py.crypto_sign_keypair(binary(' '*32)) 14 | kp = ed25519py.crypto_sign_keypair() 15 | 16 | signed = ed25519py.crypto_sign(binary('test'), kp.sk) 17 | 18 | ed25519py.crypto_sign_open(signed, kp.vk) 19 | 20 | try: 21 | ed25519py.crypto_sign_open(signed, kp0.vk) 22 | except ValueError: 23 | pass 24 | else: 25 | raise Exception("Expected ValueError") 26 | 27 | try: 28 | ed25519py.crypto_sign_keypair(binary(' '*33)) 29 | except ValueError: 30 | pass 31 | else: 32 | raise Exception("Expected ValueError") 33 | 34 | try: 35 | ed25519py.crypto_sign(binary(''), binary(' ')*31) 36 | except ValueError: 37 | pass 38 | else: 39 | raise Exception("Expected ValueError") 40 | 41 | try: 42 | ed25519py.crypto_sign_open(binary(''), binary(' ')*31) 43 | except ValueError: 44 | pass 45 | else: 46 | raise Exception("Expected ValueError") 47 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_signatures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/test_signatures.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_tagopt.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/test_tagopt.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_tool.py: -------------------------------------------------------------------------------- 1 | from .. import tool 2 | 3 | def test_keygen(): 4 | def get_keyring(): 5 | WheelKeys, keyring = tool.get_keyring() 6 | 7 | class WheelKeysTest(WheelKeys): 8 | def save(self): 9 | pass 10 | 11 | class keyringTest: 12 | @classmethod 13 | def get_keyring(cls): 14 | class keyringTest2: 15 | pw = None 16 | def set_password(self, a, b, c): 17 | self.pw = c 18 | def get_password(self, a, b): 19 | return self.pw 20 | 21 | return keyringTest2() 22 | 23 | return WheelKeysTest, keyringTest 24 | 25 | tool.keygen(get_keyring=get_keyring) 26 | -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_tool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/test_tool.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/test/test_wheelfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/test/test_wheelfile.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/tool/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/tool/__init__.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/util.pyc -------------------------------------------------------------------------------- /lib/python2.7/site-packages/wheel/wininst2wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site-packages/wheel/wininst2wheel.pyc -------------------------------------------------------------------------------- /lib/python2.7/site.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/site.pyc -------------------------------------------------------------------------------- /lib/python2.7/sre.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre.py -------------------------------------------------------------------------------- /lib/python2.7/sre_compile.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_compile.py -------------------------------------------------------------------------------- /lib/python2.7/sre_compile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/sre_compile.pyc -------------------------------------------------------------------------------- /lib/python2.7/sre_constants.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_constants.py -------------------------------------------------------------------------------- /lib/python2.7/sre_constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/sre_constants.pyc -------------------------------------------------------------------------------- /lib/python2.7/sre_parse.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_parse.py -------------------------------------------------------------------------------- /lib/python2.7/sre_parse.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/sre_parse.pyc -------------------------------------------------------------------------------- /lib/python2.7/stat.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/stat.py -------------------------------------------------------------------------------- /lib/python2.7/stat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/stat.pyc -------------------------------------------------------------------------------- /lib/python2.7/types.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/types.py -------------------------------------------------------------------------------- /lib/python2.7/types.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/types.pyc -------------------------------------------------------------------------------- /lib/python2.7/warnings.py: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/warnings.py -------------------------------------------------------------------------------- /lib/python2.7/warnings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_Artist/3038c06c2e389b9c919c881c9a169efe2fd7810e/lib/python2.7/warnings.pyc --------------------------------------------------------------------------------