├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── spot-trend-grid.iml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.en.md ├── README.md ├── __init__.py ├── app ├── BinanceAPI.py ├── __init__.py ├── __pycache__ │ ├── BinanceAPI.cpython-38.pyc │ ├── __init__.cpython-38.pyc │ ├── authorization.cpython-38.pyc │ └── dingding.cpython-38.pyc ├── authorization.py └── dingding.py ├── data ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── calcIndex.cpython-38.pyc │ └── runBetData.cpython-38.pyc ├── calcIndex.py ├── data.json └── runBetData.py ├── dev-ReadMe.md ├── run.py └── venv ├── bin ├── Activate.ps1 ├── activate ├── activate.csh ├── activate.fish ├── chardetect ├── easy_install ├── easy_install-3.8 ├── pip ├── pip3 ├── pip3.8 ├── python ├── python3 └── python3.8 ├── lib └── python3.8 │ └── site-packages │ ├── certifi-2020.11.8.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __main__.cpython-38.pyc │ │ └── core.cpython-38.pyc │ ├── cacert.pem │ └── core.py │ ├── chardet-3.0.4.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt │ ├── chardet │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── big5freq.cpython-38.pyc │ │ ├── big5prober.cpython-38.pyc │ │ ├── chardistribution.cpython-38.pyc │ │ ├── charsetgroupprober.cpython-38.pyc │ │ ├── charsetprober.cpython-38.pyc │ │ ├── codingstatemachine.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── cp949prober.cpython-38.pyc │ │ ├── enums.cpython-38.pyc │ │ ├── escprober.cpython-38.pyc │ │ ├── escsm.cpython-38.pyc │ │ ├── eucjpprober.cpython-38.pyc │ │ ├── euckrfreq.cpython-38.pyc │ │ ├── euckrprober.cpython-38.pyc │ │ ├── euctwfreq.cpython-38.pyc │ │ ├── euctwprober.cpython-38.pyc │ │ ├── gb2312freq.cpython-38.pyc │ │ ├── gb2312prober.cpython-38.pyc │ │ ├── hebrewprober.cpython-38.pyc │ │ ├── jisfreq.cpython-38.pyc │ │ ├── jpcntx.cpython-38.pyc │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ ├── langcyrillicmodel.cpython-38.pyc │ │ ├── langgreekmodel.cpython-38.pyc │ │ ├── langhebrewmodel.cpython-38.pyc │ │ ├── langhungarianmodel.cpython-38.pyc │ │ ├── langthaimodel.cpython-38.pyc │ │ ├── langturkishmodel.cpython-38.pyc │ │ ├── latin1prober.cpython-38.pyc │ │ ├── mbcharsetprober.cpython-38.pyc │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ ├── mbcssm.cpython-38.pyc │ │ ├── sbcharsetprober.cpython-38.pyc │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ ├── sjisprober.cpython-38.pyc │ │ ├── universaldetector.cpython-38.pyc │ │ ├── utf8prober.cpython-38.pyc │ │ └── version.cpython-38.pyc │ ├── big5freq.py │ ├── big5prober.py │ ├── chardistribution.py │ ├── charsetgroupprober.py │ ├── charsetprober.py │ ├── cli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── chardetect.cpython-38.pyc │ │ └── chardetect.py │ ├── codingstatemachine.py │ ├── compat.py │ ├── cp949prober.py │ ├── enums.py │ ├── escprober.py │ ├── escsm.py │ ├── eucjpprober.py │ ├── euckrfreq.py │ ├── euckrprober.py │ ├── euctwfreq.py │ ├── euctwprober.py │ ├── gb2312freq.py │ ├── gb2312prober.py │ ├── hebrewprober.py │ ├── jisfreq.py │ ├── jpcntx.py │ ├── langbulgarianmodel.py │ ├── langcyrillicmodel.py │ ├── langgreekmodel.py │ ├── langhebrewmodel.py │ ├── langhungarianmodel.py │ ├── langthaimodel.py │ ├── langturkishmodel.py │ ├── latin1prober.py │ ├── mbcharsetprober.py │ ├── mbcsgroupprober.py │ ├── mbcssm.py │ ├── sbcharsetprober.py │ ├── sbcsgroupprober.py │ ├── sjisprober.py │ ├── universaldetector.py │ ├── utf8prober.py │ └── version.py │ ├── easy-install.pth │ ├── idna-2.10.dist-info │ ├── INSTALLER │ ├── LICENSE.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── idna │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── codec.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── core.cpython-38.pyc │ │ ├── idnadata.cpython-38.pyc │ │ ├── intranges.cpython-38.pyc │ │ ├── package_data.cpython-38.pyc │ │ └── uts46data.cpython-38.pyc │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ └── uts46data.py │ ├── pip-10.0.1-py3.8.egg │ ├── EGG-INFO │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt │ └── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _internal │ │ ├── __init__.py │ │ ├── basecommand.py │ │ ├── baseparser.py │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cmdoptions.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── 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 │ │ ├── compat.py │ │ ├── configuration.py │ │ ├── download.py │ │ ├── exceptions.py │ │ ├── index.py │ │ ├── locations.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── index.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ └── prepare.py │ │ ├── pep425tags.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ └── req_uninstall.py │ │ ├── resolve.py │ │ ├── status_codes.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── deprecation.py │ │ │ ├── encoding.py │ │ │ ├── filesystem.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── outdated.py │ │ │ ├── packaging.py │ │ │ ├── setuptools_build.py │ │ │ ├── temp_dir.py │ │ │ ├── typing.py │ │ │ └── ui.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ └── subversion.py │ │ └── wheel.py │ │ └── _vendor │ │ ├── __init__.py │ │ ├── appdirs.py │ │ ├── cachecontrol │ │ ├── __init__.py │ │ ├── _cmd.py │ │ ├── adapter.py │ │ ├── cache.py │ │ ├── caches │ │ │ ├── __init__.py │ │ │ ├── file_cache.py │ │ │ └── redis_cache.py │ │ ├── compat.py │ │ ├── controller.py │ │ ├── filewrapper.py │ │ ├── heuristics.py │ │ ├── serialize.py │ │ └── wrapper.py │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cacert.pem │ │ └── core.py │ │ ├── chardet │ │ ├── __init__.py │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ └── 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 │ │ ├── ansi.py │ │ ├── ansitowin32.py │ │ ├── initialise.py │ │ ├── win32.py │ │ └── winterm.py │ │ ├── distlib │ │ ├── __init__.py │ │ ├── _backport │ │ │ ├── __init__.py │ │ │ ├── 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 │ │ ├── _ihatexml.py │ │ ├── _inputstream.py │ │ ├── _tokenizer.py │ │ ├── _trie │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── datrie.py │ │ │ └── py.py │ │ ├── _utils.py │ │ ├── constants.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── alphabeticalattributes.py │ │ │ ├── base.py │ │ │ ├── inject_meta_charset.py │ │ │ ├── lint.py │ │ │ ├── optionaltags.py │ │ │ ├── sanitizer.py │ │ │ └── whitespace.py │ │ ├── html5parser.py │ │ ├── serializer.py │ │ ├── treeadapters │ │ │ ├── __init__.py │ │ │ ├── genshi.py │ │ │ └── sax.py │ │ ├── treebuilders │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ └── etree_lxml.py │ │ └── treewalkers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ ├── etree_lxml.py │ │ │ └── genshi.py │ │ ├── idna │ │ ├── __init__.py │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ │ ├── ipaddress.py │ │ ├── lockfile │ │ ├── __init__.py │ │ ├── linklockfile.py │ │ ├── mkdirlockfile.py │ │ ├── pidlockfile.py │ │ ├── sqlitelockfile.py │ │ └── symlinklockfile.py │ │ ├── msgpack │ │ ├── __init__.py │ │ ├── _version.py │ │ ├── exceptions.py │ │ └── fallback.py │ │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── utils.py │ │ └── version.py │ │ ├── pkg_resources │ │ ├── __init__.py │ │ └── py31compat.py │ │ ├── progress │ │ ├── __init__.py │ │ ├── bar.py │ │ ├── counter.py │ │ ├── helpers.py │ │ └── spinner.py │ │ ├── pyparsing.py │ │ ├── pytoml │ │ ├── __init__.py │ │ ├── core.py │ │ ├── parser.py │ │ └── writer.py │ │ ├── requests │ │ ├── __init__.py │ │ ├── __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 │ │ ├── _collections.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── bindings.py │ │ │ │ └── low_level.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ ├── pyopenssl.py │ │ │ ├── securetransport.py │ │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ └── makefile.py │ │ │ ├── ordered_dict.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── selectors.py │ │ │ ├── ssl_.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ │ └── webencodings │ │ ├── __init__.py │ │ ├── labels.py │ │ ├── mklabels.py │ │ ├── tests.py │ │ └── x_user_defined.py │ ├── requests-2.25.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── requests │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __version__.cpython-38.pyc │ │ ├── _internal_utils.cpython-38.pyc │ │ ├── adapters.cpython-38.pyc │ │ ├── api.cpython-38.pyc │ │ ├── auth.cpython-38.pyc │ │ ├── certs.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── cookies.cpython-38.pyc │ │ ├── exceptions.cpython-38.pyc │ │ ├── help.cpython-38.pyc │ │ ├── hooks.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── packages.cpython-38.pyc │ │ ├── sessions.cpython-38.pyc │ │ ├── status_codes.cpython-38.pyc │ │ ├── structures.cpython-38.pyc │ │ └── utils.cpython-38.pyc │ ├── __version__.py │ ├── _internal_utils.py │ ├── adapters.py │ ├── api.py │ ├── auth.py │ ├── certs.py │ ├── compat.py │ ├── cookies.py │ ├── exceptions.py │ ├── help.py │ ├── hooks.py │ ├── models.py │ ├── packages.py │ ├── sessions.py │ ├── status_codes.py │ ├── structures.py │ └── utils.py │ ├── setuptools-39.1.0-py3.8.egg │ ├── setuptools.pth │ ├── urllib3-1.26.2.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ └── urllib3 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── _collections.cpython-38.pyc │ ├── _version.cpython-38.pyc │ ├── connection.cpython-38.pyc │ ├── connectionpool.cpython-38.pyc │ ├── exceptions.cpython-38.pyc │ ├── fields.cpython-38.pyc │ ├── filepost.cpython-38.pyc │ ├── poolmanager.cpython-38.pyc │ ├── request.cpython-38.pyc │ └── response.cpython-38.pyc │ ├── _collections.py │ ├── _version.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _appengine_environ.cpython-38.pyc │ │ ├── appengine.cpython-38.pyc │ │ ├── ntlmpool.cpython-38.pyc │ │ ├── pyopenssl.cpython-38.pyc │ │ ├── securetransport.cpython-38.pyc │ │ └── socks.cpython-38.pyc │ ├── _appengine_environ.py │ ├── _securetransport │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── bindings.cpython-38.pyc │ │ │ └── low_level.cpython-38.pyc │ │ ├── bindings.py │ │ └── low_level.py │ ├── appengine.py │ ├── ntlmpool.py │ ├── pyopenssl.py │ ├── securetransport.py │ └── socks.py │ ├── exceptions.py │ ├── fields.py │ ├── filepost.py │ ├── packages │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── six.cpython-38.pyc │ ├── backports │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── makefile.cpython-38.pyc │ │ └── makefile.py │ ├── six.py │ └── ssl_match_hostname │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── _implementation.cpython-38.pyc │ │ └── _implementation.py │ ├── poolmanager.py │ ├── request.py │ ├── response.py │ └── util │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── connection.cpython-38.pyc │ ├── proxy.cpython-38.pyc │ ├── queue.cpython-38.pyc │ ├── request.cpython-38.pyc │ ├── response.cpython-38.pyc │ ├── retry.cpython-38.pyc │ ├── ssl_.cpython-38.pyc │ ├── ssltransport.cpython-38.pyc │ ├── timeout.cpython-38.pyc │ ├── url.cpython-38.pyc │ └── wait.cpython-38.pyc │ ├── connection.py │ ├── proxy.py │ ├── queue.py │ ├── request.py │ ├── response.py │ ├── retry.py │ ├── ssl_.py │ ├── ssltransport.py │ ├── timeout.py │ ├── url.py │ └── wait.py ├── pip-selfcheck.json └── pyvenv.cfg /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/spot-trend-grid.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/.idea/spot-trend-grid.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/BinanceAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/app/BinanceAPI.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/__pycache__/BinanceAPI.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/app/__pycache__/BinanceAPI.cpython-38.pyc -------------------------------------------------------------------------------- /app/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/app/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /app/__pycache__/authorization.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/app/__pycache__/authorization.cpython-38.pyc -------------------------------------------------------------------------------- /app/__pycache__/dingding.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/app/__pycache__/dingding.cpython-38.pyc -------------------------------------------------------------------------------- /app/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/app/authorization.py -------------------------------------------------------------------------------- /app/dingding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/app/dingding.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/data/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /data/__pycache__/calcIndex.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/data/__pycache__/calcIndex.cpython-38.pyc -------------------------------------------------------------------------------- /data/__pycache__/runBetData.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/data/__pycache__/runBetData.cpython-38.pyc -------------------------------------------------------------------------------- /data/calcIndex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/data/calcIndex.py -------------------------------------------------------------------------------- /data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/data/data.json -------------------------------------------------------------------------------- /data/runBetData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/data/runBetData.py -------------------------------------------------------------------------------- /dev-ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/dev-ReadMe.md -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/run.py -------------------------------------------------------------------------------- /venv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/Activate.ps1 -------------------------------------------------------------------------------- /venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/activate -------------------------------------------------------------------------------- /venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/activate.csh -------------------------------------------------------------------------------- /venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/activate.fish -------------------------------------------------------------------------------- /venv/bin/chardetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/chardetect -------------------------------------------------------------------------------- /venv/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/easy_install -------------------------------------------------------------------------------- /venv/bin/easy_install-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/easy_install-3.8 -------------------------------------------------------------------------------- /venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/pip -------------------------------------------------------------------------------- /venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/pip3 -------------------------------------------------------------------------------- /venv/bin/pip3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/pip3.8 -------------------------------------------------------------------------------- /venv/bin/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/python -------------------------------------------------------------------------------- /venv/bin/python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/python3 -------------------------------------------------------------------------------- /venv/bin/python3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/bin/python3.8 -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi-2020.11.8.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi-2020.11.8.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/certifi-2020.11.8.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi-2020.11.8.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/certifi-2020.11.8.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi-2020.11.8.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/certifi-2020.11.8.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi-2020.11.8.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/certifi-2020.11.8.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi-2020.11.8.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.11.08" 4 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/certifi/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/certifi/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/certifi/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/certifi/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/certifi/cacert.pem -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/certifi/core.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/entry_points.txt -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/metadata.json -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/big5freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/big5freq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/big5prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/big5prober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/chardistribution.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/chardistribution.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/charsetgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/charsetgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/charsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/charsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/codingstatemachine.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/codingstatemachine.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/cp949prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/cp949prober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/enums.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/enums.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/escprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/escprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/escsm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/escsm.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/eucjpprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/eucjpprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/euckrfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/euckrfreq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/euckrprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/euckrprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/euctwfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/euctwfreq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/euctwprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/euctwprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/gb2312freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/gb2312freq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/gb2312prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/gb2312prober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/hebrewprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/hebrewprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/jisfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/jisfreq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/jpcntx.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/jpcntx.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/langgreekmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/langgreekmodel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/langhebrewmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/langhebrewmodel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/langhungarianmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/langhungarianmodel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/langthaimodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/langthaimodel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/langturkishmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/langturkishmodel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/latin1prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/latin1prober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/mbcharsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/mbcharsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/mbcssm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/mbcssm.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/sbcharsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/sbcharsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/sjisprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/sjisprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/universaldetector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/universaldetector.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/utf8prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/utf8prober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/big5freq.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/big5prober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/chardistribution.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/charsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/cli/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/cli/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/cli/__pycache__/chardetect.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/cli/__pycache__/chardetect.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/cp949prober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/enums.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/escprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/escsm.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/eucjpprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/euckrfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/euckrprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/euctwfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/euctwprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/gb2312freq.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/gb2312prober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/hebrewprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/jisfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/jpcntx.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/langthaimodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/latin1prober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/mbcssm.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/sjisprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/universaldetector.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/utf8prober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/chardet/version.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/easy-install.pth -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna-2.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna-2.10.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna-2.10.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna-2.10.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna-2.10.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna-2.10.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna-2.10.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna-2.10.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna-2.10.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna-2.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/__pycache__/codec.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/__pycache__/codec.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/__pycache__/idnadata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/__pycache__/idnadata.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/__pycache__/intranges.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/__pycache__/intranges.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/__pycache__/package_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/__pycache__/package_data.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/__pycache__/uts46data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/__pycache__/uts46data.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/codec.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/core.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/entry_points.txt -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/requires.txt -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "10.0.1" 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/basecommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/basecommand.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/baseparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/baseparser.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/build_env.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/cmdoptions.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/completion.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/configuration.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/download.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/uninstall.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/configuration.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/download.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/index.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/locations.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/models/index.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/operations/freeze.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/operations/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/operations/prepare.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/pep425tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/pep425tags.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/req/req_uninstall.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/resolve.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/status_codes.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/deprecation.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/outdated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/outdated.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/setuptools_build.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/typing.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/utils/ui.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_internal/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/adapter.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/caches/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/caches/file_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/caches/file_cache.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/caches/redis_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/caches/redis_cache.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/controller.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/filewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/filewrapper.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/heuristics.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/serialize.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/cachecontrol/wrapper.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/certifi/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/big5prober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/chardistribution.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/charsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/cp949prober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/eucjpprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/euckrprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/euctwfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/euctwprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/gb2312freq.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/gb2312prober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/hebrewprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langthaimodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/latin1prober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/sjisprober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/universaldetector.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/utf8prober.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/ansitowin32.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/initialise.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/misc.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/shutil.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/sysconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/sysconfig.cfg -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/sysconfig.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/_backport/tarfile.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/distro.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_ihatexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_ihatexml.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_inputstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_inputstream.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_tokenizer.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_trie/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_trie/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_trie/_base.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_trie/datrie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_trie/datrie.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_trie/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_trie/py.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/constants.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/base.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/inject_meta_charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/inject_meta_charset.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/lint.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/optionaltags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/optionaltags.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/sanitizer.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/filters/whitespace.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/html5parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/html5parser.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/serializer.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treeadapters/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treeadapters/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treeadapters/genshi.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treeadapters/sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treeadapters/sax.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treebuilders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treebuilders/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treebuilders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treebuilders/base.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treebuilders/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treebuilders/dom.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treebuilders/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treebuilders/etree.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treebuilders/etree_lxml.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/base.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/dom.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/etree.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/etree_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/etree_lxml.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/html5lib/treewalkers/genshi.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.6' 2 | 3 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/linklockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/linklockfile.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/mkdirlockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/mkdirlockfile.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/pidlockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/pidlockfile.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/sqlitelockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/sqlitelockfile.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/symlinklockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/lockfile/symlinklockfile.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/msgpack/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/requirements.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pkg_resources/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pkg_resources/py31compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/progress/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/progress/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/progress/helpers.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pytoml/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pytoml/core.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pytoml/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pytoml/parser.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pytoml/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/pytoml/writer.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/__version__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/_internal_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/packages.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/status_codes.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/structures.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/six.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/_collections.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/connection.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/connectionpool.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/ordered_dict.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/six.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/poolmanager.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/connection.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/request.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/response.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/retry.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/selectors.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/timeout.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/urllib3/util/wait.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/webencodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/webencodings/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/webencodings/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/webencodings/labels.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/webencodings/mklabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/webencodings/mklabels.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/webencodings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/webencodings/tests.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/webencodings/x_user_defined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/pip-10.0.1-py3.8.egg/pip/_vendor/webencodings/x_user_defined.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests-2.25.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests-2.25.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests-2.25.0.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests-2.25.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests-2.25.0.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests-2.25.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests-2.25.0.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests-2.25.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests-2.25.0.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests-2.25.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/__version__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/__version__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/_internal_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/_internal_utils.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/adapters.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/adapters.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/auth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/auth.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/certs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/certs.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/cookies.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/cookies.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/hooks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/hooks.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/packages.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/packages.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/sessions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/sessions.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/status_codes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/status_codes.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/structures.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/structures.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/__version__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/_internal_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/adapters.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/api.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/auth.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/certs.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/cookies.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/help.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/hooks.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/models.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/packages.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/sessions.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/status_codes.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/structures.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/requests/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/setuptools-39.1.0-py3.8.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/setuptools-39.1.0-py3.8.egg -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-39.1.0-py3.8.egg 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3-1.26.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3-1.26.2.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3-1.26.2.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3-1.26.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3-1.26.2.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3-1.26.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3-1.26.2.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3-1.26.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3-1.26.2.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3-1.26.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/_version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/_version.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/_collections.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.2" 3 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/connection.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/appengine.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/appengine.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/fields.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/filepost.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/_implementation.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/request.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/response.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/proxy.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/proxy.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/ssltransport.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/ssltransport.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/connection.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/proxy.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/queue.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/request.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/response.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/url.py -------------------------------------------------------------------------------- /venv/lib/python3.8/site-packages/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/lib/python3.8/site-packages/urllib3/util/wait.py -------------------------------------------------------------------------------- /venv/pip-selfcheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/pip-selfcheck.json -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengxuZ/spot-trend-grid/HEAD/venv/pyvenv.cfg --------------------------------------------------------------------------------