├── blog ├── __init__.py ├── __pycache__ │ ├── urls.cpython-37.pyc │ ├── wsgi.cpython-37.pyc │ ├── __init__.cpython-37.pyc │ └── settings.cpython-37.pyc ├── urls.py ├── asgi.py └── wsgi.py ├── core ├── __init__.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-37.pyc ├── models.py ├── admin.py ├── tests.py ├── __pycache__ │ ├── admin.cpython-37.pyc │ ├── apps.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ ├── views.cpython-37.pyc │ └── __init__.cpython-37.pyc ├── apps.py ├── urls.py └── views.py ├── env ├── Lib │ └── site-packages │ │ ├── pip │ │ ├── _internal │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── misc.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── glibc.cpython-37.pyc │ │ │ │ │ ├── hashes.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── typing.cpython-37.pyc │ │ │ │ │ ├── wheel.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ │ ├── encoding.cpython-37.pyc │ │ │ │ │ ├── filetypes.cpython-37.pyc │ │ │ │ │ ├── logging.cpython-37.pyc │ │ │ │ │ ├── packaging.cpython-37.pyc │ │ │ │ │ ├── temp_dir.cpython-37.pyc │ │ │ │ │ ├── unpacking.cpython-37.pyc │ │ │ │ │ ├── deprecation.cpython-37.pyc │ │ │ │ │ ├── entrypoints.cpython-37.pyc │ │ │ │ │ ├── filesystem.cpython-37.pyc │ │ │ │ │ ├── subprocess.cpython-37.pyc │ │ │ │ │ ├── virtualenv.cpython-37.pyc │ │ │ │ │ ├── distutils_args.cpython-37.pyc │ │ │ │ │ ├── pkg_resources.cpython-37.pyc │ │ │ │ │ ├── setuptools_build.cpython-37.pyc │ │ │ │ │ ├── compatibility_tags.cpython-37.pyc │ │ │ │ │ ├── direct_url_helpers.cpython-37.pyc │ │ │ │ │ └── inject_securetransport.cpython-37.pyc │ │ │ │ └── filetypes.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── wheel.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── metadata.cpython-37.pyc │ │ │ │ │ │ ├── wheel_legacy.cpython-37.pyc │ │ │ │ │ │ └── metadata_legacy.cpython-37.pyc │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── legacy.cpython-37.pyc │ │ │ │ │ │ ├── wheel.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── editable_legacy.cpython-37.pyc │ │ │ │ └── __pycache__ │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ ├── freeze.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── prepare.cpython-37.pyc │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── legacy │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── resolver.cpython-37.pyc │ │ │ │ ├── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── factory.cpython-37.pyc │ │ │ │ │ │ ├── provider.cpython-37.pyc │ │ │ │ │ │ ├── resolver.cpython-37.pyc │ │ │ │ │ │ ├── candidates.cpython-37.pyc │ │ │ │ │ │ └── requirements.cpython-37.pyc │ │ │ │ └── __pycache__ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── collector.cpython-37.pyc │ │ │ │ │ └── package_finder.cpython-37.pyc │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── auth.cpython-37.pyc │ │ │ │ │ ├── cache.cpython-37.pyc │ │ │ │ │ ├── session.cpython-37.pyc │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ ├── xmlrpc.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── download.cpython-37.pyc │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ ├── link.cpython-37.pyc │ │ │ │ │ ├── wheel.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── scheme.cpython-37.pyc │ │ │ │ │ ├── candidate.cpython-37.pyc │ │ │ │ │ ├── direct_url.cpython-37.pyc │ │ │ │ │ ├── search_scope.cpython-37.pyc │ │ │ │ │ ├── target_python.cpython-37.pyc │ │ │ │ │ ├── format_control.cpython-37.pyc │ │ │ │ │ └── selection_prefs.cpython-37.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── cache.cpython-37.pyc │ │ │ │ ├── main.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── build_env.cpython-37.pyc │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ ├── locations.cpython-37.pyc │ │ │ │ ├── pyproject.cpython-37.pyc │ │ │ │ ├── configuration.cpython-37.pyc │ │ │ │ ├── wheel_builder.cpython-37.pyc │ │ │ │ └── self_outdated_check.cpython-37.pyc │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── main.cpython-37.pyc │ │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── spinners.cpython-37.pyc │ │ │ │ │ ├── cmdoptions.cpython-37.pyc │ │ │ │ │ ├── main_parser.cpython-37.pyc │ │ │ │ │ ├── req_command.cpython-37.pyc │ │ │ │ │ ├── base_command.cpython-37.pyc │ │ │ │ │ ├── progress_bars.cpython-37.pyc │ │ │ │ │ ├── status_codes.cpython-37.pyc │ │ │ │ │ ├── autocompletion.cpython-37.pyc │ │ │ │ │ └── command_context.cpython-37.pyc │ │ │ │ └── status_codes.py │ │ │ ├── vcs │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── git.cpython-37.pyc │ │ │ │ │ ├── bazaar.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── mercurial.cpython-37.pyc │ │ │ │ │ ├── subversion.cpython-37.pyc │ │ │ │ │ └── versioncontrol.cpython-37.pyc │ │ │ │ └── __init__.py │ │ │ ├── req │ │ │ │ └── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── req_file.cpython-37.pyc │ │ │ │ │ ├── req_set.cpython-37.pyc │ │ │ │ │ ├── req_install.cpython-37.pyc │ │ │ │ │ ├── req_tracker.cpython-37.pyc │ │ │ │ │ ├── constructors.cpython-37.pyc │ │ │ │ │ └── req_uninstall.cpython-37.pyc │ │ │ ├── commands │ │ │ │ └── __pycache__ │ │ │ │ │ ├── cache.cpython-37.pyc │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ ├── debug.cpython-37.pyc │ │ │ │ │ ├── freeze.cpython-37.pyc │ │ │ │ │ ├── hash.cpython-37.pyc │ │ │ │ │ ├── help.cpython-37.pyc │ │ │ │ │ ├── list.cpython-37.pyc │ │ │ │ │ ├── search.cpython-37.pyc │ │ │ │ │ ├── show.cpython-37.pyc │ │ │ │ │ ├── wheel.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── download.cpython-37.pyc │ │ │ │ │ ├── install.cpython-37.pyc │ │ │ │ │ ├── completion.cpython-37.pyc │ │ │ │ │ ├── uninstall.cpython-37.pyc │ │ │ │ │ └── configuration.cpython-37.pyc │ │ │ ├── distributions │ │ │ │ └── __pycache__ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ ├── sdist.cpython-37.pyc │ │ │ │ │ ├── wheel.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── installed.cpython-37.pyc │ │ │ ├── main.py │ │ │ └── __init__.py │ │ ├── _vendor │ │ │ ├── chardet │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── chardetect.cpython-37.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── enums.cpython-37.pyc │ │ │ │ │ ├── escsm.cpython-37.pyc │ │ │ │ │ ├── jpcntx.cpython-37.pyc │ │ │ │ │ ├── mbcssm.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── big5freq.cpython-37.pyc │ │ │ │ │ ├── escprober.cpython-37.pyc │ │ │ │ │ ├── euckrfreq.cpython-37.pyc │ │ │ │ │ ├── euctwfreq.cpython-37.pyc │ │ │ │ │ ├── jisfreq.cpython-37.pyc │ │ │ │ │ ├── version.cpython-37.pyc │ │ │ │ │ ├── big5prober.cpython-37.pyc │ │ │ │ │ ├── cp949prober.cpython-37.pyc │ │ │ │ │ ├── eucjpprober.cpython-37.pyc │ │ │ │ │ ├── euckrprober.cpython-37.pyc │ │ │ │ │ ├── euctwprober.cpython-37.pyc │ │ │ │ │ ├── gb2312freq.cpython-37.pyc │ │ │ │ │ ├── sjisprober.cpython-37.pyc │ │ │ │ │ ├── utf8prober.cpython-37.pyc │ │ │ │ │ ├── charsetprober.cpython-37.pyc │ │ │ │ │ ├── gb2312prober.cpython-37.pyc │ │ │ │ │ ├── hebrewprober.cpython-37.pyc │ │ │ │ │ ├── langgreekmodel.cpython-37.pyc │ │ │ │ │ ├── langthaimodel.cpython-37.pyc │ │ │ │ │ ├── latin1prober.cpython-37.pyc │ │ │ │ │ ├── chardistribution.cpython-37.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-37.pyc │ │ │ │ │ ├── langturkishmodel.cpython-37.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-37.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-37.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-37.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-37.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-37.pyc │ │ │ │ │ ├── codingstatemachine.cpython-37.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-37.pyc │ │ │ │ │ ├── langcyrillicmodel.cpython-37.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-37.pyc │ │ │ │ │ └── universaldetector.cpython-37.pyc │ │ │ │ └── version.py │ │ │ ├── html5lib │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ │ ├── lint.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── sanitizer.cpython-37.pyc │ │ │ │ │ │ ├── whitespace.cpython-37.pyc │ │ │ │ │ │ ├── optionaltags.cpython-37.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-37.pyc │ │ │ │ │ │ └── alphabeticalattributes.cpython-37.pyc │ │ │ │ │ └── base.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _utils.cpython-37.pyc │ │ │ │ │ ├── _ihatexml.cpython-37.pyc │ │ │ │ │ ├── _tokenizer.cpython-37.pyc │ │ │ │ │ ├── constants.cpython-37.pyc │ │ │ │ │ ├── serializer.cpython-37.pyc │ │ │ │ │ ├── _inputstream.cpython-37.pyc │ │ │ │ │ └── html5parser.cpython-37.pyc │ │ │ │ ├── _trie │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── py.cpython-37.pyc │ │ │ │ │ │ ├── _base.cpython-37.pyc │ │ │ │ │ │ ├── datrie.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ │ └── __init__.py │ │ │ │ ├── treewalkers │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── dom.cpython-37.pyc │ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ │ ├── etree.cpython-37.pyc │ │ │ │ │ │ ├── genshi.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── etree_lxml.cpython-37.pyc │ │ │ │ ├── treeadapters │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── sax.cpython-37.pyc │ │ │ │ │ │ ├── genshi.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ └── treebuilders │ │ │ │ │ └── __pycache__ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ ├── dom.cpython-37.pyc │ │ │ │ │ ├── etree.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── etree_lxml.cpython-37.pyc │ │ │ ├── urllib3 │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ │ ├── bindings.cpython-37.pyc │ │ │ │ │ │ │ └── low_level.cpython-37.pyc │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── socks.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-37.pyc │ │ │ │ │ │ ├── appengine.cpython-37.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-37.pyc │ │ │ │ │ │ ├── securetransport.cpython-37.pyc │ │ │ │ │ │ └── _appengine_environ.cpython-37.pyc │ │ │ │ ├── packages │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ │ └── makefile.cpython-37.pyc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── six.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── _implementation.cpython-37.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── fields.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── filepost.cpython-37.pyc │ │ │ │ │ ├── request.cpython-37.pyc │ │ │ │ │ ├── response.cpython-37.pyc │ │ │ │ │ ├── connection.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── poolmanager.cpython-37.pyc │ │ │ │ │ ├── _collections.cpython-37.pyc │ │ │ │ │ └── connectionpool.cpython-37.pyc │ │ │ │ └── util │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── ssl_.cpython-37.pyc │ │ │ │ │ ├── url.cpython-37.pyc │ │ │ │ │ ├── wait.cpython-37.pyc │ │ │ │ │ ├── queue.cpython-37.pyc │ │ │ │ │ ├── retry.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── request.cpython-37.pyc │ │ │ │ │ ├── response.cpython-37.pyc │ │ │ │ │ ├── timeout.cpython-37.pyc │ │ │ │ │ └── connection.cpython-37.pyc │ │ │ │ │ └── queue.py │ │ │ ├── msgpack │ │ │ │ ├── _version.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── ext.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _version.cpython-37.pyc │ │ │ │ │ ├── fallback.cpython-37.pyc │ │ │ │ │ └── exceptions.cpython-37.pyc │ │ │ ├── idna │ │ │ │ ├── package_data.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ │ ├── codec.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── idnadata.cpython-37.pyc │ │ │ │ │ ├── intranges.cpython-37.pyc │ │ │ │ │ ├── uts46data.cpython-37.pyc │ │ │ │ │ └── package_data.cpython-37.pyc │ │ │ │ └── compat.py │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── __main__.cpython-37.pyc │ │ │ │ └── __main__.py │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── build.cpython-37.pyc │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ ├── meta.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── colorlog.cpython-37.pyc │ │ │ │ │ ├── dirtools.cpython-37.pyc │ │ │ │ │ ├── envbuild.cpython-37.pyc │ │ │ │ │ ├── wrappers.cpython-37.pyc │ │ │ │ │ └── _in_process.cpython-37.pyc │ │ │ ├── cachecontrol │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── file_cache.cpython-37.pyc │ │ │ │ │ │ └── redis_cache.cpython-37.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── _cmd.cpython-37.pyc │ │ │ │ │ ├── cache.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── adapter.cpython-37.pyc │ │ │ │ │ ├── serialize.cpython-37.pyc │ │ │ │ │ ├── wrapper.cpython-37.pyc │ │ │ │ │ ├── controller.cpython-37.pyc │ │ │ │ │ ├── filewrapper.cpython-37.pyc │ │ │ │ │ └── heuristics.cpython-37.pyc │ │ │ │ └── __init__.py │ │ │ ├── distlib │ │ │ │ ├── t32.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── w32.exe │ │ │ │ ├── w64.exe │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── util.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ ├── wheel.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── database.cpython-37.pyc │ │ │ │ │ ├── locators.cpython-37.pyc │ │ │ │ │ ├── manifest.cpython-37.pyc │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ ├── metadata.cpython-37.pyc │ │ │ │ │ ├── resources.cpython-37.pyc │ │ │ │ │ ├── scripts.cpython-37.pyc │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ └── _backport │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── misc.cpython-37.pyc │ │ │ │ │ ├── shutil.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── sysconfig.cpython-37.pyc │ │ │ │ │ └── tarfile.cpython-37.pyc │ │ │ │ │ └── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── six.cpython-37.pyc │ │ │ │ ├── toml.cpython-37.pyc │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ ├── distro.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── ipaddress.cpython-37.pyc │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ ├── retrying.cpython-37.pyc │ │ │ │ └── contextlib2.cpython-37.pyc │ │ │ ├── toml │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── tz.cpython-37.pyc │ │ │ │ │ ├── decoder.cpython-37.pyc │ │ │ │ │ ├── encoder.cpython-37.pyc │ │ │ │ │ ├── ordered.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── ordered.py │ │ │ │ └── __init__.py │ │ │ ├── progress │ │ │ │ └── __pycache__ │ │ │ │ │ ├── bar.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── counter.cpython-37.pyc │ │ │ │ │ └── spinner.cpython-37.pyc │ │ │ ├── requests │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── api.cpython-37.pyc │ │ │ │ │ ├── auth.cpython-37.pyc │ │ │ │ │ ├── certs.cpython-37.pyc │ │ │ │ │ ├── help.cpython-37.pyc │ │ │ │ │ ├── hooks.cpython-37.pyc │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── adapters.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── cookies.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── packages.cpython-37.pyc │ │ │ │ │ ├── sessions.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── structures.cpython-37.pyc │ │ │ │ │ ├── __version__.cpython-37.pyc │ │ │ │ │ ├── status_codes.cpython-37.pyc │ │ │ │ │ └── _internal_utils.cpython-37.pyc │ │ │ │ ├── __version__.py │ │ │ │ └── certs.py │ │ │ ├── colorama │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── ansi.cpython-37.pyc │ │ │ │ │ ├── win32.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── winterm.cpython-37.pyc │ │ │ │ │ ├── initialise.cpython-37.pyc │ │ │ │ │ └── ansitowin32.cpython-37.pyc │ │ │ │ └── __init__.py │ │ │ ├── packaging │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── tags.cpython-37.pyc │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ ├── _typing.cpython-37.pyc │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ ├── version.cpython-37.pyc │ │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ │ └── specifiers.cpython-37.pyc │ │ │ │ └── __init__.py │ │ │ ├── resolvelib │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── structs.cpython-37.pyc │ │ │ │ │ ├── providers.cpython-37.pyc │ │ │ │ │ ├── reporters.cpython-37.pyc │ │ │ │ │ └── resolvers.cpython-37.pyc │ │ │ │ └── __init__.py │ │ │ ├── webencodings │ │ │ │ └── __pycache__ │ │ │ │ │ ├── labels.cpython-37.pyc │ │ │ │ │ ├── tests.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── mklabels.cpython-37.pyc │ │ │ │ │ └── x_user_defined.cpython-37.pyc │ │ │ ├── pkg_resources │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── py31compat.cpython-37.pyc │ │ │ │ └── py31compat.py │ │ │ └── vendor.txt │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── __main__.cpython-37.pyc │ │ └── __init__.py │ │ ├── setuptools │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── six.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ └── ordered_set.cpython-37.pyc │ │ │ └── packaging │ │ │ │ └── __pycache__ │ │ │ │ ├── tags.cpython-37.pyc │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ ├── version.cpython-37.pyc │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── specifiers.cpython-37.pyc │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ └── requirements.cpython-37.pyc │ │ ├── cli.exe │ │ ├── gui.exe │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── __pycache__ │ │ │ ├── _imp.cpython-37.pyc │ │ │ ├── dist.cpython-37.pyc │ │ │ ├── glob.cpython-37.pyc │ │ │ ├── msvc.cpython-37.pyc │ │ │ ├── wheel.cpython-37.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── config.cpython-37.pyc │ │ │ ├── dep_util.cpython-37.pyc │ │ │ ├── depends.cpython-37.pyc │ │ │ ├── errors.cpython-37.pyc │ │ │ ├── launch.cpython-37.pyc │ │ │ ├── monkey.cpython-37.pyc │ │ │ ├── sandbox.cpython-37.pyc │ │ │ ├── version.cpython-37.pyc │ │ │ ├── build_meta.cpython-37.pyc │ │ │ ├── extension.cpython-37.pyc │ │ │ ├── installer.cpython-37.pyc │ │ │ ├── lib2to3_ex.cpython-37.pyc │ │ │ ├── namespaces.cpython-37.pyc │ │ │ ├── py27compat.cpython-37.pyc │ │ │ ├── py31compat.cpython-37.pyc │ │ │ ├── py33compat.cpython-37.pyc │ │ │ ├── py34compat.cpython-37.pyc │ │ │ ├── site-patch.cpython-37.pyc │ │ │ ├── archive_util.cpython-37.pyc │ │ │ ├── package_index.cpython-37.pyc │ │ │ ├── ssl_support.cpython-37.pyc │ │ │ ├── unicode_utils.cpython-37.pyc │ │ │ ├── windows_support.cpython-37.pyc │ │ │ └── _deprecation_warning.cpython-37.pyc │ │ ├── script.tmpl │ │ ├── command │ │ │ ├── __pycache__ │ │ │ │ ├── alias.cpython-37.pyc │ │ │ │ ├── sdist.cpython-37.pyc │ │ │ │ ├── test.cpython-37.pyc │ │ │ │ ├── develop.cpython-37.pyc │ │ │ │ ├── install.cpython-37.pyc │ │ │ │ ├── rotate.cpython-37.pyc │ │ │ │ ├── setopt.cpython-37.pyc │ │ │ │ ├── upload.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── bdist_egg.cpython-37.pyc │ │ │ │ ├── bdist_rpm.cpython-37.pyc │ │ │ │ ├── build_clib.cpython-37.pyc │ │ │ │ ├── build_ext.cpython-37.pyc │ │ │ │ ├── build_py.cpython-37.pyc │ │ │ │ ├── dist_info.cpython-37.pyc │ │ │ │ ├── egg_info.cpython-37.pyc │ │ │ │ ├── py36compat.cpython-37.pyc │ │ │ │ ├── register.cpython-37.pyc │ │ │ │ ├── saveopts.cpython-37.pyc │ │ │ │ ├── easy_install.cpython-37.pyc │ │ │ │ ├── install_lib.cpython-37.pyc │ │ │ │ ├── upload_docs.cpython-37.pyc │ │ │ │ ├── bdist_wininst.cpython-37.pyc │ │ │ │ ├── install_scripts.cpython-37.pyc │ │ │ │ └── install_egg_info.cpython-37.pyc │ │ │ ├── upload.py │ │ │ ├── register.py │ │ │ └── __init__.py │ │ ├── version.py │ │ ├── extern │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── script (dev).tmpl │ │ ├── _deprecation_warning.py │ │ ├── py34compat.py │ │ └── errors.py │ │ ├── pkg_resources │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── six.cpython-37.pyc │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── pyparsing.cpython-37.pyc │ │ │ └── packaging │ │ │ │ ├── __pycache__ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ ├── version.cpython-37.pyc │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ └── specifiers.cpython-37.pyc │ │ │ │ ├── utils.py │ │ │ │ └── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── py2_warn.cpython-37.pyc │ │ │ └── py31compat.cpython-37.pyc │ │ ├── extern │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── py2_warn.py │ │ └── py31compat.py │ │ ├── pip-20.1.1.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── WHEEL │ │ └── entry_points.txt │ │ ├── setuptools-47.1.0.dist-info │ │ ├── zip-safe │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── WHEEL │ │ └── dependency_links.txt │ │ ├── easy_install.py │ │ └── __pycache__ │ │ └── easy_install.cpython-37.pyc ├── Scripts │ ├── pip.exe │ ├── pip3.exe │ ├── pip3.7.exe │ ├── python.exe │ ├── pythonw.exe │ ├── easy_install.exe │ ├── easy_install-3.7.exe │ └── deactivate.bat └── pyvenv.cfg ├── README.md ├── rasm.jpg ├── db.sqlite3 ├── requirements.txt └── static ├── css └── .DS_Store ├── images ├── bg.jpg ├── .DS_Store ├── about.png ├── car.png ├── img1.png ├── img2.png ├── img3.png ├── img4.png ├── logo.png ├── map.jpg ├── tes.jpg ├── tes1.jpg ├── thr.png ├── thr1.png ├── thr2.png ├── banner.jpg ├── loading.gif └── menu_icon.png ├── js ├── .DS_Store └── revolution │ ├── .DS_Store │ ├── js │ └── .DS_Store │ ├── assets │ ├── loader.gif │ ├── gridtile.png │ ├── coloredbg.png │ ├── gridtile_3x3.png │ ├── gridtile_white.png │ └── gridtile_3x3_white.png │ ├── css │ ├── openhand.html │ └── closedhand.html │ └── fonts │ ├── revicons │ ├── revicons90c6.eot │ ├── revicons90c6.ttf │ └── revicons90c6.woff │ └── pe-icon-7-stroke │ └── fonts │ ├── Pe-icon-7-strokebb1d.eot │ ├── Pe-icon-7-strokebb1d.ttf │ ├── Pe-icon-7-strokebb1d.woff │ └── Pe-icon-7-stroked41d.eot └── fonts ├── FontAwesome.otf ├── IcoMoon-Free.ttf ├── Poppins-Black.ttf ├── Poppins-Bold.ttf ├── Poppins-Light.ttf ├── Poppins-Thin.ttf ├── Poppins-Italic.ttf ├── Poppins-Medium.ttf ├── Poppins-Regular.ttf ├── Poppins-SemiBold.ttf ├── Poppins-BoldItalic.ttf ├── Poppins-ExtraBold.ttf ├── Poppins-ExtraLight.ttf ├── Poppins-ThinItalic.ttf ├── Poppins-BlackItalic.ttf ├── Poppins-LightItalic.ttf ├── Poppins-MediumItalic.ttf ├── fontawesome-webfont.eot ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── Poppins-ExtraBoldItalic.ttf ├── Poppins-SemiBoldItalic.ttf └── Poppins-ExtraLightItalic.ttf /blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Static file in django 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-20.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-47.1.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-20.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-47.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.9' 2 | 3 | -------------------------------------------------------------------------------- /rasm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/rasm.jpg -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/requirements.txt -------------------------------------------------------------------------------- /env/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Scripts/pip.exe -------------------------------------------------------------------------------- /env/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Scripts/pip3.exe -------------------------------------------------------------------------------- /static/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/css/.DS_Store -------------------------------------------------------------------------------- /static/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/bg.jpg -------------------------------------------------------------------------------- /static/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/.DS_Store -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-47.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /env/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /env/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Scripts/python.exe -------------------------------------------------------------------------------- /env/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Scripts/pythonw.exe -------------------------------------------------------------------------------- /static/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/.DS_Store -------------------------------------------------------------------------------- /static/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/about.png -------------------------------------------------------------------------------- /static/images/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/car.png -------------------------------------------------------------------------------- /static/images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/img1.png -------------------------------------------------------------------------------- /static/images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/img2.png -------------------------------------------------------------------------------- /static/images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/img3.png -------------------------------------------------------------------------------- /static/images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/img4.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/map.jpg -------------------------------------------------------------------------------- /static/images/tes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/tes.jpg -------------------------------------------------------------------------------- /static/images/tes1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/tes1.jpg -------------------------------------------------------------------------------- /static/images/thr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/thr.png -------------------------------------------------------------------------------- /static/images/thr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/thr1.png -------------------------------------------------------------------------------- /static/images/thr2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/thr2.png -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /static/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/banner.jpg -------------------------------------------------------------------------------- /static/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/loading.gif -------------------------------------------------------------------------------- /env/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Scripts/easy_install.exe -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/images/menu_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/images/menu_icon.png -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /static/fonts/IcoMoon-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/IcoMoon-Free.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-Black.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /static/js/revolution/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/.DS_Store -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.04.05.1" 4 | -------------------------------------------------------------------------------- /env/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /static/fonts/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /static/js/revolution/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/js/.DS_Store -------------------------------------------------------------------------------- /static/fonts/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /blog/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/blog/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /blog/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/blog/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/core/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/core/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/core/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/core/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/core/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /env/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\user\AppData\Local\Programs\Python\Python37 2 | include-system-site-packages = false 3 | version = 3.7.9 4 | -------------------------------------------------------------------------------- /static/fonts/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/js/revolution/assets/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/assets/loader.gif -------------------------------------------------------------------------------- /static/js/revolution/css/openhand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/css/openhand.html -------------------------------------------------------------------------------- /blog/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/blog/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /blog/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/blog/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/core/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /static/fonts/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /static/js/revolution/assets/gridtile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/assets/gridtile.png -------------------------------------------------------------------------------- /static/js/revolution/css/closedhand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/css/closedhand.html -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.8.2' 5 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /static/fonts/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/fonts/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /static/js/revolution/assets/coloredbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/assets/coloredbg.png -------------------------------------------------------------------------------- /static/js/revolution/assets/gridtile_3x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/assets/gridtile_3x3.png -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /static/js/revolution/assets/gridtile_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/assets/gridtile_white.png -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-47.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /static/js/revolution/assets/gridtile_3x3_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/assets/gridtile_3x3_white.png -------------------------------------------------------------------------------- /core/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/core/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /static/js/revolution/fonts/revicons/revicons90c6.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/fonts/revicons/revicons90c6.eot -------------------------------------------------------------------------------- /static/js/revolution/fonts/revicons/revicons90c6.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/fonts/revicons/revicons90c6.ttf -------------------------------------------------------------------------------- /static/js/revolution/fonts/revicons/revicons90c6.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/fonts/revicons/revicons90c6.woff -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CoreConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'core' 7 | -------------------------------------------------------------------------------- /env/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- 1 | """Run the EasyInstall command""" 2 | 3 | if __name__ == '__main__': 4 | from setuptools.command.easy_install import main 5 | main() 6 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-20.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /env/Lib/site-packages/__pycache__/easy_install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/__pycache__/easy_install.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ("ssl_match_hostname",) 6 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/toml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/__pycache__/toml.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/_imp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/_imp.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/dist.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/dist.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/glob.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/glob.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/msvc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/msvc.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /blog/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path,include 3 | 4 | urlpatterns = [ 5 | path('admin/', admin.site.urls), 6 | path('',include('core.urls')) 7 | ] 8 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/toml/__pycache__/tz.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/toml/__pycache__/tz.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/depends.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/depends.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/errors.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/errors.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/launch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/launch.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/monkey.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/monkey.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-20.1.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal.cli.main:main 3 | pip3 = pip._internal.cli.main:main 4 | pip3.8 = pip._internal.cli.main:main 5 | 6 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/extension.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/extension.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/installer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/installer.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/__pycache__/contextlib2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/__pycache__/contextlib2.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/toml/__pycache__/decoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/toml/__pycache__/decoder.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/toml/__pycache__/encoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/toml/__pycache__/encoder.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/toml/__pycache__/ordered.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/toml/__pycache__/ordered.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/__pycache__/py2_warn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/__pycache__/py2_warn.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/package_index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/package_index.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/test.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/test.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | 3 | try: 4 | __version__ = pkg_resources.get_distribution('setuptools').version 5 | except Exception: 6 | __version__ = 'unknown' 7 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/toml/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/toml/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/install.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /static/js/revolution/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-strokebb1d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-strokebb1d.eot -------------------------------------------------------------------------------- /static/js/revolution/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-strokebb1d.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-strokebb1d.ttf -------------------------------------------------------------------------------- /static/js/revolution/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-strokebb1d.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-strokebb1d.woff -------------------------------------------------------------------------------- /static/js/revolution/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroked41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/static/js/revolution/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroked41d.eot -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_typing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_typing.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/register.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/register.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langcyrillicmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langcyrillicmodel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/static_django/HEAD/env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-37.pyc -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-DEV-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').require(%(spec)r) 4 | __file__ = %(dev_path)r 5 | with open(__file__) as f: 6 | exec(compile(f.read(), __file__, 'exec')) 7 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- 1 | class SetuptoolsDeprecationWarning(Warning): 2 | """ 3 | Base class for warning deprecations in ``setuptools`` 4 | 5 | This class is not derived from ``DeprecationWarning``, and as such is 6 | visible by default. 7 | """ 8 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.3' 7 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-47.1.0.dist-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/source/c/certifi/certifi-2016.9.26.tar.gz#md5=baa81e951a29958563689d868ef1064d 2 | https://files.pythonhosted.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2 3 | -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from .views import * 3 | 4 | urlpatterns = [ 5 | path('', car), 6 | path('index.html',home), 7 | path('about.html/',about), 8 | path('contact.html/',contact), 9 | path('furnitures.html/',furnitures), 10 | path('testimonial.html/',testimonial) 11 | ] 12 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- 1 | import importlib 2 | 3 | try: 4 | import importlib.util 5 | except ImportError: 6 | pass 7 | 8 | 9 | try: 10 | module_from_spec = importlib.util.module_from_spec 11 | except AttributeError: 12 | def module_from_spec(spec): 13 | return spec.loader.load_module(spec.name) 14 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | 3 | from pip._vendor.certifi import contents, where 4 | 5 | parser = argparse.ArgumentParser() 6 | parser.add_argument("-c", "--contents", action="store_true") 7 | args = parser.parse_args() 8 | 9 | if args.contents: 10 | print(contents()) 11 | else: 12 | print(where()) 13 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.6" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | # pylint:disable=wrong-import-position 8 | try: 9 | from .datrie import Trie as DATrie 10 | except ImportError: 11 | pass 12 | else: 13 | Trie = DATrie 14 | # pylint:enable=wrong-import-position 15 | -------------------------------------------------------------------------------- /blog/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for blog project. 3 | 4 | It exposes the ASGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.asgi import get_asgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'blog.settings') 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /blog/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for blog project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'blog.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /env/Scripts/deactivate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if defined _OLD_VIRTUAL_PROMPT ( 4 | set "PROMPT=%_OLD_VIRTUAL_PROMPT%" 5 | ) 6 | set _OLD_VIRTUAL_PROMPT= 7 | 8 | if defined _OLD_VIRTUAL_PYTHONHOME ( 9 | set "PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%" 10 | set _OLD_VIRTUAL_PYTHONHOME= 11 | ) 12 | 13 | if defined _OLD_VIRTUAL_PATH ( 14 | set "PATH=%_OLD_VIRTUAL_PATH%" 15 | ) 16 | 17 | set _OLD_VIRTUAL_PATH= 18 | 19 | set VIRTUAL_ENV= 20 | 21 | :END 22 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/toml/ordered.py: -------------------------------------------------------------------------------- 1 | from collections import OrderedDict 2 | from pip._vendor.toml import TomlEncoder 3 | from pip._vendor.toml import TomlDecoder 4 | 5 | 6 | class TomlOrderedDecoder(TomlDecoder): 7 | 8 | def __init__(self): 9 | super(self.__class__, self).__init__(_dict=OrderedDict) 10 | 11 | 12 | class TomlOrderedEncoder(TomlEncoder): 13 | 14 | def __init__(self): 15 | super(self.__class__, self).__init__(_dict=OrderedDict) 16 | -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | def car(request): 4 | return render(request,'index.html') 5 | def home(request): 6 | return render(request,'index.html') 7 | def about(request): 8 | return render(request,'about.html') 9 | def contact(request): 10 | return render(request,'contact.html') 11 | def furnitures(request): 12 | return render(request,'furnitures.html') 13 | def testimonial(request): 14 | return render(request,'testimonial.html') 15 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/py2_warn.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import warnings 3 | import textwrap 4 | 5 | 6 | msg = textwrap.dedent(""" 7 | Encountered a version of Setuptools that no longer supports 8 | this version of Python. Please head to 9 | https://bit.ly/setuptools-py2-sunset for support. 10 | """) 11 | 12 | pre = "Setuptools no longer works on Python 2\n" 13 | 14 | if sys.version_info < (3,): 15 | warnings.warn(pre + "*" * 60 + msg + "*" * 60) 16 | raise SystemExit(32) 17 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import re 7 | 8 | 9 | _canonicalize_regex = re.compile(r"[-_.]+") 10 | 11 | 12 | def canonicalize_name(name): 13 | # This is taken from PEP 503. 14 | return _canonicalize_regex.sub("-", name).lower() 15 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- 1 | from pip._internal.utils.typing import MYPY_CHECK_RUNNING 2 | 3 | if MYPY_CHECK_RUNNING: 4 | from typing import Optional, List 5 | 6 | 7 | def main(args=None): 8 | # type: (Optional[List[str]]) -> int 9 | """This is preserved for old console scripts that may still be referencing 10 | it. 11 | 12 | For additional details, see https://github.com/pypa/pip/issues/7498. 13 | """ 14 | from pip._internal.utils.entrypoints import _wrapper 15 | 16 | return _wrapper(args) 17 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'https://requests.readthedocs.io' 8 | __version__ = '2.23.0' 9 | __build__ = 0x022300 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2020 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | from pip._internal.utils.typing import MYPY_CHECK_RUNNING 2 | 3 | if MYPY_CHECK_RUNNING: 4 | from typing import List, Optional 5 | 6 | 7 | __version__ = "20.1.1" 8 | 9 | 10 | def main(args=None): 11 | # type: (Optional[List[str]]) -> int 12 | """This is an internal API only meant for use by pip's own console scripts. 13 | 14 | For additional details, see https://github.com/pypa/pip/issues/7498. 15 | """ 16 | from pip._internal.utils.entrypoints import _wrapper 17 | 18 | return _wrapper(args) 19 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- 1 | from distutils import log 2 | from distutils.command import upload as orig 3 | 4 | from setuptools.errors import RemovedCommandError 5 | 6 | 7 | class upload(orig.upload): 8 | """Formerly used to upload packages to PyPI.""" 9 | 10 | def run(self): 11 | msg = ( 12 | "The upload command has been removed, use twine to upload " 13 | + "instead (https://pypi.org/p/twine)" 14 | ) 15 | 16 | self.announce("ERROR: " + msg, log.ERROR) 17 | raise RemovedCommandError(msg) 18 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- 1 | appdirs==1.4.3 2 | CacheControl==0.12.6 3 | colorama==0.4.3 4 | contextlib2==0.6.0.post1 5 | distlib==0.3.0 6 | distro==1.5.0 7 | html5lib==1.0.1 8 | ipaddress==1.0.23 # Only needed on 2.6 and 2.7 9 | msgpack==1.0.0 10 | packaging==20.3 11 | pep517==0.8.2 12 | progress==1.5 13 | pyparsing==2.4.7 14 | requests==2.23.0 15 | certifi==2020.04.05.1 16 | chardet==3.0.4 17 | idna==2.9 18 | urllib3==1.25.8 19 | resolvelib==0.3.0 20 | retrying==1.3.3 21 | setuptools==44.0.0 22 | six==1.14.0 23 | toml==0.10.0 24 | webencodings==0.5.1 25 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- 1 | from distutils import log 2 | import distutils.command.register as orig 3 | 4 | from setuptools.errors import RemovedCommandError 5 | 6 | 7 | class register(orig.register): 8 | """Formerly used to register packages on PyPI.""" 9 | 10 | def run(self): 11 | msg = ( 12 | "The register command has been removed, use twine to upload " 13 | + "instead (https://pypi.org/p/twine)" 14 | ) 15 | 16 | self.announce("ERROR: " + msg, log.ERROR) 17 | 18 | raise RemovedCommandError(msg) 19 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- 1 | import pip._internal.utils.inject_securetransport # noqa 2 | from pip._internal.utils.typing import MYPY_CHECK_RUNNING 3 | 4 | if MYPY_CHECK_RUNNING: 5 | from typing import Optional, List 6 | 7 | 8 | def main(args=None): 9 | # type: (Optional[List[str]]) -> int 10 | """This is preserved for old console scripts that may still be referencing 11 | it. 12 | 13 | For additional details, see https://github.com/pypa/pip/issues/7498. 14 | """ 15 | from pip._internal.utils.entrypoints import _wrapper 16 | 17 | return _wrapper(args) 18 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- 1 | """setuptools.errors 2 | 3 | Provides exceptions used by setuptools modules. 4 | """ 5 | 6 | from distutils.errors import DistutilsError 7 | 8 | 9 | class RemovedCommandError(DistutilsError, RuntimeError): 10 | """Error used for commands that have been removed in setuptools. 11 | 12 | Since ``setuptools`` is built on ``distutils``, simply removing a command 13 | from ``setuptools`` will make the behavior fall back to ``distutils``; this 14 | error is raised if a command exists in ``distutils`` but has been actively 15 | removed in ``setuptools``. 16 | """ 17 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, __copyright__, __email__, __license__, __summary__, __title__, 8 | __uri__, __version__ 9 | ) 10 | 11 | __all__ = [ 12 | "__title__", "__summary__", "__uri__", "__version__", "__author__", 13 | "__email__", "__license__", "__copyright__", 14 | ] 15 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/toml/__init__.py: -------------------------------------------------------------------------------- 1 | """Python module which parses and emits TOML. 2 | 3 | Released under the MIT license. 4 | """ 5 | 6 | from pip._vendor.toml import encoder 7 | from pip._vendor.toml import decoder 8 | 9 | __version__ = "0.10.0" 10 | _spec_ = "0.5.0" 11 | 12 | load = decoder.load 13 | loads = decoder.loads 14 | TomlDecoder = decoder.TomlDecoder 15 | TomlDecodeError = decoder.TomlDecodeError 16 | 17 | dump = encoder.dump 18 | dumps = encoder.dumps 19 | TomlEncoder = encoder.TomlEncoder 20 | TomlArraySeparatorEncoder = encoder.TomlArraySeparatorEncoder 21 | TomlPreserveInlineDictEncoder = encoder.TomlPreserveInlineDictEncoder 22 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- 1 | """Filetype information. 2 | """ 3 | from pip._internal.utils.typing import MYPY_CHECK_RUNNING 4 | 5 | if MYPY_CHECK_RUNNING: 6 | from typing import Tuple 7 | 8 | WHEEL_EXTENSION = '.whl' 9 | BZ2_EXTENSIONS = ('.tar.bz2', '.tbz') # type: Tuple[str, ...] 10 | XZ_EXTENSIONS = ('.tar.xz', '.txz', '.tlz', 11 | '.tar.lz', '.tar.lzma') # type: Tuple[str, ...] 12 | ZIP_EXTENSIONS = ('.zip', WHEEL_EXTENSION) # type: Tuple[str, ...] 13 | TAR_EXTENSIONS = ('.tar.gz', '.tgz', '.tar') # type: Tuple[str, ...] 14 | ARCHIVE_EXTENSIONS = ( 15 | ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS 16 | ) 17 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | 'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop', 3 | 'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts', 4 | 'sdist', 'setopt', 'test', 'install_egg_info', 'install_scripts', 5 | 'bdist_wininst', 'upload_docs', 'build_clib', 'dist_info', 6 | ] 7 | 8 | from distutils.command.bdist import bdist 9 | import sys 10 | 11 | from setuptools.command import install_scripts 12 | 13 | if 'egg' not in bdist.format_commands: 14 | bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") 15 | bdist.format_commands.append('egg') 16 | 17 | del bdist, sys 18 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from .extern import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | "__version__", 3 | "AbstractProvider", 4 | "AbstractResolver", 5 | "BaseReporter", 6 | "InconsistentCandidate", 7 | "Resolver", 8 | "RequirementsConflicted", 9 | "ResolutionError", 10 | "ResolutionImpossible", 11 | "ResolutionTooDeep", 12 | ] 13 | 14 | __version__ = "0.3.0" 15 | 16 | 17 | from .providers import AbstractProvider, AbstractResolver 18 | from .reporters import BaseReporter 19 | from .resolvers import ( 20 | InconsistentCandidate, 21 | RequirementsConflicted, 22 | Resolver, 23 | ResolutionError, 24 | ResolutionImpossible, 25 | ResolutionTooDeep, 26 | ) 27 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from pip._vendor import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- 1 | # Expose a limited set of classes and functions so callers outside of 2 | # the vcs package don't need to import deeper than `pip._internal.vcs`. 3 | # (The test directory and imports protected by MYPY_CHECK_RUNNING may 4 | # still need to import from a vcs sub-package.) 5 | # Import all vcs modules to register each VCS in the VcsSupport object. 6 | import pip._internal.vcs.bazaar 7 | import pip._internal.vcs.git 8 | import pip._internal.vcs.mercurial 9 | import pip._internal.vcs.subversion # noqa: F401 10 | from pip._internal.vcs.versioncontrol import ( # noqa: F401 11 | RemoteNotFoundError, 12 | is_url, 13 | make_vcs_requirement_url, 14 | vcs, 15 | ) 16 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, 8 | __copyright__, 9 | __email__, 10 | __license__, 11 | __summary__, 12 | __title__, 13 | __uri__, 14 | __version__, 15 | ) 16 | 17 | __all__ = [ 18 | "__title__", 19 | "__summary__", 20 | "__uri__", 21 | "__version__", 22 | "__author__", 23 | "__email__", 24 | "__license__", 25 | "__copyright__", 26 | ] 27 | --------------------------------------------------------------------------------