├── .idea ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── 学生管理系统.iml ├── README.md ├── __pycache__ └── app.cpython-39.pyc ├── app.py ├── static ├── CSS │ ├── bootstrap.css │ └── index_login.css └── img │ └── admin.jpg ├── templates ├── add.html ├── admin.html ├── change.html ├── login.html └── register.html └── venv ├── Lib └── site-packages │ ├── _distutils_hack │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── override.cpython-39.pyc │ └── override.py │ ├── distutils-precedence.pth │ ├── pip-22.1.1.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── __main__.cpython-39.pyc │ ├── _internal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── build_env.cpython-39.pyc │ │ │ ├── cache.cpython-39.pyc │ │ │ ├── configuration.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── main.cpython-39.pyc │ │ │ ├── pyproject.cpython-39.pyc │ │ │ ├── self_outdated_check.cpython-39.pyc │ │ │ └── wheel_builder.cpython-39.pyc │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── autocompletion.cpython-39.pyc │ │ │ │ ├── base_command.cpython-39.pyc │ │ │ │ ├── cmdoptions.cpython-39.pyc │ │ │ │ ├── command_context.cpython-39.pyc │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ ├── main_parser.cpython-39.pyc │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ ├── progress_bars.cpython-39.pyc │ │ │ │ ├── req_command.cpython-39.pyc │ │ │ │ ├── spinners.cpython-39.pyc │ │ │ │ └── status_codes.cpython-39.pyc │ │ │ ├── autocompletion.py │ │ │ ├── base_command.py │ │ │ ├── cmdoptions.py │ │ │ ├── command_context.py │ │ │ ├── main.py │ │ │ ├── main_parser.py │ │ │ ├── parser.py │ │ │ ├── progress_bars.py │ │ │ ├── req_command.py │ │ │ ├── spinners.py │ │ │ └── status_codes.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── completion.cpython-39.pyc │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ ├── hash.cpython-39.pyc │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ ├── list.cpython-39.pyc │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ ├── show.cpython-39.pyc │ │ │ │ ├── uninstall.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── cache.py │ │ │ ├── check.py │ │ │ ├── completion.py │ │ │ ├── configuration.py │ │ │ ├── debug.py │ │ │ ├── download.py │ │ │ ├── freeze.py │ │ │ ├── hash.py │ │ │ ├── help.py │ │ │ ├── index.py │ │ │ ├── install.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ ├── show.py │ │ │ ├── uninstall.py │ │ │ └── wheel.py │ │ ├── configuration.py │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── installed.cpython-39.pyc │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── base.py │ │ │ ├── installed.py │ │ │ ├── sdist.py │ │ │ └── wheel.py │ │ ├── exceptions.py │ │ ├── index │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── collector.cpython-39.pyc │ │ │ │ ├── package_finder.cpython-39.pyc │ │ │ │ └── sources.cpython-39.pyc │ │ │ ├── collector.py │ │ │ ├── package_finder.py │ │ │ └── sources.py │ │ ├── locations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _distutils.cpython-39.pyc │ │ │ │ ├── _sysconfig.cpython-39.pyc │ │ │ │ └── base.cpython-39.pyc │ │ │ ├── _distutils.py │ │ │ ├── _sysconfig.py │ │ │ └── base.py │ │ ├── main.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ └── pkg_resources.cpython-39.pyc │ │ │ ├── base.py │ │ │ ├── importlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ ├── _dists.cpython-39.pyc │ │ │ │ │ └── _envs.cpython-39.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _dists.py │ │ │ │ └── _envs.py │ │ │ └── pkg_resources.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── candidate.cpython-39.pyc │ │ │ │ ├── direct_url.cpython-39.pyc │ │ │ │ ├── format_control.cpython-39.pyc │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ ├── link.cpython-39.pyc │ │ │ │ ├── scheme.cpython-39.pyc │ │ │ │ ├── search_scope.cpython-39.pyc │ │ │ │ ├── selection_prefs.cpython-39.pyc │ │ │ │ ├── target_python.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── candidate.py │ │ │ ├── direct_url.py │ │ │ ├── format_control.py │ │ │ ├── index.py │ │ │ ├── link.py │ │ │ ├── scheme.py │ │ │ ├── search_scope.py │ │ │ ├── selection_prefs.py │ │ │ ├── target_python.py │ │ │ └── wheel.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ ├── lazy_wheel.cpython-39.pyc │ │ │ │ ├── session.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── xmlrpc.cpython-39.pyc │ │ │ ├── auth.py │ │ │ ├── cache.py │ │ │ ├── download.py │ │ │ ├── lazy_wheel.py │ │ │ ├── session.py │ │ │ ├── utils.py │ │ │ └── xmlrpc.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ └── prepare.cpython-39.pyc │ │ │ ├── build │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── build_tracker.cpython-39.pyc │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ ├── metadata_editable.cpython-39.pyc │ │ │ │ │ ├── metadata_legacy.cpython-39.pyc │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ ├── wheel_editable.cpython-39.pyc │ │ │ │ │ └── wheel_legacy.cpython-39.pyc │ │ │ │ ├── build_tracker.py │ │ │ │ ├── metadata.py │ │ │ │ ├── metadata_editable.py │ │ │ │ ├── metadata_legacy.py │ │ │ │ ├── wheel.py │ │ │ │ ├── wheel_editable.py │ │ │ │ └── wheel_legacy.py │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ ├── install │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── editable_legacy.cpython-39.pyc │ │ │ │ │ ├── legacy.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── editable_legacy.py │ │ │ │ ├── legacy.py │ │ │ │ └── wheel.py │ │ │ └── prepare.py │ │ ├── pyproject.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ ├── req_file.cpython-39.pyc │ │ │ │ ├── req_install.cpython-39.pyc │ │ │ │ ├── req_set.cpython-39.pyc │ │ │ │ └── req_uninstall.cpython-39.pyc │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ └── req_uninstall.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── base.cpython-39.pyc │ │ │ ├── base.py │ │ │ ├── legacy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ └── resolver.py │ │ │ └── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── candidates.cpython-39.pyc │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ ├── found_candidates.cpython-39.pyc │ │ │ │ ├── provider.cpython-39.pyc │ │ │ │ ├── reporter.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── candidates.py │ │ │ │ ├── factory.py │ │ │ │ ├── found_candidates.py │ │ │ │ ├── provider.py │ │ │ │ ├── reporter.py │ │ │ │ ├── requirements.py │ │ │ │ └── resolver.py │ │ ├── self_outdated_check.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _log.cpython-39.pyc │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── compatibility_tags.cpython-39.pyc │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ ├── direct_url_helpers.cpython-39.pyc │ │ │ │ ├── distutils_args.cpython-39.pyc │ │ │ │ ├── egg_link.cpython-39.pyc │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ ├── entrypoints.cpython-39.pyc │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ ├── filetypes.cpython-39.pyc │ │ │ │ ├── glibc.cpython-39.pyc │ │ │ │ ├── hashes.cpython-39.pyc │ │ │ │ ├── inject_securetransport.cpython-39.pyc │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ ├── packaging.cpython-39.pyc │ │ │ │ ├── setuptools_build.cpython-39.pyc │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ ├── temp_dir.cpython-39.pyc │ │ │ │ ├── unpacking.cpython-39.pyc │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ ├── virtualenv.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── _log.py │ │ │ ├── appdirs.py │ │ │ ├── compat.py │ │ │ ├── compatibility_tags.py │ │ │ ├── datetime.py │ │ │ ├── deprecation.py │ │ │ ├── direct_url_helpers.py │ │ │ ├── distutils_args.py │ │ │ ├── egg_link.py │ │ │ ├── encoding.py │ │ │ ├── entrypoints.py │ │ │ ├── filesystem.py │ │ │ ├── filetypes.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── inject_securetransport.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── models.py │ │ │ ├── packaging.py │ │ │ ├── setuptools_build.py │ │ │ ├── subprocess.py │ │ │ ├── temp_dir.py │ │ │ ├── unpacking.py │ │ │ ├── urls.py │ │ │ ├── virtualenv.py │ │ │ └── wheel.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── bazaar.cpython-39.pyc │ │ │ │ ├── git.cpython-39.pyc │ │ │ │ ├── mercurial.cpython-39.pyc │ │ │ │ ├── subversion.cpython-39.pyc │ │ │ │ └── versioncontrol.cpython-39.pyc │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ ├── subversion.py │ │ │ └── versioncontrol.py │ │ └── wheel_builder.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── six.cpython-39.pyc │ │ │ └── typing_extensions.cpython-39.pyc │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _cmd.cpython-39.pyc │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── controller.cpython-39.pyc │ │ │ │ ├── filewrapper.cpython-39.pyc │ │ │ │ ├── heuristics.cpython-39.pyc │ │ │ │ ├── serialize.cpython-39.pyc │ │ │ │ └── wrapper.cpython-39.pyc │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── file_cache.cpython-39.pyc │ │ │ │ │ └── redis_cache.cpython-39.pyc │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ └── core.cpython-39.pyc │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── big5freq.cpython-39.pyc │ │ │ │ ├── big5prober.cpython-39.pyc │ │ │ │ ├── chardistribution.cpython-39.pyc │ │ │ │ ├── charsetgroupprober.cpython-39.pyc │ │ │ │ ├── charsetprober.cpython-39.pyc │ │ │ │ ├── codingstatemachine.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── cp949prober.cpython-39.pyc │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ ├── escprober.cpython-39.pyc │ │ │ │ ├── escsm.cpython-39.pyc │ │ │ │ ├── eucjpprober.cpython-39.pyc │ │ │ │ ├── euckrfreq.cpython-39.pyc │ │ │ │ ├── euckrprober.cpython-39.pyc │ │ │ │ ├── euctwfreq.cpython-39.pyc │ │ │ │ ├── euctwprober.cpython-39.pyc │ │ │ │ ├── gb2312freq.cpython-39.pyc │ │ │ │ ├── gb2312prober.cpython-39.pyc │ │ │ │ ├── hebrewprober.cpython-39.pyc │ │ │ │ ├── jisfreq.cpython-39.pyc │ │ │ │ ├── jpcntx.cpython-39.pyc │ │ │ │ ├── langbulgarianmodel.cpython-39.pyc │ │ │ │ ├── langgreekmodel.cpython-39.pyc │ │ │ │ ├── langhebrewmodel.cpython-39.pyc │ │ │ │ ├── langhungarianmodel.cpython-39.pyc │ │ │ │ ├── langrussianmodel.cpython-39.pyc │ │ │ │ ├── langthaimodel.cpython-39.pyc │ │ │ │ ├── langturkishmodel.cpython-39.pyc │ │ │ │ ├── latin1prober.cpython-39.pyc │ │ │ │ ├── mbcharsetprober.cpython-39.pyc │ │ │ │ ├── mbcsgroupprober.cpython-39.pyc │ │ │ │ ├── mbcssm.cpython-39.pyc │ │ │ │ ├── sbcharsetprober.cpython-39.pyc │ │ │ │ ├── sbcsgroupprober.cpython-39.pyc │ │ │ │ ├── sjisprober.cpython-39.pyc │ │ │ │ ├── universaldetector.cpython-39.pyc │ │ │ │ ├── utf8prober.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── chardetect.cpython-39.pyc │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langrussianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── languages.cpython-39.pyc │ │ │ │ └── languages.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ ├── ansitowin32.cpython-39.pyc │ │ │ │ ├── initialise.cpython-39.pyc │ │ │ │ ├── win32.cpython-39.pyc │ │ │ │ └── winterm.cpython-39.pyc │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ ├── locators.cpython-39.pyc │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ ├── scripts.cpython-39.pyc │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ ├── shutil.cpython-39.pyc │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ └── tarfile.cpython-39.pyc │ │ │ │ ├── misc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ └── tarfile.py │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64-arm.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64-arm.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ ├── distro │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ └── distro.cpython-39.pyc │ │ │ └── distro.py │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _ihatexml.cpython-39.pyc │ │ │ │ ├── _inputstream.cpython-39.pyc │ │ │ │ ├── _tokenizer.cpython-39.pyc │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ ├── html5parser.cpython-39.pyc │ │ │ │ └── serializer.cpython-39.pyc │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ │ └── py.cpython-39.pyc │ │ │ │ ├── _base.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── alphabeticalattributes.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── inject_meta_charset.cpython-39.pyc │ │ │ │ │ ├── lint.cpython-39.pyc │ │ │ │ │ ├── optionaltags.cpython-39.pyc │ │ │ │ │ ├── sanitizer.cpython-39.pyc │ │ │ │ │ └── whitespace.cpython-39.pyc │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ └── sax.cpython-39.pyc │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ ├── etree_lxml.cpython-39.pyc │ │ │ │ └── genshi.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── codec.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ ├── idnadata.cpython-39.pyc │ │ │ │ ├── intranges.cpython-39.pyc │ │ │ │ ├── package_data.cpython-39.pyc │ │ │ │ └── uts46data.cpython-39.pyc │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── ext.cpython-39.pyc │ │ │ │ └── fallback.cpython-39.pyc │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ ├── ext.py │ │ │ └── fallback.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _manylinux.cpython-39.pyc │ │ │ │ ├── _musllinux.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── colorlog.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── dirtools.cpython-39.pyc │ │ │ │ ├── envbuild.cpython-39.pyc │ │ │ │ ├── meta.cpython-39.pyc │ │ │ │ └── wrappers.cpython-39.pyc │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── dirtools.py │ │ │ ├── envbuild.py │ │ │ ├── in_process │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── _in_process.cpython-39.pyc │ │ │ │ └── _in_process.py │ │ │ ├── meta.py │ │ │ └── wrappers.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── py31compat.cpython-39.pyc │ │ │ └── py31compat.py │ │ ├── platformdirs │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── android.cpython-39.pyc │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ ├── macos.cpython-39.pyc │ │ │ │ ├── unix.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ └── windows.cpython-39.pyc │ │ │ ├── android.py │ │ │ ├── api.py │ │ │ ├── macos.py │ │ │ ├── unix.py │ │ │ ├── version.py │ │ │ └── windows.py │ │ ├── pygments │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── cmdline.cpython-39.pyc │ │ │ │ ├── console.cpython-39.pyc │ │ │ │ ├── filter.cpython-39.pyc │ │ │ │ ├── formatter.cpython-39.pyc │ │ │ │ ├── lexer.cpython-39.pyc │ │ │ │ ├── modeline.cpython-39.pyc │ │ │ │ ├── plugin.cpython-39.pyc │ │ │ │ ├── regexopt.cpython-39.pyc │ │ │ │ ├── scanner.cpython-39.pyc │ │ │ │ ├── sphinxext.cpython-39.pyc │ │ │ │ ├── style.cpython-39.pyc │ │ │ │ ├── token.cpython-39.pyc │ │ │ │ ├── unistring.cpython-39.pyc │ │ │ │ └── util.cpython-39.pyc │ │ │ ├── cmdline.py │ │ │ ├── console.py │ │ │ ├── filter.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── formatter.py │ │ │ ├── formatters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _mapping.cpython-39.pyc │ │ │ │ │ ├── bbcode.cpython-39.pyc │ │ │ │ │ ├── groff.cpython-39.pyc │ │ │ │ │ ├── html.cpython-39.pyc │ │ │ │ │ ├── img.cpython-39.pyc │ │ │ │ │ ├── irc.cpython-39.pyc │ │ │ │ │ ├── latex.cpython-39.pyc │ │ │ │ │ ├── other.cpython-39.pyc │ │ │ │ │ ├── pangomarkup.cpython-39.pyc │ │ │ │ │ ├── rtf.cpython-39.pyc │ │ │ │ │ ├── svg.cpython-39.pyc │ │ │ │ │ ├── terminal.cpython-39.pyc │ │ │ │ │ └── terminal256.cpython-39.pyc │ │ │ │ ├── _mapping.py │ │ │ │ ├── bbcode.py │ │ │ │ ├── groff.py │ │ │ │ ├── html.py │ │ │ │ ├── img.py │ │ │ │ ├── irc.py │ │ │ │ ├── latex.py │ │ │ │ ├── other.py │ │ │ │ ├── pangomarkup.py │ │ │ │ ├── rtf.py │ │ │ │ ├── svg.py │ │ │ │ ├── terminal.py │ │ │ │ └── terminal256.py │ │ │ ├── lexer.py │ │ │ ├── lexers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _mapping.cpython-39.pyc │ │ │ │ │ └── python.cpython-39.pyc │ │ │ │ ├── _mapping.py │ │ │ │ └── python.py │ │ │ ├── modeline.py │ │ │ ├── plugin.py │ │ │ ├── regexopt.py │ │ │ ├── scanner.py │ │ │ ├── sphinxext.py │ │ │ ├── style.py │ │ │ ├── styles │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── token.py │ │ │ ├── unistring.py │ │ │ └── util.py │ │ ├── pyparsing │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── actions.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── helpers.cpython-39.pyc │ │ │ │ ├── results.cpython-39.pyc │ │ │ │ ├── testing.cpython-39.pyc │ │ │ │ ├── unicode.cpython-39.pyc │ │ │ │ └── util.cpython-39.pyc │ │ │ ├── actions.py │ │ │ ├── common.py │ │ │ ├── core.py │ │ │ ├── diagram │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── exceptions.py │ │ │ ├── helpers.py │ │ │ ├── results.py │ │ │ ├── testing.py │ │ │ ├── unicode.py │ │ │ └── util.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __version__.cpython-39.pyc │ │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ │ ├── adapters.cpython-39.pyc │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ ├── certs.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ ├── packages.cpython-39.pyc │ │ │ │ ├── sessions.cpython-39.pyc │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ ├── structures.cpython-39.pyc │ │ │ │ └── utils.cpython-39.pyc │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ ├── resolvelib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── providers.cpython-39.pyc │ │ │ │ ├── reporters.cpython-39.pyc │ │ │ │ ├── resolvers.cpython-39.pyc │ │ │ │ └── structs.cpython-39.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── collections_abc.cpython-39.pyc │ │ │ │ └── collections_abc.py │ │ │ ├── providers.py │ │ │ ├── reporters.py │ │ │ ├── resolvers.py │ │ │ └── structs.py │ │ ├── rich │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── _cell_widths.cpython-39.pyc │ │ │ │ ├── _emoji_codes.cpython-39.pyc │ │ │ │ ├── _emoji_replace.cpython-39.pyc │ │ │ │ ├── _extension.cpython-39.pyc │ │ │ │ ├── _inspect.cpython-39.pyc │ │ │ │ ├── _log_render.cpython-39.pyc │ │ │ │ ├── _loop.cpython-39.pyc │ │ │ │ ├── _lru_cache.cpython-39.pyc │ │ │ │ ├── _palettes.cpython-39.pyc │ │ │ │ ├── _pick.cpython-39.pyc │ │ │ │ ├── _ratio.cpython-39.pyc │ │ │ │ ├── _spinners.cpython-39.pyc │ │ │ │ ├── _stack.cpython-39.pyc │ │ │ │ ├── _timer.cpython-39.pyc │ │ │ │ ├── _win32_console.cpython-39.pyc │ │ │ │ ├── _windows.cpython-39.pyc │ │ │ │ ├── _windows_renderer.cpython-39.pyc │ │ │ │ ├── _wrap.cpython-39.pyc │ │ │ │ ├── abc.cpython-39.pyc │ │ │ │ ├── align.cpython-39.pyc │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ ├── box.cpython-39.pyc │ │ │ │ ├── cells.cpython-39.pyc │ │ │ │ ├── color.cpython-39.pyc │ │ │ │ ├── color_triplet.cpython-39.pyc │ │ │ │ ├── columns.cpython-39.pyc │ │ │ │ ├── console.cpython-39.pyc │ │ │ │ ├── constrain.cpython-39.pyc │ │ │ │ ├── containers.cpython-39.pyc │ │ │ │ ├── control.cpython-39.pyc │ │ │ │ ├── default_styles.cpython-39.pyc │ │ │ │ ├── diagnose.cpython-39.pyc │ │ │ │ ├── emoji.cpython-39.pyc │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ ├── file_proxy.cpython-39.pyc │ │ │ │ ├── filesize.cpython-39.pyc │ │ │ │ ├── highlighter.cpython-39.pyc │ │ │ │ ├── json.cpython-39.pyc │ │ │ │ ├── jupyter.cpython-39.pyc │ │ │ │ ├── layout.cpython-39.pyc │ │ │ │ ├── live.cpython-39.pyc │ │ │ │ ├── live_render.cpython-39.pyc │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ ├── markup.cpython-39.pyc │ │ │ │ ├── measure.cpython-39.pyc │ │ │ │ ├── padding.cpython-39.pyc │ │ │ │ ├── pager.cpython-39.pyc │ │ │ │ ├── palette.cpython-39.pyc │ │ │ │ ├── panel.cpython-39.pyc │ │ │ │ ├── pretty.cpython-39.pyc │ │ │ │ ├── progress.cpython-39.pyc │ │ │ │ ├── progress_bar.cpython-39.pyc │ │ │ │ ├── prompt.cpython-39.pyc │ │ │ │ ├── protocol.cpython-39.pyc │ │ │ │ ├── region.cpython-39.pyc │ │ │ │ ├── repr.cpython-39.pyc │ │ │ │ ├── rule.cpython-39.pyc │ │ │ │ ├── scope.cpython-39.pyc │ │ │ │ ├── screen.cpython-39.pyc │ │ │ │ ├── segment.cpython-39.pyc │ │ │ │ ├── spinner.cpython-39.pyc │ │ │ │ ├── status.cpython-39.pyc │ │ │ │ ├── style.cpython-39.pyc │ │ │ │ ├── styled.cpython-39.pyc │ │ │ │ ├── syntax.cpython-39.pyc │ │ │ │ ├── table.cpython-39.pyc │ │ │ │ ├── terminal_theme.cpython-39.pyc │ │ │ │ ├── text.cpython-39.pyc │ │ │ │ ├── theme.cpython-39.pyc │ │ │ │ ├── themes.cpython-39.pyc │ │ │ │ ├── traceback.cpython-39.pyc │ │ │ │ └── tree.cpython-39.pyc │ │ │ ├── _cell_widths.py │ │ │ ├── _emoji_codes.py │ │ │ ├── _emoji_replace.py │ │ │ ├── _extension.py │ │ │ ├── _inspect.py │ │ │ ├── _log_render.py │ │ │ ├── _loop.py │ │ │ ├── _lru_cache.py │ │ │ ├── _palettes.py │ │ │ ├── _pick.py │ │ │ ├── _ratio.py │ │ │ ├── _spinners.py │ │ │ ├── _stack.py │ │ │ ├── _timer.py │ │ │ ├── _win32_console.py │ │ │ ├── _windows.py │ │ │ ├── _windows_renderer.py │ │ │ ├── _wrap.py │ │ │ ├── abc.py │ │ │ ├── align.py │ │ │ ├── ansi.py │ │ │ ├── bar.py │ │ │ ├── box.py │ │ │ ├── cells.py │ │ │ ├── color.py │ │ │ ├── color_triplet.py │ │ │ ├── columns.py │ │ │ ├── console.py │ │ │ ├── constrain.py │ │ │ ├── containers.py │ │ │ ├── control.py │ │ │ ├── default_styles.py │ │ │ ├── diagnose.py │ │ │ ├── emoji.py │ │ │ ├── errors.py │ │ │ ├── file_proxy.py │ │ │ ├── filesize.py │ │ │ ├── highlighter.py │ │ │ ├── json.py │ │ │ ├── jupyter.py │ │ │ ├── layout.py │ │ │ ├── live.py │ │ │ ├── live_render.py │ │ │ ├── logging.py │ │ │ ├── markup.py │ │ │ ├── measure.py │ │ │ ├── padding.py │ │ │ ├── pager.py │ │ │ ├── palette.py │ │ │ ├── panel.py │ │ │ ├── pretty.py │ │ │ ├── progress.py │ │ │ ├── progress_bar.py │ │ │ ├── prompt.py │ │ │ ├── protocol.py │ │ │ ├── region.py │ │ │ ├── repr.py │ │ │ ├── rule.py │ │ │ ├── scope.py │ │ │ ├── screen.py │ │ │ ├── segment.py │ │ │ ├── spinner.py │ │ │ ├── status.py │ │ │ ├── style.py │ │ │ ├── styled.py │ │ │ ├── syntax.py │ │ │ ├── table.py │ │ │ ├── terminal_theme.py │ │ │ ├── text.py │ │ │ ├── theme.py │ │ │ ├── themes.py │ │ │ ├── traceback.py │ │ │ └── tree.py │ │ ├── six.py │ │ ├── tenacity │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _asyncio.cpython-39.pyc │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ ├── after.cpython-39.pyc │ │ │ │ ├── before.cpython-39.pyc │ │ │ │ ├── before_sleep.cpython-39.pyc │ │ │ │ ├── nap.cpython-39.pyc │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ ├── stop.cpython-39.pyc │ │ │ │ ├── tornadoweb.cpython-39.pyc │ │ │ │ └── wait.cpython-39.pyc │ │ │ ├── _asyncio.py │ │ │ ├── _utils.py │ │ │ ├── after.py │ │ │ ├── before.py │ │ │ ├── before_sleep.py │ │ │ ├── nap.py │ │ │ ├── retry.py │ │ │ ├── stop.py │ │ │ ├── tornadoweb.py │ │ │ └── wait.py │ │ ├── tomli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _parser.cpython-39.pyc │ │ │ │ ├── _re.cpython-39.pyc │ │ │ │ └── _types.cpython-39.pyc │ │ │ ├── _parser.py │ │ │ ├── _re.py │ │ │ └── _types.py │ │ ├── typing_extensions.py │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ ├── connectionpool.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ ├── filepost.cpython-39.pyc │ │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ └── response.cpython-39.pyc │ │ │ ├── _collections.py │ │ │ ├── _version.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ │ └── socks.cpython-39.pyc │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ │ └── low_level.cpython-39.pyc │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ │ └── makefile.py │ │ │ │ └── six.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ ├── queue.cpython-39.pyc │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ ├── ssl_.cpython-39.pyc │ │ │ │ ├── ssl_match_hostname.cpython-39.pyc │ │ │ │ ├── ssltransport.cpython-39.pyc │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ ├── url.cpython-39.pyc │ │ │ │ └── wait.cpython-39.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── proxy.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── ssl_match_hostname.py │ │ │ │ ├── ssltransport.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ ├── vendor.txt │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── labels.cpython-39.pyc │ │ │ ├── mklabels.cpython-39.pyc │ │ │ ├── tests.cpython-39.pyc │ │ │ └── x_user_defined.cpython-39.pyc │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ └── py.typed │ ├── pkg_resources │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── appdirs.cpython-39.pyc │ │ │ └── zipp.cpython-39.pyc │ │ ├── appdirs.py │ │ ├── importlib_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _adapters.cpython-39.pyc │ │ │ │ ├── _common.cpython-39.pyc │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ ├── _itertools.cpython-39.pyc │ │ │ │ ├── _legacy.cpython-39.pyc │ │ │ │ ├── abc.cpython-39.pyc │ │ │ │ ├── readers.cpython-39.pyc │ │ │ │ └── simple.cpython-39.pyc │ │ │ ├── _adapters.py │ │ │ ├── _common.py │ │ │ ├── _compat.py │ │ │ ├── _itertools.py │ │ │ ├── _legacy.py │ │ │ ├── abc.py │ │ │ ├── readers.py │ │ │ └── simple.py │ │ ├── jaraco │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── context.cpython-39.pyc │ │ │ │ └── functools.cpython-39.pyc │ │ │ ├── context.py │ │ │ ├── functools.py │ │ │ └── text │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── more_itertools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── more.cpython-39.pyc │ │ │ │ └── recipes.cpython-39.pyc │ │ │ ├── more.py │ │ │ └── recipes.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _manylinux.cpython-39.pyc │ │ │ │ ├── _musllinux.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pyparsing │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── actions.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── helpers.cpython-39.pyc │ │ │ │ ├── results.cpython-39.pyc │ │ │ │ ├── testing.cpython-39.pyc │ │ │ │ ├── unicode.cpython-39.pyc │ │ │ │ └── util.cpython-39.pyc │ │ │ ├── actions.py │ │ │ ├── common.py │ │ │ ├── core.py │ │ │ ├── diagram │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── exceptions.py │ │ │ ├── helpers.py │ │ │ ├── results.py │ │ │ ├── testing.py │ │ │ ├── unicode.py │ │ │ └── util.py │ │ └── zipp.py │ └── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── setuptools-62.3.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ └── setuptools │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── _deprecation_warning.cpython-39.pyc │ ├── _entry_points.cpython-39.pyc │ ├── _imp.cpython-39.pyc │ ├── _importlib.cpython-39.pyc │ ├── _itertools.cpython-39.pyc │ ├── _path.cpython-39.pyc │ ├── _reqs.cpython-39.pyc │ ├── archive_util.cpython-39.pyc │ ├── build_meta.cpython-39.pyc │ ├── dep_util.cpython-39.pyc │ ├── depends.cpython-39.pyc │ ├── discovery.cpython-39.pyc │ ├── dist.cpython-39.pyc │ ├── errors.cpython-39.pyc │ ├── extension.cpython-39.pyc │ ├── glob.cpython-39.pyc │ ├── installer.cpython-39.pyc │ ├── launch.cpython-39.pyc │ ├── logging.cpython-39.pyc │ ├── monkey.cpython-39.pyc │ ├── msvc.cpython-39.pyc │ ├── namespaces.cpython-39.pyc │ ├── package_index.cpython-39.pyc │ ├── py34compat.cpython-39.pyc │ ├── sandbox.cpython-39.pyc │ ├── unicode_utils.cpython-39.pyc │ ├── version.cpython-39.pyc │ ├── wheel.cpython-39.pyc │ └── windows_support.cpython-39.pyc │ ├── _deprecation_warning.py │ ├── _distutils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _collections.cpython-39.pyc │ │ ├── _functools.cpython-39.pyc │ │ ├── _macos_compat.cpython-39.pyc │ │ ├── _msvccompiler.cpython-39.pyc │ │ ├── archive_util.cpython-39.pyc │ │ ├── bcppcompiler.cpython-39.pyc │ │ ├── ccompiler.cpython-39.pyc │ │ ├── cmd.cpython-39.pyc │ │ ├── config.cpython-39.pyc │ │ ├── core.cpython-39.pyc │ │ ├── cygwinccompiler.cpython-39.pyc │ │ ├── debug.cpython-39.pyc │ │ ├── dep_util.cpython-39.pyc │ │ ├── dir_util.cpython-39.pyc │ │ ├── dist.cpython-39.pyc │ │ ├── errors.cpython-39.pyc │ │ ├── extension.cpython-39.pyc │ │ ├── fancy_getopt.cpython-39.pyc │ │ ├── file_util.cpython-39.pyc │ │ ├── filelist.cpython-39.pyc │ │ ├── log.cpython-39.pyc │ │ ├── msvc9compiler.cpython-39.pyc │ │ ├── msvccompiler.cpython-39.pyc │ │ ├── py35compat.cpython-39.pyc │ │ ├── py38compat.cpython-39.pyc │ │ ├── py39compat.cpython-39.pyc │ │ ├── spawn.cpython-39.pyc │ │ ├── sysconfig.cpython-39.pyc │ │ ├── text_file.cpython-39.pyc │ │ ├── unixccompiler.cpython-39.pyc │ │ ├── util.cpython-39.pyc │ │ ├── version.cpython-39.pyc │ │ └── versionpredicate.cpython-39.pyc │ ├── _collections.py │ ├── _functools.py │ ├── _macos_compat.py │ ├── _msvccompiler.py │ ├── archive_util.py │ ├── bcppcompiler.py │ ├── ccompiler.py │ ├── cmd.py │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── bdist.cpython-39.pyc │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ ├── build.cpython-39.pyc │ │ │ ├── build_clib.cpython-39.pyc │ │ │ ├── build_ext.cpython-39.pyc │ │ │ ├── build_py.cpython-39.pyc │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ ├── check.cpython-39.pyc │ │ │ ├── clean.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── install.cpython-39.pyc │ │ │ ├── install_data.cpython-39.pyc │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ ├── install_headers.cpython-39.pyc │ │ │ ├── install_lib.cpython-39.pyc │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ ├── py37compat.cpython-39.pyc │ │ │ ├── register.cpython-39.pyc │ │ │ ├── sdist.cpython-39.pyc │ │ │ └── upload.cpython-39.pyc │ │ ├── bdist.py │ │ ├── bdist_dumb.py │ │ ├── bdist_msi.py │ │ ├── bdist_rpm.py │ │ ├── bdist_wininst.py │ │ ├── build.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── build_scripts.py │ │ ├── check.py │ │ ├── clean.py │ │ ├── config.py │ │ ├── install.py │ │ ├── install_data.py │ │ ├── install_egg_info.py │ │ ├── install_headers.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── py37compat.py │ │ ├── register.py │ │ ├── sdist.py │ │ └── upload.py │ ├── config.py │ ├── core.py │ ├── cygwinccompiler.py │ ├── debug.py │ ├── dep_util.py │ ├── dir_util.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── fancy_getopt.py │ ├── file_util.py │ ├── filelist.py │ ├── log.py │ ├── msvc9compiler.py │ ├── msvccompiler.py │ ├── py35compat.py │ ├── py38compat.py │ ├── py39compat.py │ ├── spawn.py │ ├── sysconfig.py │ ├── text_file.py │ ├── unixccompiler.py │ ├── util.py │ ├── version.py │ └── versionpredicate.py │ ├── _entry_points.py │ ├── _imp.py │ ├── _importlib.py │ ├── _itertools.py │ ├── _path.py │ ├── _reqs.py │ ├── _vendor │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── ordered_set.cpython-39.pyc │ │ ├── typing_extensions.cpython-39.pyc │ │ └── zipp.cpython-39.pyc │ ├── importlib_metadata │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _adapters.cpython-39.pyc │ │ │ ├── _collections.cpython-39.pyc │ │ │ ├── _compat.cpython-39.pyc │ │ │ ├── _functools.cpython-39.pyc │ │ │ ├── _itertools.cpython-39.pyc │ │ │ ├── _meta.cpython-39.pyc │ │ │ └── _text.cpython-39.pyc │ │ ├── _adapters.py │ │ ├── _collections.py │ │ ├── _compat.py │ │ ├── _functools.py │ │ ├── _itertools.py │ │ ├── _meta.py │ │ └── _text.py │ ├── importlib_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _adapters.cpython-39.pyc │ │ │ ├── _common.cpython-39.pyc │ │ │ ├── _compat.cpython-39.pyc │ │ │ ├── _itertools.cpython-39.pyc │ │ │ ├── _legacy.cpython-39.pyc │ │ │ ├── abc.cpython-39.pyc │ │ │ ├── readers.cpython-39.pyc │ │ │ └── simple.cpython-39.pyc │ │ ├── _adapters.py │ │ ├── _common.py │ │ ├── _compat.py │ │ ├── _itertools.py │ │ ├── _legacy.py │ │ ├── abc.py │ │ ├── readers.py │ │ └── simple.py │ ├── jaraco │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── context.cpython-39.pyc │ │ │ └── functools.cpython-39.pyc │ │ ├── context.py │ │ ├── functools.py │ │ └── text │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── more_itertools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── more.cpython-39.pyc │ │ │ └── recipes.cpython-39.pyc │ │ ├── more.py │ │ └── recipes.py │ ├── nspektr │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── _compat.cpython-39.pyc │ │ └── _compat.py │ ├── ordered_set.py │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __about__.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _manylinux.cpython-39.pyc │ │ │ ├── _musllinux.cpython-39.pyc │ │ │ ├── _structures.cpython-39.pyc │ │ │ ├── markers.cpython-39.pyc │ │ │ ├── requirements.cpython-39.pyc │ │ │ ├── specifiers.cpython-39.pyc │ │ │ ├── tags.cpython-39.pyc │ │ │ ├── utils.cpython-39.pyc │ │ │ └── version.cpython-39.pyc │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ ├── pyparsing │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── actions.cpython-39.pyc │ │ │ ├── common.cpython-39.pyc │ │ │ ├── core.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── helpers.cpython-39.pyc │ │ │ ├── results.cpython-39.pyc │ │ │ ├── testing.cpython-39.pyc │ │ │ ├── unicode.cpython-39.pyc │ │ │ └── util.cpython-39.pyc │ │ ├── actions.py │ │ ├── common.py │ │ ├── core.py │ │ ├── diagram │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── exceptions.py │ │ ├── helpers.py │ │ ├── results.py │ │ ├── testing.py │ │ ├── unicode.py │ │ └── util.py │ ├── tomli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _parser.cpython-39.pyc │ │ │ ├── _re.cpython-39.pyc │ │ │ └── _types.cpython-39.pyc │ │ ├── _parser.py │ │ ├── _re.py │ │ └── _types.py │ ├── typing_extensions.py │ └── zipp.py │ ├── archive_util.py │ ├── build_meta.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli-arm64.exe │ ├── cli.exe │ ├── command │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── alias.cpython-39.pyc │ │ ├── bdist_egg.cpython-39.pyc │ │ ├── bdist_rpm.cpython-39.pyc │ │ ├── build_clib.cpython-39.pyc │ │ ├── build_ext.cpython-39.pyc │ │ ├── build_py.cpython-39.pyc │ │ ├── develop.cpython-39.pyc │ │ ├── dist_info.cpython-39.pyc │ │ ├── easy_install.cpython-39.pyc │ │ ├── egg_info.cpython-39.pyc │ │ ├── install.cpython-39.pyc │ │ ├── install_egg_info.cpython-39.pyc │ │ ├── install_lib.cpython-39.pyc │ │ ├── install_scripts.cpython-39.pyc │ │ ├── py36compat.cpython-39.pyc │ │ ├── register.cpython-39.pyc │ │ ├── rotate.cpython-39.pyc │ │ ├── saveopts.cpython-39.pyc │ │ ├── sdist.cpython-39.pyc │ │ ├── setopt.cpython-39.pyc │ │ ├── test.cpython-39.pyc │ │ ├── upload.cpython-39.pyc │ │ └── upload_docs.cpython-39.pyc │ ├── alias.py │ ├── bdist_egg.py │ ├── bdist_rpm.py │ ├── build_clib.py │ ├── build_ext.py │ ├── build_py.py │ ├── develop.py │ ├── dist_info.py │ ├── easy_install.py │ ├── egg_info.py │ ├── install.py │ ├── install_egg_info.py │ ├── install_lib.py │ ├── install_scripts.py │ ├── launcher manifest.xml │ ├── py36compat.py │ ├── register.py │ ├── rotate.py │ ├── saveopts.py │ ├── sdist.py │ ├── setopt.py │ ├── test.py │ ├── upload.py │ └── upload_docs.py │ ├── config │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _apply_pyprojecttoml.cpython-39.pyc │ │ ├── expand.cpython-39.pyc │ │ ├── pyprojecttoml.cpython-39.pyc │ │ └── setupcfg.cpython-39.pyc │ ├── _apply_pyprojecttoml.py │ ├── _validate_pyproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── error_reporting.cpython-39.pyc │ │ │ ├── extra_validations.cpython-39.pyc │ │ │ ├── fastjsonschema_exceptions.cpython-39.pyc │ │ │ ├── fastjsonschema_validations.cpython-39.pyc │ │ │ └── formats.cpython-39.pyc │ │ ├── error_reporting.py │ │ ├── extra_validations.py │ │ ├── fastjsonschema_exceptions.py │ │ ├── fastjsonschema_validations.py │ │ └── formats.py │ ├── expand.py │ ├── pyprojecttoml.py │ └── setupcfg.py │ ├── dep_util.py │ ├── depends.py │ ├── discovery.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── extern │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── glob.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui-arm64.exe │ ├── gui.exe │ ├── installer.py │ ├── launch.py │ ├── logging.py │ ├── monkey.py │ ├── msvc.py │ ├── namespaces.py │ ├── package_index.py │ ├── py34compat.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── unicode_utils.py │ ├── version.py │ ├── wheel.py │ └── windows_support.py ├── Scripts ├── Activate.ps1 ├── activate ├── activate.bat ├── deactivate.bat ├── pip.exe ├── pip3.10.exe ├── pip3.9.exe ├── pip3.exe ├── python.exe └── pythonw.exe └── pyvenv.cfg /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/学生管理系统.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/.idea/学生管理系统.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/app.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/__pycache__/app.cpython-39.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/app.py -------------------------------------------------------------------------------- /static/CSS/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/static/CSS/bootstrap.css -------------------------------------------------------------------------------- /static/CSS/index_login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/static/CSS/index_login.css -------------------------------------------------------------------------------- /static/img/admin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/static/img/admin.jpg -------------------------------------------------------------------------------- /templates/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/templates/add.html -------------------------------------------------------------------------------- /templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/templates/admin.html -------------------------------------------------------------------------------- /templates/change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/templates/change.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/templates/register.html -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-22.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-22.1.1.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip-22.1.1.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-22.1.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip-22.1.1.dist-info/METADATA -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-22.1.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip-22.1.1.dist-info/RECORD -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-22.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-22.1.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip-22.1.1.dist-info/entry_points.txt -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-22.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__main__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/autocompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/autocompletion.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/command_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/command_context.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/progress_bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/progress_bars.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/completion.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/configuration.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/download.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/index.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/uninstall.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/distributions/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/distributions/base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/distributions/installed.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/distributions/sdist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/distributions/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/package_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/index/package_finder.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/index/sources.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/locations/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/_distutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/locations/_distutils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/locations/base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/metadata/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/metadata/base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/direct_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/direct_url.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/format_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/format_control.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/search_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/search_scope.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/selection_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/selection_prefs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/target_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/target_python.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/network/download.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/network/session.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/operations/build/metadata.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/operations/build/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/operations/freeze.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/operations/install/legacy.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/operations/install/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/operations/prepare.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/req/req_uninstall.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/resolution/base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/self_outdated_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/self_outdated_check.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/_log.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/deprecation.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/distutils_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/distutils_args.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/egg_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/egg_link.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/entrypoints.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/subprocess.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/unpacking.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/virtualenv.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.10.08" 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/chardistribution.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/charsetprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/cp949prober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/euckrprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/euctwprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/latin1prober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/universaldetector.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/initialise.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/misc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/shutil.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/_backport/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/_backport/tarfile.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distro/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distro/__main__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/distro/distro.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_ihatexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_ihatexml.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_inputstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_inputstream.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_tokenizer.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/_base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/constants.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/lint.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/filters/whitespace.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/html5parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/html5parser.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/serializer.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/sax.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/dom.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/etree.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/dom.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/etree.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.3' 2 | 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 3) 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/requirements.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/meta.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/platformdirs/android.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/platformdirs/api.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/platformdirs/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/__main__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/console.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/filter.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatter.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/lexer.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/modeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/modeline.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/plugin.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/scanner.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/style.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/token.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/unistring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/unistring.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pygments/util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/actions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/common.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/helpers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/results.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/testing.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/unicode.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing/util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/__version__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/exceptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/packages.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/status_codes.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/structures.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/__main__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_extension.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_inspect.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_log_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_log_render.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_loop.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_lru_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_lru_cache.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_palettes.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_pick.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_ratio.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_spinners.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_stack.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_timer.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_windows.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/_wrap.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/abc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/align.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/ansi.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/bar.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/box.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/cells.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/color.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/columns.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/console.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/constrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/constrain.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/containers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/control.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/default_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/default_styles.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/diagnose.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/emoji.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/errors.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/filesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/filesize.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/highlighter.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/json.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/jupyter.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/layout.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/live.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/live_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/live_render.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/logging.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/markup.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/measure.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/padding.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/pager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/pager.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/palette.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/panel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/pretty.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/progress.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/prompt.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/protocol.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/region.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/repr.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/rule.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/scope.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/screen.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/segment.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/spinner.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/status.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/style.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/styled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/styled.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/syntax.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/table.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/text.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/theme.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/themes.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/traceback.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/rich/tree.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/_utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/after.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/before.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/nap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/nap.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/retry.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/stop.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tenacity/wait.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tomli/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tomli/_parser.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/tomli/_types.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/typing_extensions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.9" 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/connection.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/webencodings/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/webencodings/labels.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/mklabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/webencodings/mklabels.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/webencodings/tests.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pip/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/appdirs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/packaging/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/actions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/common.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/helpers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/results.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/testing.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/unicode.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/zipp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/_vendor/zipp.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/pkg_resources/extern/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-62.3.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-62.3.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools-62.3.2.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-62.3.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools-62.3.2.dist-info/METADATA -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-62.3.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools-62.3.2.dist-info/RECORD -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-62.3.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-62.3.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_path.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/__pycache__/_path.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-39.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_deprecation_warning.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/_collections.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/_functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/_functools.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/_macos_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/_macos_compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/_msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/_msvccompiler.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/archive_util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/bcppcompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/bcppcompiler.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/ccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/ccompiler.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/bdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/bdist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/build.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/build_clib.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/build_ext.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/build_py.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/check.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/clean.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/config.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/install.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/register.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/sdist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/command/upload.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/config.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/debug.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/dep_util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/dir_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/dir_util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/errors.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/extension.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/fancy_getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/fancy_getopt.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/file_util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/filelist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/msvc9compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/msvc9compiler.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/msvccompiler.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/py35compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/py35compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/py38compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/py38compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/py39compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/py39compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/spawn.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/sysconfig.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/text_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/text_file.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/unixccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/unixccompiler.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/versionpredicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_distutils/versionpredicate.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_entry_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_entry_points.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_importlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_importlib.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_itertools.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_path.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_reqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_reqs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/jaraco/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/jaraco/context.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/jaraco/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/jaraco/functools.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/more_itertools/more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/more_itertools/more.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/nspektr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/nspektr/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/nspektr/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/nspektr/_compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/ordered_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/ordered_set.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/packaging/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/pyparsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/pyparsing/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/pyparsing/actions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/pyparsing/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/pyparsing/common.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/pyparsing/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/pyparsing/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/pyparsing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/pyparsing/helpers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/pyparsing/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/pyparsing/results.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/pyparsing/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/pyparsing/testing.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/pyparsing/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/pyparsing/unicode.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/pyparsing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/pyparsing/util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/tomli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/tomli/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/tomli/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/tomli/_parser.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/tomli/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/tomli/_types.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/typing_extensions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/zipp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/_vendor/zipp.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/cli-arm64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/build_clib.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/easy_install.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/install_egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/install_egg_info.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/install_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/install_lib.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/install_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/install_scripts.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/launcher manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/launcher manifest.xml -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/py36compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/py36compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/upload_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/command/upload_docs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/config/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/config/expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/config/expand.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/config/pyprojecttoml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/config/pyprojecttoml.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/config/setupcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/config/setupcfg.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/discovery.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/gui-arm64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/logging.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Lib/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Scripts/activate -------------------------------------------------------------------------------- /venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.10.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Scripts/pip3.10.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Scripts/pip3.9.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Scripts/python.exe -------------------------------------------------------------------------------- /venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiufa/Student_Mangement_System/HEAD/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\python 2 | include-system-site-packages = false 3 | version = 3.9.5 4 | --------------------------------------------------------------------------------