├── .idea ├── .gitignore ├── CommentsAnalyse.iml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml └── modules.xml ├── Analysis ├── AnalyseBySnow.py ├── __pycache__ │ └── AnalyseBySnow.cpython-36.pyc ├── neg.txt ├── pos.txt └── test.py ├── Cidian ├── BosonNLP_sentiment_score.txt ├── cidian.py ├── degree.txt ├── notDic.txt └── stopwords.txt ├── CommentData ├── csvData.csv ├── 手机.csv ├── 洗衣粉.csv ├── 测试.csv ├── 牙刷.csv ├── 衬衫.csv ├── 足球.csv └── 运动鞋.csv ├── DbTools ├── 1.png ├── Chinese_stopwords.txt ├── CommentCloud.py ├── CsvTool.py ├── MySQLTool.py ├── Test.py ├── __pycache__ │ ├── CommentCloud.cpython-36.pyc │ ├── CsvTool.cpython-36.pyc │ └── MySQLTool.cpython-36.pyc ├── bg.jpg └── wordc.jpg ├── GUI ├── Chinese_stopwords.txt ├── MainFrame.py ├── MyThread.py ├── Test.py ├── __pycache__ │ └── MyThread.cpython-36.pyc ├── bg.jpg ├── bgbutton.png ├── bgwin.jpg ├── logo.ico ├── test.csv └── wordc.jpg ├── JingDong ├── JdComments.py ├── JdDetail.py ├── JdPriceUp.py ├── Test.py ├── __pycache__ │ └── JdDetail.cpython-36.pyc └── ips.txt ├── README.md ├── TaoBao ├── 1.png ├── TaobaoDetail.py ├── Test.py ├── __pycache__ │ └── TaobaoDetail.cpython-36.pyc ├── tb_comments.txt ├── wc.jpg └── wordc.jpg └── venv ├── Lib ├── site-packages │ ├── __pycache__ │ │ └── easy_install.cpython-36.pyc │ ├── easy_install.py │ ├── pip-19.0.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── __main__.cpython-36.pyc │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── build_env.cpython-36.pyc │ │ │ │ ├── cache.cpython-36.pyc │ │ │ │ ├── configuration.cpython-36.pyc │ │ │ │ ├── download.cpython-36.pyc │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ ├── index.cpython-36.pyc │ │ │ │ ├── locations.cpython-36.pyc │ │ │ │ ├── pep425tags.cpython-36.pyc │ │ │ │ ├── pyproject.cpython-36.pyc │ │ │ │ ├── resolve.cpython-36.pyc │ │ │ │ └── wheel.cpython-36.pyc │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── autocompletion.cpython-36.pyc │ │ │ │ │ ├── base_command.cpython-36.pyc │ │ │ │ │ ├── cmdoptions.cpython-36.pyc │ │ │ │ │ ├── main_parser.cpython-36.pyc │ │ │ │ │ ├── parser.cpython-36.pyc │ │ │ │ │ └── status_codes.cpython-36.pyc │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── check.cpython-36.pyc │ │ │ │ │ ├── completion.cpython-36.pyc │ │ │ │ │ ├── configuration.cpython-36.pyc │ │ │ │ │ ├── download.cpython-36.pyc │ │ │ │ │ ├── freeze.cpython-36.pyc │ │ │ │ │ ├── hash.cpython-36.pyc │ │ │ │ │ ├── help.cpython-36.pyc │ │ │ │ │ ├── install.cpython-36.pyc │ │ │ │ │ ├── list.cpython-36.pyc │ │ │ │ │ ├── search.cpython-36.pyc │ │ │ │ │ ├── show.cpython-36.pyc │ │ │ │ │ ├── uninstall.cpython-36.pyc │ │ │ │ │ └── wheel.cpython-36.pyc │ │ │ │ ├── check.py │ │ │ │ ├── completion.py │ │ │ │ ├── configuration.py │ │ │ │ ├── download.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hash.py │ │ │ │ ├── help.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── download.py │ │ │ ├── exceptions.py │ │ │ ├── index.py │ │ │ ├── locations.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── candidate.cpython-36.pyc │ │ │ │ │ ├── format_control.cpython-36.pyc │ │ │ │ │ ├── index.cpython-36.pyc │ │ │ │ │ └── link.cpython-36.pyc │ │ │ │ ├── candidate.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ └── link.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── check.cpython-36.pyc │ │ │ │ │ ├── freeze.cpython-36.pyc │ │ │ │ │ └── prepare.cpython-36.pyc │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ └── prepare.py │ │ │ ├── pep425tags.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── constructors.cpython-36.pyc │ │ │ │ │ ├── req_file.cpython-36.pyc │ │ │ │ │ ├── req_install.cpython-36.pyc │ │ │ │ │ ├── req_set.cpython-36.pyc │ │ │ │ │ ├── req_tracker.cpython-36.pyc │ │ │ │ │ └── req_uninstall.cpython-36.pyc │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolve.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── appdirs.cpython-36.pyc │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ ├── deprecation.cpython-36.pyc │ │ │ │ │ ├── encoding.cpython-36.pyc │ │ │ │ │ ├── filesystem.cpython-36.pyc │ │ │ │ │ ├── glibc.cpython-36.pyc │ │ │ │ │ ├── hashes.cpython-36.pyc │ │ │ │ │ ├── logging.cpython-36.pyc │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ │ ├── outdated.cpython-36.pyc │ │ │ │ │ ├── packaging.cpython-36.pyc │ │ │ │ │ ├── setuptools_build.cpython-36.pyc │ │ │ │ │ ├── temp_dir.cpython-36.pyc │ │ │ │ │ ├── typing.cpython-36.pyc │ │ │ │ │ └── ui.cpython-36.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── encoding.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── glibc.py │ │ │ │ ├── hashes.py │ │ │ │ ├── logging.py │ │ │ │ ├── misc.py │ │ │ │ ├── models.py │ │ │ │ ├── outdated.py │ │ │ │ ├── packaging.py │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── temp_dir.py │ │ │ │ ├── typing.py │ │ │ │ └── ui.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── bazaar.cpython-36.pyc │ │ │ │ │ ├── git.cpython-36.pyc │ │ │ │ │ ├── mercurial.cpython-36.pyc │ │ │ │ │ └── subversion.cpython-36.pyc │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ └── subversion.py │ │ │ └── wheel.py │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── appdirs.cpython-36.pyc │ │ │ ├── distro.cpython-36.pyc │ │ │ ├── ipaddress.cpython-36.pyc │ │ │ ├── pyparsing.cpython-36.pyc │ │ │ ├── retrying.cpython-36.pyc │ │ │ └── six.cpython-36.pyc │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _cmd.cpython-36.pyc │ │ │ │ ├── adapter.cpython-36.pyc │ │ │ │ ├── cache.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── controller.cpython-36.pyc │ │ │ │ ├── filewrapper.cpython-36.pyc │ │ │ │ ├── heuristics.cpython-36.pyc │ │ │ │ ├── serialize.cpython-36.pyc │ │ │ │ └── wrapper.cpython-36.pyc │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── file_cache.cpython-36.pyc │ │ │ │ │ └── redis_cache.cpython-36.pyc │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __main__.cpython-36.pyc │ │ │ │ └── core.cpython-36.pyc │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── big5freq.cpython-36.pyc │ │ │ │ ├── big5prober.cpython-36.pyc │ │ │ │ ├── chardistribution.cpython-36.pyc │ │ │ │ ├── charsetgroupprober.cpython-36.pyc │ │ │ │ ├── charsetprober.cpython-36.pyc │ │ │ │ ├── codingstatemachine.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── cp949prober.cpython-36.pyc │ │ │ │ ├── enums.cpython-36.pyc │ │ │ │ ├── escprober.cpython-36.pyc │ │ │ │ ├── escsm.cpython-36.pyc │ │ │ │ ├── eucjpprober.cpython-36.pyc │ │ │ │ ├── euckrfreq.cpython-36.pyc │ │ │ │ ├── euckrprober.cpython-36.pyc │ │ │ │ ├── euctwfreq.cpython-36.pyc │ │ │ │ ├── euctwprober.cpython-36.pyc │ │ │ │ ├── gb2312freq.cpython-36.pyc │ │ │ │ ├── gb2312prober.cpython-36.pyc │ │ │ │ ├── hebrewprober.cpython-36.pyc │ │ │ │ ├── jisfreq.cpython-36.pyc │ │ │ │ ├── jpcntx.cpython-36.pyc │ │ │ │ ├── langbulgarianmodel.cpython-36.pyc │ │ │ │ ├── langcyrillicmodel.cpython-36.pyc │ │ │ │ ├── langgreekmodel.cpython-36.pyc │ │ │ │ ├── langhebrewmodel.cpython-36.pyc │ │ │ │ ├── langhungarianmodel.cpython-36.pyc │ │ │ │ ├── langthaimodel.cpython-36.pyc │ │ │ │ ├── langturkishmodel.cpython-36.pyc │ │ │ │ ├── latin1prober.cpython-36.pyc │ │ │ │ ├── mbcharsetprober.cpython-36.pyc │ │ │ │ ├── mbcsgroupprober.cpython-36.pyc │ │ │ │ ├── mbcssm.cpython-36.pyc │ │ │ │ ├── sbcharsetprober.cpython-36.pyc │ │ │ │ ├── sbcsgroupprober.cpython-36.pyc │ │ │ │ ├── sjisprober.cpython-36.pyc │ │ │ │ ├── universaldetector.cpython-36.pyc │ │ │ │ ├── utf8prober.cpython-36.pyc │ │ │ │ └── version.cpython-36.pyc │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── chardetect.cpython-36.pyc │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── ansi.cpython-36.pyc │ │ │ │ ├── ansitowin32.cpython-36.pyc │ │ │ │ ├── initialise.cpython-36.pyc │ │ │ │ ├── win32.cpython-36.pyc │ │ │ │ └── winterm.cpython-36.pyc │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── database.cpython-36.pyc │ │ │ │ ├── index.cpython-36.pyc │ │ │ │ ├── locators.cpython-36.pyc │ │ │ │ ├── manifest.cpython-36.pyc │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ ├── resources.cpython-36.pyc │ │ │ │ ├── scripts.cpython-36.pyc │ │ │ │ ├── util.cpython-36.pyc │ │ │ │ ├── version.cpython-36.pyc │ │ │ │ └── wheel.cpython-36.pyc │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ ├── shutil.cpython-36.pyc │ │ │ │ │ ├── sysconfig.cpython-36.pyc │ │ │ │ │ └── tarfile.cpython-36.pyc │ │ │ │ ├── misc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ └── tarfile.py │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ │ ├── distro.py │ │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _ihatexml.cpython-36.pyc │ │ │ │ ├── _inputstream.cpython-36.pyc │ │ │ │ ├── _tokenizer.cpython-36.pyc │ │ │ │ ├── _utils.cpython-36.pyc │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ ├── html5parser.cpython-36.pyc │ │ │ │ └── serializer.cpython-36.pyc │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── _base.cpython-36.pyc │ │ │ │ │ ├── datrie.cpython-36.pyc │ │ │ │ │ └── py.cpython-36.pyc │ │ │ │ ├── _base.py │ │ │ │ ├── datrie.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── alphabeticalattributes.cpython-36.pyc │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ ├── inject_meta_charset.cpython-36.pyc │ │ │ │ │ ├── lint.cpython-36.pyc │ │ │ │ │ ├── optionaltags.cpython-36.pyc │ │ │ │ │ ├── sanitizer.cpython-36.pyc │ │ │ │ │ └── whitespace.cpython-36.pyc │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── genshi.cpython-36.pyc │ │ │ │ │ └── sax.cpython-36.pyc │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ ├── dom.cpython-36.pyc │ │ │ │ │ ├── etree.cpython-36.pyc │ │ │ │ │ └── etree_lxml.cpython-36.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ ├── dom.cpython-36.pyc │ │ │ │ ├── etree.cpython-36.pyc │ │ │ │ ├── etree_lxml.cpython-36.pyc │ │ │ │ └── genshi.cpython-36.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── codec.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── core.cpython-36.pyc │ │ │ │ ├── idnadata.cpython-36.pyc │ │ │ │ ├── intranges.cpython-36.pyc │ │ │ │ ├── package_data.cpython-36.pyc │ │ │ │ └── uts46data.cpython-36.pyc │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ │ ├── ipaddress.py │ │ │ ├── lockfile │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── linklockfile.cpython-36.pyc │ │ │ │ ├── mkdirlockfile.cpython-36.pyc │ │ │ │ ├── pidlockfile.cpython-36.pyc │ │ │ │ ├── sqlitelockfile.cpython-36.pyc │ │ │ │ └── symlinklockfile.cpython-36.pyc │ │ │ ├── linklockfile.py │ │ │ ├── mkdirlockfile.py │ │ │ ├── pidlockfile.py │ │ │ ├── sqlitelockfile.py │ │ │ └── symlinklockfile.py │ │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _version.cpython-36.pyc │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ └── fallback.cpython-36.pyc │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _compat.cpython-36.pyc │ │ │ │ ├── _structures.cpython-36.pyc │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ ├── requirements.cpython-36.pyc │ │ │ │ ├── specifiers.cpython-36.pyc │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ └── version.cpython-36.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _in_process.cpython-36.pyc │ │ │ │ ├── build.cpython-36.pyc │ │ │ │ ├── check.cpython-36.pyc │ │ │ │ ├── colorlog.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── envbuild.cpython-36.pyc │ │ │ │ └── wrappers.cpython-36.pyc │ │ │ ├── _in_process.py │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── envbuild.py │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── py31compat.cpython-36.pyc │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── bar.cpython-36.pyc │ │ │ │ ├── counter.cpython-36.pyc │ │ │ │ ├── helpers.cpython-36.pyc │ │ │ │ └── spinner.cpython-36.pyc │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ ├── helpers.py │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── pytoml │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── core.cpython-36.pyc │ │ │ │ ├── parser.cpython-36.pyc │ │ │ │ ├── test.cpython-36.pyc │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ └── writer.cpython-36.pyc │ │ │ ├── core.py │ │ │ ├── parser.py │ │ │ ├── test.py │ │ │ ├── utils.py │ │ │ └── writer.py │ │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __version__.cpython-36.pyc │ │ │ │ ├── _internal_utils.cpython-36.pyc │ │ │ │ ├── adapters.cpython-36.pyc │ │ │ │ ├── api.cpython-36.pyc │ │ │ │ ├── auth.cpython-36.pyc │ │ │ │ ├── certs.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ ├── help.cpython-36.pyc │ │ │ │ ├── hooks.cpython-36.pyc │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ ├── packages.cpython-36.pyc │ │ │ │ ├── sessions.cpython-36.pyc │ │ │ │ ├── status_codes.cpython-36.pyc │ │ │ │ ├── structures.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ │ ├── retrying.py │ │ │ ├── six.py │ │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _collections.cpython-36.pyc │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ ├── connectionpool.cpython-36.pyc │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ ├── fields.cpython-36.pyc │ │ │ │ ├── filepost.cpython-36.pyc │ │ │ │ ├── poolmanager.cpython-36.pyc │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ └── response.cpython-36.pyc │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── _appengine_environ.cpython-36.pyc │ │ │ │ │ ├── appengine.cpython-36.pyc │ │ │ │ │ ├── ntlmpool.cpython-36.pyc │ │ │ │ │ ├── pyopenssl.cpython-36.pyc │ │ │ │ │ ├── securetransport.cpython-36.pyc │ │ │ │ │ └── socks.cpython-36.pyc │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── bindings.cpython-36.pyc │ │ │ │ │ │ └── low_level.cpython-36.pyc │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── makefile.cpython-36.pyc │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── _implementation.cpython-36.pyc │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ ├── queue.cpython-36.pyc │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ ├── retry.cpython-36.pyc │ │ │ │ ├── ssl_.cpython-36.pyc │ │ │ │ ├── timeout.cpython-36.pyc │ │ │ │ ├── url.cpython-36.pyc │ │ │ │ └── wait.cpython-36.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── labels.cpython-36.pyc │ │ │ ├── mklabels.cpython-36.pyc │ │ │ ├── tests.cpython-36.pyc │ │ │ └── x_user_defined.cpython-36.pyc │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── py31compat.cpython-36.pyc │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── appdirs.cpython-36.pyc │ │ │ │ ├── pyparsing.cpython-36.pyc │ │ │ │ └── six.cpython-36.pyc │ │ │ ├── appdirs.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-36.pyc │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── _compat.cpython-36.pyc │ │ │ │ │ ├── _structures.cpython-36.pyc │ │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ │ ├── requirements.cpython-36.pyc │ │ │ │ │ ├── specifiers.cpython-36.pyc │ │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ │ └── version.cpython-36.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ └── py31compat.py │ ├── setuptools-40.8.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── top_level.txt │ │ └── zip-safe │ └── setuptools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── _deprecation_warning.cpython-36.pyc │ │ ├── archive_util.cpython-36.pyc │ │ ├── build_meta.cpython-36.pyc │ │ ├── config.cpython-36.pyc │ │ ├── dep_util.cpython-36.pyc │ │ ├── depends.cpython-36.pyc │ │ ├── dist.cpython-36.pyc │ │ ├── extension.cpython-36.pyc │ │ ├── glibc.cpython-36.pyc │ │ ├── glob.cpython-36.pyc │ │ ├── launch.cpython-36.pyc │ │ ├── lib2to3_ex.cpython-36.pyc │ │ ├── monkey.cpython-36.pyc │ │ ├── msvc.cpython-36.pyc │ │ ├── namespaces.cpython-36.pyc │ │ ├── package_index.cpython-36.pyc │ │ ├── pep425tags.cpython-36.pyc │ │ ├── py27compat.cpython-36.pyc │ │ ├── py31compat.cpython-36.pyc │ │ ├── py33compat.cpython-36.pyc │ │ ├── sandbox.cpython-36.pyc │ │ ├── site-patch.cpython-36.pyc │ │ ├── ssl_support.cpython-36.pyc │ │ ├── unicode_utils.cpython-36.pyc │ │ ├── version.cpython-36.pyc │ │ ├── wheel.cpython-36.pyc │ │ └── windows_support.cpython-36.pyc │ │ ├── _deprecation_warning.py │ │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── pyparsing.cpython-36.pyc │ │ │ └── six.cpython-36.pyc │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _compat.cpython-36.pyc │ │ │ │ ├── _structures.cpython-36.pyc │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ ├── requirements.cpython-36.pyc │ │ │ │ ├── specifiers.cpython-36.pyc │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ └── version.cpython-36.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pyparsing.py │ │ └── six.py │ │ ├── archive_util.py │ │ ├── build_meta.py │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── cli.exe │ │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── alias.cpython-36.pyc │ │ │ ├── bdist_egg.cpython-36.pyc │ │ │ ├── bdist_rpm.cpython-36.pyc │ │ │ ├── bdist_wininst.cpython-36.pyc │ │ │ ├── build_clib.cpython-36.pyc │ │ │ ├── build_ext.cpython-36.pyc │ │ │ ├── build_py.cpython-36.pyc │ │ │ ├── develop.cpython-36.pyc │ │ │ ├── dist_info.cpython-36.pyc │ │ │ ├── easy_install.cpython-36.pyc │ │ │ ├── egg_info.cpython-36.pyc │ │ │ ├── install.cpython-36.pyc │ │ │ ├── install_egg_info.cpython-36.pyc │ │ │ ├── install_lib.cpython-36.pyc │ │ │ ├── install_scripts.cpython-36.pyc │ │ │ ├── py36compat.cpython-36.pyc │ │ │ ├── register.cpython-36.pyc │ │ │ ├── rotate.cpython-36.pyc │ │ │ ├── saveopts.cpython-36.pyc │ │ │ ├── sdist.cpython-36.pyc │ │ │ ├── setopt.cpython-36.pyc │ │ │ ├── test.cpython-36.pyc │ │ │ ├── upload.cpython-36.pyc │ │ │ └── upload_docs.cpython-36.pyc │ │ ├── alias.py │ │ ├── bdist_egg.py │ │ ├── bdist_rpm.py │ │ ├── bdist_wininst.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── develop.py │ │ ├── dist_info.py │ │ ├── easy_install.py │ │ ├── egg_info.py │ │ ├── install.py │ │ ├── install_egg_info.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── launcher manifest.xml │ │ ├── py36compat.py │ │ ├── register.py │ │ ├── rotate.py │ │ ├── saveopts.py │ │ ├── sdist.py │ │ ├── setopt.py │ │ ├── test.py │ │ ├── upload.py │ │ └── upload_docs.py │ │ ├── config.py │ │ ├── dep_util.py │ │ ├── depends.py │ │ ├── dist.py │ │ ├── extension.py │ │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ ├── glibc.py │ │ ├── glob.py │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── gui.exe │ │ ├── launch.py │ │ ├── lib2to3_ex.py │ │ ├── monkey.py │ │ ├── msvc.py │ │ ├── namespaces.py │ │ ├── package_index.py │ │ ├── pep425tags.py │ │ ├── py27compat.py │ │ ├── py31compat.py │ │ ├── py33compat.py │ │ ├── sandbox.py │ │ ├── script (dev).tmpl │ │ ├── script.tmpl │ │ ├── site-patch.py │ │ ├── ssl_support.py │ │ ├── unicode_utils.py │ │ ├── version.py │ │ ├── wheel.py │ │ └── windows_support.py └── tcl8.6 │ └── init.tcl ├── Scripts ├── Activate.ps1 ├── _asyncio.pyd ├── _bz2.pyd ├── _ctypes.pyd ├── _ctypes_test.pyd ├── _decimal.pyd ├── _distutils_findvs.pyd ├── _elementtree.pyd ├── _hashlib.pyd ├── _lzma.pyd ├── _msi.pyd ├── _multiprocessing.pyd ├── _overlapped.pyd ├── _socket.pyd ├── _sqlite3.pyd ├── _ssl.pyd ├── _testbuffer.pyd ├── _testcapi.pyd ├── _testconsole.pyd ├── _testimportmultiple.pyd ├── _testmultiphase.pyd ├── _tkinter.pyd ├── activate ├── activate.bat ├── deactivate.bat ├── easy_install-3.6.exe ├── easy_install.exe ├── pip.exe ├── pip3.6.exe ├── pip3.exe ├── pyexpat.pyd ├── python.exe ├── python3.dll ├── python36.dll ├── pythonw.exe ├── select.pyd ├── sqlite3.dll ├── tcl86t.dll ├── tk86t.dll ├── unicodedata.pyd ├── vcruntime140.dll └── winsound.pyd └── pyvenv.cfg /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /.idea/CommentsAnalyse.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Analysis/__pycache__/AnalyseBySnow.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/Analysis/__pycache__/AnalyseBySnow.cpython-36.pyc -------------------------------------------------------------------------------- /Analysis/test.py: -------------------------------------------------------------------------------- 1 | from snownlp import SnowNLP 2 | p = SnowNLP(u'布料还是不错的') 3 | print(p.sentiments) -------------------------------------------------------------------------------- /Cidian/degree.txt: -------------------------------------------------------------------------------- 1 | 没错,3 2 | 超,5 3 | 超级,5 4 | 倍加,5 5 | 绝顶,5 6 | 绝对,5 7 | 无比,5 8 | 何等,5 9 | 最,5 10 | 最为,5 11 | 顶,5 12 | 极,5 13 | 极其,5 14 | 极端,5 15 | 极度,5 16 | 极为,5 17 | 极力,5 18 | 格外,5 19 | 分外,5 20 | 忒,5 21 | 较,5 22 | 较比,3 23 | 较为,3 24 | 尽,5 25 | 多,5 26 | 大,5 27 | 强,5 28 | 太,5 29 | 特,5 30 | 特别,5 31 | 尤其,5 32 | 尤为,5 33 | 很,5 34 | 蛮,5 35 | 非常,5 36 | 十分,5 37 | 十足,5 38 | 更,5 39 | 更加,5 40 | 更其,5 41 | 更为,5 42 | 越,5 43 | 越发,5 44 | 越加,5 45 | 越来越,3 46 | 越是,2 47 | 这般,2 48 | 这样,2 49 | 足,5 50 | 足足,5 51 | 过于,5 52 | 完全,5 53 | 甚为,5 54 | 颇,5 55 | 挺,3 56 | 还,2 57 | 还是,2 58 | 仍然,2 59 | 仍旧,2 60 | 相当,2 61 | 愈,5 62 | 愈加,5 63 | 愈来愈,3 64 | 愈益,5 65 | 远远,5 66 | 进一步,3 67 | 一点也,5 68 | 一点都,5 69 | 决非不,3 70 | 并非不,3 71 | 不是不,3 72 | 不能不,3 73 | 不会不,3 74 | 不可不,3 75 | 不要不,3 76 | 不得不,3 77 | 没有不,3 78 | 无不,3 79 | 不无,3 -------------------------------------------------------------------------------- /Cidian/notDic.txt: -------------------------------------------------------------------------------- 1 | 不大 2 | 不丁点儿 3 | 不甚 4 | 不怎么 5 | 聊 6 | 没怎么 7 | 不可以 8 | 怎么不 9 | 几乎不 10 | 从来不 11 | 从不 12 | 不用 13 | 不曾 14 | 不该 15 | 不必 16 | 不会 17 | 不好 18 | 不能 19 | 很少 20 | 极少 21 | 没有 22 | 不是 23 | 难以 24 | 放下 25 | 扼杀 26 | 终止 27 | 停止 28 | 放弃 29 | 反对 30 | 缺乏 31 | 缺少 32 | 不 33 | 甭 34 | 勿 35 | 别 36 | 未 37 | 反 38 | 没 39 | 否 40 | 木有 41 | 非 42 | 无 43 | 请勿 44 | 无须 45 | 并非 46 | 毫无 47 | 决不 48 | 休想 49 | 永不 50 | 不要 51 | 未尝 52 | 未曾 53 | 毋 54 | 莫 55 | 从未 56 | 从未有过 57 | 尚未 58 | 一无 59 | 并未 60 | 尚无 61 | 从没 62 | 绝非 63 | 远非 64 | 切莫 65 | 绝不 66 | 毫不 67 | 禁止 68 | 忌 69 | 拒绝 70 | 杜绝 71 | 弗 72 | -------------------------------------------------------------------------------- /CommentData/测试.csv: -------------------------------------------------------------------------------- 1 | comment,score 2 | fafa,4 3 | fagada,5 4 | -------------------------------------------------------------------------------- /DbTools/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/DbTools/1.png -------------------------------------------------------------------------------- /DbTools/__pycache__/CommentCloud.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/DbTools/__pycache__/CommentCloud.cpython-36.pyc -------------------------------------------------------------------------------- /DbTools/__pycache__/CsvTool.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/DbTools/__pycache__/CsvTool.cpython-36.pyc -------------------------------------------------------------------------------- /DbTools/__pycache__/MySQLTool.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/DbTools/__pycache__/MySQLTool.cpython-36.pyc -------------------------------------------------------------------------------- /DbTools/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/DbTools/bg.jpg -------------------------------------------------------------------------------- /DbTools/wordc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/DbTools/wordc.jpg -------------------------------------------------------------------------------- /GUI/MyThread.py: -------------------------------------------------------------------------------- 1 | import threading 2 | class MyThread(threading.Thread): 3 | def __init__(self, func, args, name=''): 4 | threading.Thread.__init__(self) 5 | self.name = name 6 | self.func = func 7 | self.args = args 8 | self.result = self.func(*self.args) 9 | 10 | def get_result(self): 11 | try: 12 | return self.result 13 | except Exception: 14 | return None -------------------------------------------------------------------------------- /GUI/Test.py: -------------------------------------------------------------------------------- 1 | import re 2 | import emoji 3 | link = "https://detail.tmall.com/item.htm?spm=a1z10.1-b-s.w20166435-22830699636.2.8b5a75973Eahwi&id=613832405367&scene=taobao_shop&sku_properties=10004:7195672376;5919063:6536025" 4 | res = re.search('(\d*?)&scene', link) 5 | print(res.group(1)) 6 | str = '女生用电脑其他不太懂,颜值至上!😁长得很漂亮无限接近macbook,价格还便宜很多,很满意哦!屏幕清晰度很高,大小也刚刚好,完美!' 7 | l = emoji.demojize(str) 8 | print(l) -------------------------------------------------------------------------------- /GUI/__pycache__/MyThread.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/GUI/__pycache__/MyThread.cpython-36.pyc -------------------------------------------------------------------------------- /GUI/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/GUI/bg.jpg -------------------------------------------------------------------------------- /GUI/bgbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/GUI/bgbutton.png -------------------------------------------------------------------------------- /GUI/bgwin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/GUI/bgwin.jpg -------------------------------------------------------------------------------- /GUI/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/GUI/logo.ico -------------------------------------------------------------------------------- /GUI/wordc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/GUI/wordc.jpg -------------------------------------------------------------------------------- /JingDong/__pycache__/JdDetail.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/JingDong/__pycache__/JdDetail.cpython-36.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GraduationProject 2 | ### 该项目主要分为两个部分,一部分为网络爬虫,另一部分为文本情感分析。网络爬虫主要爬取了京东以及淘宝的评论数据,爬取京东评论采用了selenium,淘宝的话反爬虫措施确实比较到位,目前只能根据已有的评论链接进行爬取。文本情感分析采用了情感词典和SnowNLP两种方式,当然SnowNLP的准确率和召回率较高。最后使用tkinter做图形界面将二者的逻辑串联起来,即用户输入一个京东商品的链接,软件解析链接并爬取评论,将评论显示在表格中,并通过词云展示给用户;同时,SnowNLP分析所有评论,将好评及差评数目统计下来。 -------------------------------------------------------------------------------- /TaoBao/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/TaoBao/1.png -------------------------------------------------------------------------------- /TaoBao/__pycache__/TaobaoDetail.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/TaoBao/__pycache__/TaobaoDetail.cpython-36.pyc -------------------------------------------------------------------------------- /TaoBao/wc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/TaoBao/wc.jpg -------------------------------------------------------------------------------- /TaoBao/wordc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/TaoBao/wordc.jpg -------------------------------------------------------------------------------- /venv/Lib/site-packages/__pycache__/easy_install.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/__pycache__/easy_install.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- 1 | """Run the EasyInstall command""" 2 | 3 | if __name__ == '__main__': 4 | from setuptools.command.easy_install import main 5 | main() 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import os 4 | import sys 5 | 6 | # If we are running from a wheel, add the wheel to sys.path 7 | # This allows the usage python pip-*.whl/pip install pip-*.whl 8 | if __package__ == '': 9 | # __file__ is pip-*.whl/pip/__main__.py 10 | # first dirname call strips of '/__main__.py', second strips off '/pip' 11 | # Resulting path is the name of the wheel itself 12 | # Add that to sys.path so we can import pip 13 | path = os.path.dirname(os.path.dirname(__file__)) 14 | sys.path.insert(0, path) 15 | 16 | from pip._internal import main as _main # isort:skip # noqa 17 | 18 | if __name__ == '__main__': 19 | sys.exit(_main()) 20 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__main__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/download.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/download.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/index.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/index.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/pep425tags.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/pep425tags.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/resolve.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/resolve.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/wheel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/__pycache__/wheel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/outdated.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/outdated.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/ui.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/utils/__pycache__/ui.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- 1 | # Shim to wrap setup.py invocation with setuptools 2 | SETUPTOOLS_SHIM = ( 3 | "import setuptools, tokenize;__file__=%r;" 4 | "f=getattr(tokenize, 'open', open)(__file__);" 5 | "code=f.read().replace('\\r\\n', '\\n');" 6 | "f.close();" 7 | "exec(compile(code, __file__, 'exec'))" 8 | ) 9 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.5" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- 1 | """ 2 | The cache object API for implementing caches. The default is a thread 3 | safe in-memory dictionary. 4 | """ 5 | from threading import Lock 6 | 7 | 8 | class BaseCache(object): 9 | 10 | def get(self, key): 11 | raise NotImplementedError() 12 | 13 | def set(self, key, value): 14 | raise NotImplementedError() 15 | 16 | def delete(self, key): 17 | raise NotImplementedError() 18 | 19 | def close(self): 20 | pass 21 | 22 | 23 | class DictCache(BaseCache): 24 | 25 | def __init__(self, init_dict=None): 26 | self.lock = Lock() 27 | self.data = init_dict or {} 28 | 29 | def get(self, key): 30 | return self.data.get(key, None) 31 | 32 | def set(self, key, value): 33 | with self.lock: 34 | self.data.update({key: value}) 35 | 36 | def delete(self, key): 37 | with self.lock: 38 | if key in self.data: 39 | self.data.pop(key) 40 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py: -------------------------------------------------------------------------------- 1 | from __future__ import division 2 | 3 | from datetime import datetime 4 | from pip._vendor.cachecontrol.cache import BaseCache 5 | 6 | 7 | class RedisCache(BaseCache): 8 | 9 | def __init__(self, conn): 10 | self.conn = conn 11 | 12 | def get(self, key): 13 | return self.conn.get(key) 14 | 15 | def set(self, key, value, expires=None): 16 | if not expires: 17 | self.conn.set(key, value) 18 | else: 19 | expires = expires - datetime.utcnow() 20 | self.conn.setex(key, int(expires.total_seconds()), value) 21 | 22 | def delete(self, key): 23 | self.conn.delete(key) 24 | 25 | def clear(self): 26 | """Helper for clearing all the keys in a database. Use with 27 | caution!""" 28 | for key in self.conn.keys(): 29 | self.conn.delete(key) 30 | 31 | def close(self): 32 | """Redis uses connection pooling, no need to close the connection.""" 33 | pass 34 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- 1 | try: 2 | from urllib.parse import urljoin 3 | except ImportError: 4 | from urlparse import urljoin 5 | 6 | 7 | try: 8 | import cPickle as pickle 9 | except ImportError: 10 | import pickle 11 | 12 | 13 | # Handle the case where the requests module has been patched to not have 14 | # urllib3 bundled as part of its source. 15 | try: 16 | from pip._vendor.requests.packages.urllib3.response import HTTPResponse 17 | except ImportError: 18 | from pip._vendor.urllib3.response import HTTPResponse 19 | 20 | try: 21 | from pip._vendor.requests.packages.urllib3.util import is_fp_closed 22 | except ImportError: 23 | from pip._vendor.urllib3.util import is_fp_closed 24 | 25 | # Replicate some six behaviour 26 | try: 27 | text_type = unicode 28 | except NameError: 29 | text_type = str 30 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- 1 | from .adapter import CacheControlAdapter 2 | from .cache import DictCache 3 | 4 | 5 | def CacheControl( 6 | sess, 7 | cache=None, 8 | cache_etags=True, 9 | serializer=None, 10 | heuristic=None, 11 | controller_class=None, 12 | adapter_class=None, 13 | cacheable_methods=None, 14 | ): 15 | 16 | cache = cache or DictCache() 17 | adapter_class = adapter_class or CacheControlAdapter 18 | adapter = adapter_class( 19 | cache, 20 | cache_etags=cache_etags, 21 | serializer=serializer, 22 | heuristic=heuristic, 23 | controller_class=controller_class, 24 | cacheable_methods=cacheable_methods, 25 | ) 26 | sess.mount("http://", adapter) 27 | sess.mount("https://", adapter) 28 | 29 | return sess 30 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certifi.py 6 | ~~~~~~~~~~ 7 | 8 | This module returns the installation location of cacert.pem. 9 | """ 10 | import os 11 | 12 | 13 | def where(): 14 | f = os.path.dirname(__file__) 15 | 16 | return os.path.join(f, 'cacert.pem') 17 | 18 | 19 | if __name__ == '__main__': 20 | print(where()) 21 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langcyrillicmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langcyrillicmodel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.1' 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2017 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.8' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | # pylint:disable=wrong-import-position 8 | try: 9 | from .datrie import Trie as DATrie 10 | except ImportError: 11 | pass 12 | else: 13 | Trie = DATrie 14 | # pylint:enable=wrong-import-position 15 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- 1 | """Tree adapters let you convert from one tree structure to another 2 | 3 | Example: 4 | 5 | .. code-block:: python 6 | 7 | from pip._vendor import html5lib 8 | from pip._vendor.html5lib.treeadapters import genshi 9 | 10 | doc = 'Hi!' 11 | treebuilder = html5lib.getTreeBuilder('etree') 12 | parser = html5lib.HTMLParser(tree=treebuilder) 13 | tree = parser.parse(doc) 14 | TreeWalker = html5lib.getTreeWalker('etree') 15 | 16 | genshi_tree = genshi.to_genshi(TreeWalker(tree)) 17 | 18 | """ 19 | from __future__ import absolute_import, division, unicode_literals 20 | 21 | from . import sax 22 | 23 | __all__ = ["sax"] 24 | 25 | try: 26 | from . import genshi # noqa 27 | except ImportError: 28 | pass 29 | else: 30 | __all__.append("genshi") 31 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/linklockfile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/linklockfile.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/mkdirlockfile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/mkdirlockfile.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/pidlockfile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/pidlockfile.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/sqlitelockfile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/sqlitelockfile.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/symlinklockfile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/lockfile/__pycache__/symlinklockfile.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", 8 | "__summary__", 9 | "__uri__", 10 | "__version__", 11 | "__author__", 12 | "__email__", 13 | "__license__", 14 | "__copyright__", 15 | ] 16 | 17 | __title__ = "packaging" 18 | __summary__ = "Core utilities for Python packages" 19 | __uri__ = "https://github.com/pypa/packaging" 20 | 21 | __version__ = "19.0" 22 | 23 | __author__ = "Donald Stufft and individual contributors" 24 | __email__ = "donald@stufft.io" 25 | 26 | __license__ = "BSD or Apache License, Version 2.0" 27 | __copyright__ = "Copyright 2014-2019 %s" % __author__ 28 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, 8 | __copyright__, 9 | __email__, 10 | __license__, 11 | __summary__, 12 | __title__, 13 | __uri__, 14 | __version__, 15 | ) 16 | 17 | __all__ = [ 18 | "__title__", 19 | "__summary__", 20 | "__uri__", 21 | "__version__", 22 | "__author__", 23 | "__email__", 24 | "__license__", 25 | "__copyright__", 26 | ] 27 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = (str,) 16 | else: 17 | string_types = (basestring,) 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | 31 | return type.__new__(metaclass, "temporary_class", (), {}) 32 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- 1 | """Handle reading and writing JSON in UTF-8, on Python 3 and 2.""" 2 | import json 3 | import sys 4 | 5 | if sys.version_info[0] >= 3: 6 | # Python 3 7 | def write_json(obj, path, **kwargs): 8 | with open(path, 'w', encoding='utf-8') as f: 9 | json.dump(obj, f, **kwargs) 10 | 11 | def read_json(path): 12 | with open(path, 'r', encoding='utf-8') as f: 13 | return json.load(f) 14 | 15 | else: 16 | # Python 2 17 | def write_json(obj, path, **kwargs): 18 | with open(path, 'wb') as f: 19 | json.dump(obj, f, encoding='utf-8', **kwargs) 20 | 21 | def read_json(path): 22 | with open(path, 'rb') as f: 23 | return json.load(f) 24 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from pip._vendor import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/__pycache__/helpers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/helpers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/core.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/core.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/parser.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/test.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/writer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/writer.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- 1 | class TomlError(RuntimeError): 2 | def __init__(self, message, line, col, filename): 3 | RuntimeError.__init__(self, message, line, col, filename) 4 | self.message = message 5 | self.line = line 6 | self.col = col 7 | self.filename = filename 8 | 9 | def __str__(self): 10 | return '{}({}, {}): {}'.format(self.filename, self.line, self.col, self.message) 11 | 12 | def __repr__(self): 13 | return 'TomlError({!r}, {!r}, {!r}, {!r})'.format(self.message, self.line, self.col, self.filename) 14 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'http://python-requests.org' 8 | __version__ = '2.21.0' 9 | __build__ = 0x022100 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2018 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | requests.hooks 5 | ~~~~~~~~~~~~~~ 6 | 7 | This module provides the capabilities for the Requests hooks system. 8 | 9 | Available hooks: 10 | 11 | ``response``: 12 | The response generated from a Request. 13 | """ 14 | HOOKS = ['response'] 15 | 16 | 17 | def default_hooks(): 18 | return {event: [] for event in HOOKS} 19 | 20 | # TODO: response is the only one 21 | 22 | 23 | def dispatch_hook(key, hooks, hook_data, **kwargs): 24 | """Dispatches a hook dictionary on a given piece of data.""" 25 | hooks = hooks or {} 26 | hooks = hooks.get(key) 27 | if hooks: 28 | if hasattr(hooks, '__call__'): 29 | hooks = [hooks] 30 | for hook in hooks: 31 | _hook_data = hook(hook_data, **kwargs) 32 | if _hook_data is not None: 33 | hook_data = _hook_data 34 | return hook_data 35 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | # This code exists for backwards compatibility reasons. 4 | # I don't like it either. Just look the other way. :) 5 | 6 | for package in ('urllib3', 'idna', 'chardet'): 7 | vendored_package = "pip._vendor." + package 8 | locals()[package] = __import__(vendored_package) 9 | # This traversal is apparently necessary such that the identities are 10 | # preserved (requests.packages.urllib3.* is urllib3.*) 11 | for mod in list(sys.modules): 12 | if mod == vendored_package or mod.startswith(vendored_package + '.'): 13 | unprefixed_mod = mod[len("pip._vendor."):] 14 | sys.modules['pip._vendor.requests.packages.' + unprefixed_mod] = sys.modules[mod] 15 | 16 | # Kinda cool, though, right? 17 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module provides means to detect the App Engine environment. 3 | """ 4 | 5 | import os 6 | 7 | 8 | def is_appengine(): 9 | return (is_local_appengine() or 10 | is_prod_appengine() or 11 | is_prod_appengine_mvms()) 12 | 13 | 14 | def is_appengine_sandbox(): 15 | return is_appengine() and not is_prod_appengine_mvms() 16 | 17 | 18 | def is_local_appengine(): 19 | return ('APPENGINE_RUNTIME' in os.environ and 20 | 'Development/' in os.environ['SERVER_SOFTWARE']) 21 | 22 | 23 | def is_prod_appengine(): 24 | return ('APPENGINE_RUNTIME' in os.environ and 25 | 'Google App Engine/' in os.environ['SERVER_SOFTWARE'] and 26 | not is_prod_appengine_mvms()) 27 | 28 | 29 | def is_prod_appengine_mvms(): 30 | return os.environ.get('GAE_VM', False) == 'true' 31 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | try: 4 | # Our match_hostname function is the same as 3.5's, so we only want to 5 | # import the match_hostname function if it's at least that good. 6 | if sys.version_info < (3, 5): 7 | raise ImportError("Fallback to vendored code") 8 | 9 | from ssl import CertificateError, match_hostname 10 | except ImportError: 11 | try: 12 | # Backport of the function from a pypi module 13 | from backports.ssl_match_hostname import CertificateError, match_hostname 14 | except ImportError: 15 | # Our vendored copy 16 | from ._implementation import CertificateError, match_hostname 17 | 18 | # Not needed, but documenting what we provide. 19 | __all__ = ('CertificateError', 'match_hostname') 20 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 8 | "__email__", "__license__", "__copyright__", 9 | ] 10 | 11 | __title__ = "packaging" 12 | __summary__ = "Core utilities for Python packages" 13 | __uri__ = "https://github.com/pypa/packaging" 14 | 15 | __version__ = "16.8" 16 | 17 | __author__ = "Donald Stufft and individual contributors" 18 | __email__ = "donald@stufft.io" 19 | 20 | __license__ = "BSD or Apache License, Version 2.0" 21 | __copyright__ = "Copyright 2014-2016 %s" % __author__ 22 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, __copyright__, __email__, __license__, __summary__, __title__, 8 | __uri__, __version__ 9 | ) 10 | 11 | __all__ = [ 12 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 13 | "__email__", "__license__", "__copyright__", 14 | ] 15 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = str, 16 | else: 17 | string_types = basestring, 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | return type.__new__(metaclass, 'temporary_class', (), {}) 31 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import re 7 | 8 | 9 | _canonicalize_regex = re.compile(r"[-_.]+") 10 | 11 | 12 | def canonicalize_name(name): 13 | # This is taken from PEP 503. 14 | return _canonicalize_regex.sub("-", name).lower() 15 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from .extern import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-40.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-40.8.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.32.3) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-40.8.0.dist-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/source/c/certifi/certifi-2016.9.26.tar.gz#md5=baa81e951a29958563689d868ef1064d 2 | https://files.pythonhosted.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-40.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-40.8.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/glibc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/glibc.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/pep425tags.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/pep425tags.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/version.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/version.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- 1 | class SetuptoolsDeprecationWarning(Warning): 2 | """ 3 | Base class for warning deprecations in ``setuptools`` 4 | 5 | This class is not derived from ``DeprecationWarning``, and as such is 6 | visible by default. 7 | """ 8 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 8 | "__email__", "__license__", "__copyright__", 9 | ] 10 | 11 | __title__ = "packaging" 12 | __summary__ = "Core utilities for Python packages" 13 | __uri__ = "https://github.com/pypa/packaging" 14 | 15 | __version__ = "16.8" 16 | 17 | __author__ = "Donald Stufft and individual contributors" 18 | __email__ = "donald@stufft.io" 19 | 20 | __license__ = "BSD or Apache License, Version 2.0" 21 | __copyright__ = "Copyright 2014-2016 %s" % __author__ 22 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, __copyright__, __email__, __license__, __summary__, __title__, 8 | __uri__, __version__ 9 | ) 10 | 11 | __all__ = [ 12 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 13 | "__email__", "__license__", "__copyright__", 14 | ] 15 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = str, 16 | else: 17 | string_types = basestring, 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | return type.__new__(metaclass, 'temporary_class', (), {}) 31 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import re 7 | 8 | 9 | _canonicalize_regex = re.compile(r"[-_.]+") 10 | 11 | 12 | def canonicalize_name(name): 13 | # This is taken from PEP 503. 14 | return _canonicalize_regex.sub("-", name).lower() 15 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | 'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop', 3 | 'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts', 4 | 'sdist', 'setopt', 'test', 'install_egg_info', 'install_scripts', 5 | 'register', 'bdist_wininst', 'upload_docs', 'upload', 'build_clib', 6 | 'dist_info', 7 | ] 8 | 9 | from distutils.command.bdist import bdist 10 | import sys 11 | 12 | from setuptools.command import install_scripts 13 | 14 | if 'egg' not in bdist.format_commands: 15 | bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") 16 | bdist.format_commands.append('egg') 17 | 18 | del bdist, sys 19 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/bdist_wininst.py: -------------------------------------------------------------------------------- 1 | import distutils.command.bdist_wininst as orig 2 | 3 | 4 | class bdist_wininst(orig.bdist_wininst): 5 | def reinitialize_command(self, command, reinit_subcommands=0): 6 | """ 7 | Supplement reinitialize_command to work around 8 | http://bugs.python.org/issue20819 9 | """ 10 | cmd = self.distribution.reinitialize_command( 11 | command, reinit_subcommands) 12 | if command in ('install', 'install_lib'): 13 | cmd.install_lib = None 14 | return cmd 15 | 16 | def run(self): 17 | self._is_running = True 18 | try: 19 | orig.bdist_wininst.run(self) 20 | finally: 21 | self._is_running = False 22 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/launcher manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- 1 | from distutils import log 2 | import distutils.command.register as orig 3 | 4 | 5 | class register(orig.register): 6 | __doc__ = orig.register.__doc__ 7 | 8 | def run(self): 9 | try: 10 | # Make sure that we are using valid current name/version info 11 | self.run_command('egg_info') 12 | orig.register.run(self) 13 | finally: 14 | self.announce( 15 | "WARNING: Registering is deprecated, use twine to " 16 | "upload instead (https://pypi.org/p/twine/)", 17 | log.WARN 18 | ) 19 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- 1 | from setuptools.command.setopt import edit_config, option_base 2 | 3 | 4 | class saveopts(option_base): 5 | """Save command-line options to a file""" 6 | 7 | description = "save supplied options to setup.cfg or other config file" 8 | 9 | def run(self): 10 | dist = self.distribution 11 | settings = {} 12 | 13 | for cmd in dist.command_options: 14 | 15 | if cmd == 'saveopts': 16 | continue # don't save our own options! 17 | 18 | for opt, (src, val) in dist.get_option_dict(cmd).items(): 19 | if src == "command line": 20 | settings.setdefault(cmd, {})[opt] = val 21 | 22 | edit_config(self.filename, settings, self.dry_run) 23 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /venv/Lib/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 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/py27compat.py: -------------------------------------------------------------------------------- 1 | """ 2 | Compatibility Support for Python 2.7 and earlier 3 | """ 4 | 5 | import platform 6 | 7 | from setuptools.extern import six 8 | 9 | 10 | def get_all_headers(message, key): 11 | """ 12 | Given an HTTPMessage, return all headers matching a given key. 13 | """ 14 | return message.get_all(key) 15 | 16 | 17 | if six.PY2: 18 | def get_all_headers(message, key): 19 | return message.getheaders(key) 20 | 21 | 22 | linux_py2_ascii = ( 23 | platform.system() == 'Linux' and 24 | six.PY2 25 | ) 26 | 27 | rmtree_safe = str if linux_py2_ascii else lambda x: x 28 | """Workaround for http://bugs.python.org/issue24672""" 29 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/py31compat.py: -------------------------------------------------------------------------------- 1 | __all__ = [] 2 | 3 | __metaclass__ = type 4 | 5 | 6 | try: 7 | # Python >=3.2 8 | from tempfile import TemporaryDirectory 9 | except ImportError: 10 | import shutil 11 | import tempfile 12 | 13 | class TemporaryDirectory: 14 | """ 15 | Very simple temporary directory context manager. 16 | Will try to delete afterward, but will also ignore OS and similar 17 | errors on deletion. 18 | """ 19 | 20 | def __init__(self): 21 | self.name = None # Handle mkdtemp raising an exception 22 | self.name = tempfile.mkdtemp() 23 | 24 | def __enter__(self): 25 | return self.name 26 | 27 | def __exit__(self, exctype, excvalue, exctrace): 28 | try: 29 | shutil.rmtree(self.name, True) 30 | except OSError: # removal errors are not the only possible 31 | pass 32 | self.name = None 33 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-DEV-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').require(%(spec)r) 4 | __file__ = %(dev_path)r 5 | with open(__file__) as f: 6 | exec(compile(f.read(), __file__, 'exec')) 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | 3 | try: 4 | __version__ = pkg_resources.get_distribution('setuptools').version 5 | except Exception: 6 | __version__ = 'unknown' 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- 1 | import platform 2 | import ctypes 3 | 4 | 5 | def windows_only(func): 6 | if platform.system() != 'Windows': 7 | return lambda *args, **kwargs: None 8 | return func 9 | 10 | 11 | @windows_only 12 | def hide_file(path): 13 | """ 14 | Set the hidden attribute on a file or directory. 15 | 16 | From http://stackoverflow.com/questions/19622133/ 17 | 18 | `path` must be text. 19 | """ 20 | __import__('ctypes.wintypes') 21 | SetFileAttributes = ctypes.windll.kernel32.SetFileAttributesW 22 | SetFileAttributes.argtypes = ctypes.wintypes.LPWSTR, ctypes.wintypes.DWORD 23 | SetFileAttributes.restype = ctypes.wintypes.BOOL 24 | 25 | FILE_ATTRIBUTE_HIDDEN = 0x02 26 | 27 | ret = SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN) 28 | if not ret: 29 | raise ctypes.WinError() 30 | -------------------------------------------------------------------------------- /venv/Scripts/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_asyncio.pyd -------------------------------------------------------------------------------- /venv/Scripts/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_bz2.pyd -------------------------------------------------------------------------------- /venv/Scripts/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_ctypes.pyd -------------------------------------------------------------------------------- /venv/Scripts/_ctypes_test.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_ctypes_test.pyd -------------------------------------------------------------------------------- /venv/Scripts/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_decimal.pyd -------------------------------------------------------------------------------- /venv/Scripts/_distutils_findvs.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_distutils_findvs.pyd -------------------------------------------------------------------------------- /venv/Scripts/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_elementtree.pyd -------------------------------------------------------------------------------- /venv/Scripts/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_hashlib.pyd -------------------------------------------------------------------------------- /venv/Scripts/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_lzma.pyd -------------------------------------------------------------------------------- /venv/Scripts/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_msi.pyd -------------------------------------------------------------------------------- /venv/Scripts/_multiprocessing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_multiprocessing.pyd -------------------------------------------------------------------------------- /venv/Scripts/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_overlapped.pyd -------------------------------------------------------------------------------- /venv/Scripts/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_socket.pyd -------------------------------------------------------------------------------- /venv/Scripts/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_sqlite3.pyd -------------------------------------------------------------------------------- /venv/Scripts/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_ssl.pyd -------------------------------------------------------------------------------- /venv/Scripts/_testbuffer.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_testbuffer.pyd -------------------------------------------------------------------------------- /venv/Scripts/_testcapi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_testcapi.pyd -------------------------------------------------------------------------------- /venv/Scripts/_testconsole.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_testconsole.pyd -------------------------------------------------------------------------------- /venv/Scripts/_testimportmultiple.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_testimportmultiple.pyd -------------------------------------------------------------------------------- /venv/Scripts/_testmultiphase.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_testmultiphase.pyd -------------------------------------------------------------------------------- /venv/Scripts/_tkinter.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/_tkinter.pyd -------------------------------------------------------------------------------- /venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if defined _OLD_VIRTUAL_PROMPT ( 4 | set "PROMPT=%_OLD_VIRTUAL_PROMPT%" 5 | ) 6 | set _OLD_VIRTUAL_PROMPT= 7 | 8 | if defined _OLD_VIRTUAL_PYTHONHOME ( 9 | set "PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%" 10 | set _OLD_VIRTUAL_PYTHONHOME= 11 | ) 12 | 13 | if defined _OLD_VIRTUAL_PATH ( 14 | set "PATH=%_OLD_VIRTUAL_PATH%" 15 | ) 16 | 17 | set _OLD_VIRTUAL_PATH= 18 | 19 | set VIRTUAL_ENV= 20 | 21 | :END 22 | -------------------------------------------------------------------------------- /venv/Scripts/easy_install-3.6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/easy_install-3.6.exe -------------------------------------------------------------------------------- /venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/pip3.6.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /venv/Scripts/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/pyexpat.pyd -------------------------------------------------------------------------------- /venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/python.exe -------------------------------------------------------------------------------- /venv/Scripts/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/python3.dll -------------------------------------------------------------------------------- /venv/Scripts/python36.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/python36.dll -------------------------------------------------------------------------------- /venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /venv/Scripts/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/select.pyd -------------------------------------------------------------------------------- /venv/Scripts/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/sqlite3.dll -------------------------------------------------------------------------------- /venv/Scripts/tcl86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/tcl86t.dll -------------------------------------------------------------------------------- /venv/Scripts/tk86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/tk86t.dll -------------------------------------------------------------------------------- /venv/Scripts/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/unicodedata.pyd -------------------------------------------------------------------------------- /venv/Scripts/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/vcruntime140.dll -------------------------------------------------------------------------------- /venv/Scripts/winsound.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyCui/GraduationProject/38cbdf97bed7477c8a40096dce1c7448d5e9eecb/venv/Scripts/winsound.pyd -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\Horizonhui\AppData\Local\Programs\Python\Python36 2 | include-system-site-packages = false 3 | version = 3.6.7 4 | --------------------------------------------------------------------------------