├── .coverage ├── .env ├── .github └── workflows │ └── ci.yml ├── .vscode └── settings.json ├── ACTIVITY_DIAGRAM.md ├── ARCHITECTURE.md ├── Activity_Diagram.md ├── CHANGELOG.md ├── CLASS_DIAGRAM.md ├── CONTRIBUTING.md ├── DOMAIN_MODEL.md ├── PRODUCT_BACKLOG.md ├── PROTECTION.md ├── README.md ├── REFLECTION.md ├── ROADMAP.md ├── SPECIFICATION.md ├── SPRINT_PLAN.md ├── STAKEHOLDER_ANALYSIS.md ├── SYSTEM_REQUIREMENTS.md ├── Screenshot (10).png ├── Screenshot (12).png ├── Screenshot (13).png ├── Screenshot (16).png ├── Screenshot (17).png ├── Screenshot (18).png ├── Screenshot (19).png ├── Screenshot (20).png ├── Screenshot (21).png ├── Screenshot (22).png ├── Screenshot (7).png ├── Screenshot (8).png ├── Screenshot (9).png ├── Screenshot_13-5-2025_111041_github.com.jpeg ├── TEST_CASES.md ├── TRACEABILITY.md ├── TRANSACTION_DIAGRAMS.md ├── USER_STORIES.md ├── USE_CASE_DIAGRAM.md ├── USE_CASE_SPECIFICATIONS.md ├── __pycache__ ├── main.cpython-313.pyc └── student.cpython-313.pyc ├── api ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-313.pyc │ ├── course_routes.cpython-313.pyc │ ├── performance_routes.cpython-313.pyc │ └── student_routes.cpython-313.pyc ├── course_routes.py ├── performance_routes.py └── student_routes.py ├── creational_patterns ├── __pycache__ │ ├── abstract_factory.cpython-312.pyc │ ├── abstract_factory.cpython-313.pyc │ ├── builder.cpython-312.pyc │ ├── builder.cpython-313.pyc │ ├── factory_method.cpython-312.pyc │ ├── factory_method.cpython-313.pyc │ ├── prototype.cpython-312.pyc │ ├── prototype.cpython-313.pyc │ ├── simple_factory.cpython-312.pyc │ ├── simple_factory.cpython-313.pyc │ ├── singleton.cpython-312.pyc │ └── singleton.cpython-313.pyc ├── abstract_factory.py ├── builder.py ├── factory_method.py ├── prototype.py ├── simple_factory.py └── singleton.py ├── domain ├── __pycache__ │ └── student.cpython-312.pyc └── student.py ├── factories ├── reposetories_factory.py └── repository_factory.py ├── kanban_board.md ├── kanban_explanation.md ├── main.py ├── pytest.ini ├── repositories ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-312.pyc │ ├── __init__.cpython-313.pyc │ ├── repository.cpython-312.pyc │ ├── repository.cpython-313.pyc │ ├── student_repository.cpython-312.pyc │ └── student_repository.cpython-313.pyc ├── base_repository.py ├── database │ └── database_student_repository.py ├── inmemory │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── __init__.cpython-313.pyc │ │ ├── base_repository.cpython-313.pyc │ │ ├── inmemory_student_repository.cpython-312.pyc │ │ └── inmemory_student_repository.cpython-313.pyc │ └── inmemory_student_repository.py ├── interfaces │ ├── __init__.py │ └── student_repository_interface.py ├── repository.py └── student_repository.py ├── requirements.txt ├── run_example.py ├── services ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-313.pyc │ ├── course_service.cpython-313.pyc │ ├── performance_service.cpython-313.pyc │ └── student_service.cpython-313.pyc ├── course_service.py ├── module_service.py ├── performance_service.py └── student_service.py ├── setup.py ├── src └── models │ ├── ai_model.py │ ├── assignment.py │ ├── course.py │ ├── feedback.py │ ├── lecturer.py │ ├── performance_report.py │ ├── repositories │ └── inmemory │ │ └── inmemory_student_repository.py │ └── student.py ├── template_analysis.md ├── tests ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-312.pyc │ ├── __init__.cpython-313.pyc │ ├── test_abstract_factory.cpython-312-pytest-8.3.5.pyc │ ├── test_abstract_factory.cpython-313-pytest-8.3.5.pyc │ ├── test_builder.cpython-312-pytest-8.3.5.pyc │ ├── test_builder.cpython-313-pytest-8.3.5.pyc │ ├── test_factory_method.cpython-312-pytest-8.3.5.pyc │ ├── test_factory_method.cpython-313-pytest-8.3.5.pyc │ ├── test_inmemory_student_repository.cpython-312-pytest-8.3.5.pyc │ ├── test_inmemory_student_repository.cpython-313-pytest-8.3.5.pyc │ ├── test_prototype.cpython-312-pytest-8.3.5.pyc │ ├── test_prototype.cpython-313-pytest-8.3.5.pyc │ ├── test_simple_factory.cpython-312-pytest-8.3.5.pyc │ ├── test_simple_factory.cpython-313-pytest-8.3.5.pyc │ ├── test_singleton.cpython-312-pytest-8.3.5.pyc │ └── test_singleton.cpython-313-pytest-8.3.5.pyc ├── test_abstract_factory.py ├── test_builder.py ├── test_factory_method.py ├── test_inmemory_student_repository.py ├── test_prototype.py ├── test_simple_factory.py └── test_singleton.py └── venv ├── Lib └── site-packages │ ├── __pycache__ │ └── py.cpython-312.pyc │ ├── _pytest │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── _argcomplete.cpython-312.pyc │ │ ├── _version.cpython-312.pyc │ │ ├── cacheprovider.cpython-312.pyc │ │ ├── capture.cpython-312.pyc │ │ ├── compat.cpython-312.pyc │ │ ├── debugging.cpython-312.pyc │ │ ├── deprecated.cpython-312.pyc │ │ ├── doctest.cpython-312.pyc │ │ ├── faulthandler.cpython-312.pyc │ │ ├── fixtures.cpython-312.pyc │ │ ├── freeze_support.cpython-312.pyc │ │ ├── helpconfig.cpython-312.pyc │ │ ├── hookspec.cpython-312.pyc │ │ ├── junitxml.cpython-312.pyc │ │ ├── legacypath.cpython-312.pyc │ │ ├── logging.cpython-312.pyc │ │ ├── main.cpython-312.pyc │ │ ├── monkeypatch.cpython-312.pyc │ │ ├── nodes.cpython-312.pyc │ │ ├── outcomes.cpython-312.pyc │ │ ├── pastebin.cpython-312.pyc │ │ ├── pathlib.cpython-312.pyc │ │ ├── pytester.cpython-312.pyc │ │ ├── pytester_assertions.cpython-312.pyc │ │ ├── python.cpython-312.pyc │ │ ├── python_api.cpython-312.pyc │ │ ├── python_path.cpython-312.pyc │ │ ├── recwarn.cpython-312.pyc │ │ ├── reports.cpython-312.pyc │ │ ├── runner.cpython-312.pyc │ │ ├── scope.cpython-312.pyc │ │ ├── setuponly.cpython-312.pyc │ │ ├── setupplan.cpython-312.pyc │ │ ├── skipping.cpython-312.pyc │ │ ├── stash.cpython-312.pyc │ │ ├── stepwise.cpython-312.pyc │ │ ├── terminal.cpython-312.pyc │ │ ├── threadexception.cpython-312.pyc │ │ ├── timing.cpython-312.pyc │ │ ├── tmpdir.cpython-312.pyc │ │ ├── unittest.cpython-312.pyc │ │ ├── unraisableexception.cpython-312.pyc │ │ ├── warning_types.cpython-312.pyc │ │ └── warnings.cpython-312.pyc │ ├── _argcomplete.py │ ├── _code │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── code.cpython-312.pyc │ │ │ └── source.cpython-312.pyc │ │ ├── code.py │ │ └── source.py │ ├── _io │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── pprint.cpython-312.pyc │ │ │ ├── saferepr.cpython-312.pyc │ │ │ ├── terminalwriter.cpython-312.pyc │ │ │ └── wcwidth.cpython-312.pyc │ │ ├── pprint.py │ │ ├── saferepr.py │ │ ├── terminalwriter.py │ │ └── wcwidth.py │ ├── _py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── error.cpython-312.pyc │ │ │ └── path.cpython-312.pyc │ │ ├── error.py │ │ └── path.py │ ├── _version.py │ ├── assertion │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── rewrite.cpython-312.pyc │ │ │ ├── truncate.cpython-312.pyc │ │ │ └── util.cpython-312.pyc │ │ ├── rewrite.py │ │ ├── truncate.py │ │ └── util.py │ ├── cacheprovider.py │ ├── capture.py │ ├── compat.py │ ├── config │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── argparsing.cpython-312.pyc │ │ │ ├── compat.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ └── findpaths.cpython-312.pyc │ │ ├── argparsing.py │ │ ├── compat.py │ │ ├── exceptions.py │ │ └── findpaths.py │ ├── debugging.py │ ├── deprecated.py │ ├── doctest.py │ ├── faulthandler.py │ ├── fixtures.py │ ├── freeze_support.py │ ├── helpconfig.py │ ├── hookspec.py │ ├── junitxml.py │ ├── legacypath.py │ ├── logging.py │ ├── main.py │ ├── mark │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── expression.cpython-312.pyc │ │ │ └── structures.cpython-312.pyc │ │ ├── expression.py │ │ └── structures.py │ ├── monkeypatch.py │ ├── nodes.py │ ├── outcomes.py │ ├── pastebin.py │ ├── pathlib.py │ ├── py.typed │ ├── pytester.py │ ├── pytester_assertions.py │ ├── python.py │ ├── python_api.py │ ├── python_path.py │ ├── recwarn.py │ ├── reports.py │ ├── runner.py │ ├── scope.py │ ├── setuponly.py │ ├── setupplan.py │ ├── skipping.py │ ├── stash.py │ ├── stepwise.py │ ├── terminal.py │ ├── threadexception.py │ ├── timing.py │ ├── tmpdir.py │ ├── unittest.py │ ├── unraisableexception.py │ ├── warning_types.py │ └── warnings.py │ ├── colorama-0.4.6.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── licenses │ │ └── LICENSE.txt │ ├── colorama │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── ansi.cpython-312.pyc │ │ ├── ansitowin32.cpython-312.pyc │ │ ├── initialise.cpython-312.pyc │ │ ├── win32.cpython-312.pyc │ │ └── winterm.cpython-312.pyc │ ├── ansi.py │ ├── ansitowin32.py │ ├── initialise.py │ ├── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── ansi_test.cpython-312.pyc │ │ │ ├── ansitowin32_test.cpython-312.pyc │ │ │ ├── initialise_test.cpython-312.pyc │ │ │ ├── isatty_test.cpython-312.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ └── winterm_test.cpython-312.pyc │ │ ├── ansi_test.py │ │ ├── ansitowin32_test.py │ │ ├── initialise_test.py │ │ ├── isatty_test.py │ │ ├── utils.py │ │ └── winterm_test.py │ ├── win32.py │ └── winterm.py │ ├── iniconfig-2.1.0.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── licenses │ │ └── LICENSE │ ├── iniconfig │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── _parse.cpython-312.pyc │ │ ├── _version.cpython-312.pyc │ │ └── exceptions.cpython-312.pyc │ ├── _parse.py │ ├── _version.py │ ├── exceptions.py │ └── py.typed │ ├── packaging-25.0.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── licenses │ │ ├── LICENSE │ │ ├── LICENSE.APACHE │ │ └── LICENSE.BSD │ ├── packaging │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── _elffile.cpython-312.pyc │ │ ├── _manylinux.cpython-312.pyc │ │ ├── _musllinux.cpython-312.pyc │ │ ├── _parser.cpython-312.pyc │ │ ├── _structures.cpython-312.pyc │ │ ├── _tokenizer.cpython-312.pyc │ │ ├── markers.cpython-312.pyc │ │ ├── metadata.cpython-312.pyc │ │ ├── requirements.cpython-312.pyc │ │ ├── specifiers.cpython-312.pyc │ │ ├── tags.cpython-312.pyc │ │ ├── utils.cpython-312.pyc │ │ └── version.cpython-312.pyc │ ├── _elffile.py │ ├── _manylinux.py │ ├── _musllinux.py │ ├── _parser.py │ ├── _structures.py │ ├── _tokenizer.py │ ├── licenses │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ └── _spdx.cpython-312.pyc │ │ └── _spdx.py │ ├── markers.py │ ├── metadata.py │ ├── py.typed │ ├── requirements.py │ ├── specifiers.py │ ├── tags.py │ ├── utils.py │ └── version.py │ ├── pip-24.2.dist-info │ ├── AUTHORS.txt │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pip-runner__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── __main__.cpython-312.pyc │ │ └── __pip-runner__.cpython-312.pyc │ ├── _internal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── build_env.cpython-312.pyc │ │ │ ├── cache.cpython-312.pyc │ │ │ ├── configuration.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── main.cpython-312.pyc │ │ │ ├── pyproject.cpython-312.pyc │ │ │ ├── self_outdated_check.cpython-312.pyc │ │ │ └── wheel_builder.cpython-312.pyc │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── autocompletion.cpython-312.pyc │ │ │ │ ├── base_command.cpython-312.pyc │ │ │ │ ├── cmdoptions.cpython-312.pyc │ │ │ │ ├── command_context.cpython-312.pyc │ │ │ │ ├── index_command.cpython-312.pyc │ │ │ │ ├── main.cpython-312.pyc │ │ │ │ ├── main_parser.cpython-312.pyc │ │ │ │ ├── parser.cpython-312.pyc │ │ │ │ ├── progress_bars.cpython-312.pyc │ │ │ │ ├── req_command.cpython-312.pyc │ │ │ │ ├── spinners.cpython-312.pyc │ │ │ │ └── status_codes.cpython-312.pyc │ │ │ ├── autocompletion.py │ │ │ ├── base_command.py │ │ │ ├── cmdoptions.py │ │ │ ├── command_context.py │ │ │ ├── index_command.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-312.pyc │ │ │ │ ├── cache.cpython-312.pyc │ │ │ │ ├── check.cpython-312.pyc │ │ │ │ ├── completion.cpython-312.pyc │ │ │ │ ├── configuration.cpython-312.pyc │ │ │ │ ├── debug.cpython-312.pyc │ │ │ │ ├── download.cpython-312.pyc │ │ │ │ ├── freeze.cpython-312.pyc │ │ │ │ ├── hash.cpython-312.pyc │ │ │ │ ├── help.cpython-312.pyc │ │ │ │ ├── index.cpython-312.pyc │ │ │ │ ├── inspect.cpython-312.pyc │ │ │ │ ├── install.cpython-312.pyc │ │ │ │ ├── list.cpython-312.pyc │ │ │ │ ├── search.cpython-312.pyc │ │ │ │ ├── show.cpython-312.pyc │ │ │ │ ├── uninstall.cpython-312.pyc │ │ │ │ └── wheel.cpython-312.pyc │ │ │ ├── cache.py │ │ │ ├── check.py │ │ │ ├── completion.py │ │ │ ├── configuration.py │ │ │ ├── debug.py │ │ │ ├── download.py │ │ │ ├── freeze.py │ │ │ ├── hash.py │ │ │ ├── help.py │ │ │ ├── index.py │ │ │ ├── inspect.py │ │ │ ├── install.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ ├── show.py │ │ │ ├── uninstall.py │ │ │ └── wheel.py │ │ ├── configuration.py │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ ├── installed.cpython-312.pyc │ │ │ │ ├── sdist.cpython-312.pyc │ │ │ │ └── wheel.cpython-312.pyc │ │ │ ├── base.py │ │ │ ├── installed.py │ │ │ ├── sdist.py │ │ │ └── wheel.py │ │ ├── exceptions.py │ │ ├── index │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── collector.cpython-312.pyc │ │ │ │ ├── package_finder.cpython-312.pyc │ │ │ │ └── sources.cpython-312.pyc │ │ │ ├── collector.py │ │ │ ├── package_finder.py │ │ │ └── sources.py │ │ ├── locations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _distutils.cpython-312.pyc │ │ │ │ ├── _sysconfig.cpython-312.pyc │ │ │ │ └── base.cpython-312.pyc │ │ │ ├── _distutils.py │ │ │ ├── _sysconfig.py │ │ │ └── base.py │ │ ├── main.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _json.cpython-312.pyc │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ └── pkg_resources.cpython-312.pyc │ │ │ ├── _json.py │ │ │ ├── base.py │ │ │ ├── importlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _compat.cpython-312.pyc │ │ │ │ │ ├── _dists.cpython-312.pyc │ │ │ │ │ └── _envs.cpython-312.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _dists.py │ │ │ │ └── _envs.py │ │ │ └── pkg_resources.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── candidate.cpython-312.pyc │ │ │ │ ├── direct_url.cpython-312.pyc │ │ │ │ ├── format_control.cpython-312.pyc │ │ │ │ ├── index.cpython-312.pyc │ │ │ │ ├── installation_report.cpython-312.pyc │ │ │ │ ├── link.cpython-312.pyc │ │ │ │ ├── scheme.cpython-312.pyc │ │ │ │ ├── search_scope.cpython-312.pyc │ │ │ │ ├── selection_prefs.cpython-312.pyc │ │ │ │ ├── target_python.cpython-312.pyc │ │ │ │ └── wheel.cpython-312.pyc │ │ │ ├── candidate.py │ │ │ ├── direct_url.py │ │ │ ├── format_control.py │ │ │ ├── index.py │ │ │ ├── installation_report.py │ │ │ ├── link.py │ │ │ ├── scheme.py │ │ │ ├── search_scope.py │ │ │ ├── selection_prefs.py │ │ │ ├── target_python.py │ │ │ └── wheel.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── auth.cpython-312.pyc │ │ │ │ ├── cache.cpython-312.pyc │ │ │ │ ├── download.cpython-312.pyc │ │ │ │ ├── lazy_wheel.cpython-312.pyc │ │ │ │ ├── session.cpython-312.pyc │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ └── xmlrpc.cpython-312.pyc │ │ │ ├── auth.py │ │ │ ├── cache.py │ │ │ ├── download.py │ │ │ ├── lazy_wheel.py │ │ │ ├── session.py │ │ │ ├── utils.py │ │ │ └── xmlrpc.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── check.cpython-312.pyc │ │ │ │ ├── freeze.cpython-312.pyc │ │ │ │ └── prepare.cpython-312.pyc │ │ │ ├── build │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── build_tracker.cpython-312.pyc │ │ │ │ │ ├── metadata.cpython-312.pyc │ │ │ │ │ ├── metadata_editable.cpython-312.pyc │ │ │ │ │ ├── metadata_legacy.cpython-312.pyc │ │ │ │ │ ├── wheel.cpython-312.pyc │ │ │ │ │ ├── wheel_editable.cpython-312.pyc │ │ │ │ │ └── wheel_legacy.cpython-312.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-312.pyc │ │ │ │ │ ├── editable_legacy.cpython-312.pyc │ │ │ │ │ └── wheel.cpython-312.pyc │ │ │ │ ├── editable_legacy.py │ │ │ │ └── wheel.py │ │ │ └── prepare.py │ │ ├── pyproject.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── constructors.cpython-312.pyc │ │ │ │ ├── req_file.cpython-312.pyc │ │ │ │ ├── req_install.cpython-312.pyc │ │ │ │ ├── req_set.cpython-312.pyc │ │ │ │ └── req_uninstall.cpython-312.pyc │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ └── req_uninstall.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── base.cpython-312.pyc │ │ │ ├── base.py │ │ │ ├── legacy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── resolver.cpython-312.pyc │ │ │ │ └── resolver.py │ │ │ └── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ ├── candidates.cpython-312.pyc │ │ │ │ ├── factory.cpython-312.pyc │ │ │ │ ├── found_candidates.cpython-312.pyc │ │ │ │ ├── provider.cpython-312.pyc │ │ │ │ ├── reporter.cpython-312.pyc │ │ │ │ ├── requirements.cpython-312.pyc │ │ │ │ └── resolver.cpython-312.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-312.pyc │ │ │ │ ├── _jaraco_text.cpython-312.pyc │ │ │ │ ├── _log.cpython-312.pyc │ │ │ │ ├── appdirs.cpython-312.pyc │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ ├── compatibility_tags.cpython-312.pyc │ │ │ │ ├── datetime.cpython-312.pyc │ │ │ │ ├── deprecation.cpython-312.pyc │ │ │ │ ├── direct_url_helpers.cpython-312.pyc │ │ │ │ ├── egg_link.cpython-312.pyc │ │ │ │ ├── encoding.cpython-312.pyc │ │ │ │ ├── entrypoints.cpython-312.pyc │ │ │ │ ├── filesystem.cpython-312.pyc │ │ │ │ ├── filetypes.cpython-312.pyc │ │ │ │ ├── glibc.cpython-312.pyc │ │ │ │ ├── hashes.cpython-312.pyc │ │ │ │ ├── logging.cpython-312.pyc │ │ │ │ ├── misc.cpython-312.pyc │ │ │ │ ├── packaging.cpython-312.pyc │ │ │ │ ├── retry.cpython-312.pyc │ │ │ │ ├── setuptools_build.cpython-312.pyc │ │ │ │ ├── subprocess.cpython-312.pyc │ │ │ │ ├── temp_dir.cpython-312.pyc │ │ │ │ ├── unpacking.cpython-312.pyc │ │ │ │ ├── urls.cpython-312.pyc │ │ │ │ ├── virtualenv.cpython-312.pyc │ │ │ │ └── wheel.cpython-312.pyc │ │ │ ├── _jaraco_text.py │ │ │ ├── _log.py │ │ │ ├── appdirs.py │ │ │ ├── compat.py │ │ │ ├── compatibility_tags.py │ │ │ ├── datetime.py │ │ │ ├── deprecation.py │ │ │ ├── direct_url_helpers.py │ │ │ ├── egg_link.py │ │ │ ├── encoding.py │ │ │ ├── entrypoints.py │ │ │ ├── filesystem.py │ │ │ ├── filetypes.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── packaging.py │ │ │ ├── retry.py │ │ │ ├── setuptools_build.py │ │ │ ├── subprocess.py │ │ │ ├── temp_dir.py │ │ │ ├── unpacking.py │ │ │ ├── urls.py │ │ │ ├── virtualenv.py │ │ │ └── wheel.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── bazaar.cpython-312.pyc │ │ │ │ ├── git.cpython-312.pyc │ │ │ │ ├── mercurial.cpython-312.pyc │ │ │ │ ├── subversion.cpython-312.pyc │ │ │ │ └── versioncontrol.cpython-312.pyc │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ ├── subversion.py │ │ │ └── versioncontrol.py │ │ └── wheel_builder.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ └── typing_extensions.cpython-312.pyc │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _cmd.cpython-312.pyc │ │ │ │ ├── adapter.cpython-312.pyc │ │ │ │ ├── cache.cpython-312.pyc │ │ │ │ ├── controller.cpython-312.pyc │ │ │ │ ├── filewrapper.cpython-312.pyc │ │ │ │ ├── heuristics.cpython-312.pyc │ │ │ │ ├── serialize.cpython-312.pyc │ │ │ │ └── wrapper.cpython-312.pyc │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── file_cache.cpython-312.pyc │ │ │ │ │ └── redis_cache.cpython-312.pyc │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── py.typed │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ └── core.cpython-312.pyc │ │ │ ├── cacert.pem │ │ │ ├── core.py │ │ │ └── py.typed │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ ├── database.cpython-312.pyc │ │ │ │ ├── index.cpython-312.pyc │ │ │ │ ├── locators.cpython-312.pyc │ │ │ │ ├── manifest.cpython-312.pyc │ │ │ │ ├── markers.cpython-312.pyc │ │ │ │ ├── metadata.cpython-312.pyc │ │ │ │ ├── resources.cpython-312.pyc │ │ │ │ ├── scripts.cpython-312.pyc │ │ │ │ ├── util.cpython-312.pyc │ │ │ │ ├── version.cpython-312.pyc │ │ │ │ └── wheel.cpython-312.pyc │ │ │ ├── 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-312.pyc │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ └── distro.cpython-312.pyc │ │ │ ├── distro.py │ │ │ └── py.typed │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── codec.cpython-312.pyc │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ ├── core.cpython-312.pyc │ │ │ │ ├── idnadata.cpython-312.pyc │ │ │ │ ├── intranges.cpython-312.pyc │ │ │ │ ├── package_data.cpython-312.pyc │ │ │ │ └── uts46data.cpython-312.pyc │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ ├── py.typed │ │ │ └── uts46data.py │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── exceptions.cpython-312.pyc │ │ │ │ ├── ext.cpython-312.pyc │ │ │ │ └── fallback.cpython-312.pyc │ │ │ ├── exceptions.py │ │ │ ├── ext.py │ │ │ └── fallback.py │ │ ├── packaging │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _elffile.cpython-312.pyc │ │ │ │ ├── _manylinux.cpython-312.pyc │ │ │ │ ├── _musllinux.cpython-312.pyc │ │ │ │ ├── _parser.cpython-312.pyc │ │ │ │ ├── _structures.cpython-312.pyc │ │ │ │ ├── _tokenizer.cpython-312.pyc │ │ │ │ ├── markers.cpython-312.pyc │ │ │ │ ├── metadata.cpython-312.pyc │ │ │ │ ├── requirements.cpython-312.pyc │ │ │ │ ├── specifiers.cpython-312.pyc │ │ │ │ ├── tags.cpython-312.pyc │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ └── version.cpython-312.pyc │ │ │ ├── _elffile.py │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _parser.py │ │ │ ├── _structures.py │ │ │ ├── _tokenizer.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── py.typed │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ ├── platformdirs │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ ├── android.cpython-312.pyc │ │ │ │ ├── api.cpython-312.pyc │ │ │ │ ├── macos.cpython-312.pyc │ │ │ │ ├── unix.cpython-312.pyc │ │ │ │ ├── version.cpython-312.pyc │ │ │ │ └── windows.cpython-312.pyc │ │ │ ├── android.py │ │ │ ├── api.py │ │ │ ├── macos.py │ │ │ ├── py.typed │ │ │ ├── unix.py │ │ │ ├── version.py │ │ │ └── windows.py │ │ ├── pygments │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ ├── cmdline.cpython-312.pyc │ │ │ │ ├── console.cpython-312.pyc │ │ │ │ ├── filter.cpython-312.pyc │ │ │ │ ├── formatter.cpython-312.pyc │ │ │ │ ├── lexer.cpython-312.pyc │ │ │ │ ├── modeline.cpython-312.pyc │ │ │ │ ├── plugin.cpython-312.pyc │ │ │ │ ├── regexopt.cpython-312.pyc │ │ │ │ ├── scanner.cpython-312.pyc │ │ │ │ ├── sphinxext.cpython-312.pyc │ │ │ │ ├── style.cpython-312.pyc │ │ │ │ ├── token.cpython-312.pyc │ │ │ │ ├── unistring.cpython-312.pyc │ │ │ │ └── util.cpython-312.pyc │ │ │ ├── cmdline.py │ │ │ ├── console.py │ │ │ ├── filter.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ ├── formatter.py │ │ │ ├── formatters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _mapping.cpython-312.pyc │ │ │ │ │ ├── bbcode.cpython-312.pyc │ │ │ │ │ ├── groff.cpython-312.pyc │ │ │ │ │ ├── html.cpython-312.pyc │ │ │ │ │ ├── img.cpython-312.pyc │ │ │ │ │ ├── irc.cpython-312.pyc │ │ │ │ │ ├── latex.cpython-312.pyc │ │ │ │ │ ├── other.cpython-312.pyc │ │ │ │ │ ├── pangomarkup.cpython-312.pyc │ │ │ │ │ ├── rtf.cpython-312.pyc │ │ │ │ │ ├── svg.cpython-312.pyc │ │ │ │ │ ├── terminal.cpython-312.pyc │ │ │ │ │ └── terminal256.cpython-312.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-312.pyc │ │ │ │ │ ├── _mapping.cpython-312.pyc │ │ │ │ │ └── python.cpython-312.pyc │ │ │ │ ├── _mapping.py │ │ │ │ └── python.py │ │ │ ├── modeline.py │ │ │ ├── plugin.py │ │ │ ├── regexopt.py │ │ │ ├── scanner.py │ │ │ ├── sphinxext.py │ │ │ ├── style.py │ │ │ ├── styles │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── _mapping.cpython-312.pyc │ │ │ │ └── _mapping.py │ │ │ ├── token.py │ │ │ ├── unistring.py │ │ │ └── util.py │ │ ├── pyproject_hooks │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _compat.cpython-312.pyc │ │ │ │ └── _impl.cpython-312.pyc │ │ │ ├── _compat.py │ │ │ ├── _impl.py │ │ │ └── _in_process │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── _in_process.cpython-312.pyc │ │ │ │ └── _in_process.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __version__.cpython-312.pyc │ │ │ │ ├── _internal_utils.cpython-312.pyc │ │ │ │ ├── adapters.cpython-312.pyc │ │ │ │ ├── api.cpython-312.pyc │ │ │ │ ├── auth.cpython-312.pyc │ │ │ │ ├── certs.cpython-312.pyc │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ ├── cookies.cpython-312.pyc │ │ │ │ ├── exceptions.cpython-312.pyc │ │ │ │ ├── help.cpython-312.pyc │ │ │ │ ├── hooks.cpython-312.pyc │ │ │ │ ├── models.cpython-312.pyc │ │ │ │ ├── packages.cpython-312.pyc │ │ │ │ ├── sessions.cpython-312.pyc │ │ │ │ ├── status_codes.cpython-312.pyc │ │ │ │ ├── structures.cpython-312.pyc │ │ │ │ └── utils.cpython-312.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-312.pyc │ │ │ │ ├── providers.cpython-312.pyc │ │ │ │ ├── reporters.cpython-312.pyc │ │ │ │ ├── resolvers.cpython-312.pyc │ │ │ │ └── structs.cpython-312.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── collections_abc.cpython-312.pyc │ │ │ │ └── collections_abc.py │ │ │ ├── providers.py │ │ │ ├── py.typed │ │ │ ├── reporters.py │ │ │ ├── resolvers.py │ │ │ └── structs.py │ │ ├── rich │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ ├── _cell_widths.cpython-312.pyc │ │ │ │ ├── _emoji_codes.cpython-312.pyc │ │ │ │ ├── _emoji_replace.cpython-312.pyc │ │ │ │ ├── _export_format.cpython-312.pyc │ │ │ │ ├── _extension.cpython-312.pyc │ │ │ │ ├── _fileno.cpython-312.pyc │ │ │ │ ├── _inspect.cpython-312.pyc │ │ │ │ ├── _log_render.cpython-312.pyc │ │ │ │ ├── _loop.cpython-312.pyc │ │ │ │ ├── _null_file.cpython-312.pyc │ │ │ │ ├── _palettes.cpython-312.pyc │ │ │ │ ├── _pick.cpython-312.pyc │ │ │ │ ├── _ratio.cpython-312.pyc │ │ │ │ ├── _spinners.cpython-312.pyc │ │ │ │ ├── _stack.cpython-312.pyc │ │ │ │ ├── _timer.cpython-312.pyc │ │ │ │ ├── _win32_console.cpython-312.pyc │ │ │ │ ├── _windows.cpython-312.pyc │ │ │ │ ├── _windows_renderer.cpython-312.pyc │ │ │ │ ├── _wrap.cpython-312.pyc │ │ │ │ ├── abc.cpython-312.pyc │ │ │ │ ├── align.cpython-312.pyc │ │ │ │ ├── ansi.cpython-312.pyc │ │ │ │ ├── bar.cpython-312.pyc │ │ │ │ ├── box.cpython-312.pyc │ │ │ │ ├── cells.cpython-312.pyc │ │ │ │ ├── color.cpython-312.pyc │ │ │ │ ├── color_triplet.cpython-312.pyc │ │ │ │ ├── columns.cpython-312.pyc │ │ │ │ ├── console.cpython-312.pyc │ │ │ │ ├── constrain.cpython-312.pyc │ │ │ │ ├── containers.cpython-312.pyc │ │ │ │ ├── control.cpython-312.pyc │ │ │ │ ├── default_styles.cpython-312.pyc │ │ │ │ ├── diagnose.cpython-312.pyc │ │ │ │ ├── emoji.cpython-312.pyc │ │ │ │ ├── errors.cpython-312.pyc │ │ │ │ ├── file_proxy.cpython-312.pyc │ │ │ │ ├── filesize.cpython-312.pyc │ │ │ │ ├── highlighter.cpython-312.pyc │ │ │ │ ├── json.cpython-312.pyc │ │ │ │ ├── jupyter.cpython-312.pyc │ │ │ │ ├── layout.cpython-312.pyc │ │ │ │ ├── live.cpython-312.pyc │ │ │ │ ├── live_render.cpython-312.pyc │ │ │ │ ├── logging.cpython-312.pyc │ │ │ │ ├── markup.cpython-312.pyc │ │ │ │ ├── measure.cpython-312.pyc │ │ │ │ ├── padding.cpython-312.pyc │ │ │ │ ├── pager.cpython-312.pyc │ │ │ │ ├── palette.cpython-312.pyc │ │ │ │ ├── panel.cpython-312.pyc │ │ │ │ ├── pretty.cpython-312.pyc │ │ │ │ ├── progress.cpython-312.pyc │ │ │ │ ├── progress_bar.cpython-312.pyc │ │ │ │ ├── prompt.cpython-312.pyc │ │ │ │ ├── protocol.cpython-312.pyc │ │ │ │ ├── region.cpython-312.pyc │ │ │ │ ├── repr.cpython-312.pyc │ │ │ │ ├── rule.cpython-312.pyc │ │ │ │ ├── scope.cpython-312.pyc │ │ │ │ ├── screen.cpython-312.pyc │ │ │ │ ├── segment.cpython-312.pyc │ │ │ │ ├── spinner.cpython-312.pyc │ │ │ │ ├── status.cpython-312.pyc │ │ │ │ ├── style.cpython-312.pyc │ │ │ │ ├── styled.cpython-312.pyc │ │ │ │ ├── syntax.cpython-312.pyc │ │ │ │ ├── table.cpython-312.pyc │ │ │ │ ├── terminal_theme.cpython-312.pyc │ │ │ │ ├── text.cpython-312.pyc │ │ │ │ ├── theme.cpython-312.pyc │ │ │ │ ├── themes.cpython-312.pyc │ │ │ │ ├── traceback.cpython-312.pyc │ │ │ │ └── tree.cpython-312.pyc │ │ │ ├── _cell_widths.py │ │ │ ├── _emoji_codes.py │ │ │ ├── _emoji_replace.py │ │ │ ├── _export_format.py │ │ │ ├── _extension.py │ │ │ ├── _fileno.py │ │ │ ├── _inspect.py │ │ │ ├── _log_render.py │ │ │ ├── _loop.py │ │ │ ├── _null_file.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 │ │ │ ├── py.typed │ │ │ ├── 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 │ │ ├── tomli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _parser.cpython-312.pyc │ │ │ │ ├── _re.cpython-312.pyc │ │ │ │ └── _types.cpython-312.pyc │ │ │ ├── _parser.py │ │ │ ├── _re.py │ │ │ ├── _types.py │ │ │ └── py.typed │ │ ├── truststore │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _api.cpython-312.pyc │ │ │ │ ├── _macos.cpython-312.pyc │ │ │ │ ├── _openssl.cpython-312.pyc │ │ │ │ ├── _ssl_constants.cpython-312.pyc │ │ │ │ └── _windows.cpython-312.pyc │ │ │ ├── _api.py │ │ │ ├── _macos.py │ │ │ ├── _openssl.py │ │ │ ├── _ssl_constants.py │ │ │ ├── _windows.py │ │ │ └── py.typed │ │ ├── typing_extensions.py │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _collections.cpython-312.pyc │ │ │ │ ├── _version.cpython-312.pyc │ │ │ │ ├── connection.cpython-312.pyc │ │ │ │ ├── connectionpool.cpython-312.pyc │ │ │ │ ├── exceptions.cpython-312.pyc │ │ │ │ ├── fields.cpython-312.pyc │ │ │ │ ├── filepost.cpython-312.pyc │ │ │ │ ├── poolmanager.cpython-312.pyc │ │ │ │ ├── request.cpython-312.pyc │ │ │ │ └── response.cpython-312.pyc │ │ │ ├── _collections.py │ │ │ ├── _version.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── _appengine_environ.cpython-312.pyc │ │ │ │ │ ├── appengine.cpython-312.pyc │ │ │ │ │ ├── ntlmpool.cpython-312.pyc │ │ │ │ │ ├── pyopenssl.cpython-312.pyc │ │ │ │ │ ├── securetransport.cpython-312.pyc │ │ │ │ │ └── socks.cpython-312.pyc │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── bindings.cpython-312.pyc │ │ │ │ │ │ └── low_level.cpython-312.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-312.pyc │ │ │ │ │ └── six.cpython-312.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ │ ├── makefile.cpython-312.pyc │ │ │ │ │ │ └── weakref_finalize.cpython-312.pyc │ │ │ │ │ ├── makefile.py │ │ │ │ │ └── weakref_finalize.py │ │ │ │ └── six.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── connection.cpython-312.pyc │ │ │ │ ├── proxy.cpython-312.pyc │ │ │ │ ├── queue.cpython-312.pyc │ │ │ │ ├── request.cpython-312.pyc │ │ │ │ ├── response.cpython-312.pyc │ │ │ │ ├── retry.cpython-312.pyc │ │ │ │ ├── ssl_.cpython-312.pyc │ │ │ │ ├── ssl_match_hostname.cpython-312.pyc │ │ │ │ ├── ssltransport.cpython-312.pyc │ │ │ │ ├── timeout.cpython-312.pyc │ │ │ │ ├── url.cpython-312.pyc │ │ │ │ └── wait.cpython-312.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 │ └── py.typed │ ├── pluggy-1.5.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── pluggy │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── _callers.cpython-312.pyc │ │ ├── _hooks.cpython-312.pyc │ │ ├── _manager.cpython-312.pyc │ │ ├── _result.cpython-312.pyc │ │ ├── _tracing.cpython-312.pyc │ │ ├── _version.cpython-312.pyc │ │ └── _warnings.cpython-312.pyc │ ├── _callers.py │ ├── _hooks.py │ ├── _manager.py │ ├── _result.py │ ├── _tracing.py │ ├── _version.py │ ├── _warnings.py │ └── py.typed │ ├── py.py │ ├── pytest-8.3.5.dist-info │ ├── AUTHORS │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ └── pytest │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ ├── __init__.cpython-312.pyc │ └── __main__.cpython-312.pyc │ └── py.typed ├── Scripts ├── Activate.ps1 ├── activate ├── activate.bat ├── deactivate.bat ├── pip.exe ├── pip3.12.exe ├── pip3.exe ├── py.test.exe ├── pytest.exe ├── python.exe └── pythonw.exe └── pyvenv.cfg /.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/.coverage -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | PYTHONPATH=. 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.envFile": "${workspaceFolder}/.env", 3 | "python.analysis.extraPaths": [ 4 | "./src/models" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /Screenshot (10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (10).png -------------------------------------------------------------------------------- /Screenshot (12).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (12).png -------------------------------------------------------------------------------- /Screenshot (13).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (13).png -------------------------------------------------------------------------------- /Screenshot (16).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (16).png -------------------------------------------------------------------------------- /Screenshot (17).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (17).png -------------------------------------------------------------------------------- /Screenshot (18).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (18).png -------------------------------------------------------------------------------- /Screenshot (19).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (19).png -------------------------------------------------------------------------------- /Screenshot (20).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (20).png -------------------------------------------------------------------------------- /Screenshot (21).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (21).png -------------------------------------------------------------------------------- /Screenshot (22).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (22).png -------------------------------------------------------------------------------- /Screenshot (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (7).png -------------------------------------------------------------------------------- /Screenshot (8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (8).png -------------------------------------------------------------------------------- /Screenshot (9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot (9).png -------------------------------------------------------------------------------- /Screenshot_13-5-2025_111041_github.com.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/Screenshot_13-5-2025_111041_github.com.jpeg -------------------------------------------------------------------------------- /__pycache__/main.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/__pycache__/main.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/student.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/__pycache__/student.cpython-313.pyc -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/api/__init__.py -------------------------------------------------------------------------------- /api/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/api/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /api/__pycache__/course_routes.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/api/__pycache__/course_routes.cpython-313.pyc -------------------------------------------------------------------------------- /api/__pycache__/performance_routes.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/api/__pycache__/performance_routes.cpython-313.pyc -------------------------------------------------------------------------------- /api/__pycache__/student_routes.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/api/__pycache__/student_routes.cpython-313.pyc -------------------------------------------------------------------------------- /api/course_routes.py: -------------------------------------------------------------------------------- 1 | from fastapi import APIRouter 2 | from services.course_service import get_all_courses 3 | 4 | router = APIRouter() 5 | 6 | @router.get("/") 7 | def list_courses(): 8 | return get_all_courses() 9 | -------------------------------------------------------------------------------- /api/performance_routes.py: -------------------------------------------------------------------------------- 1 | from fastapi import APIRouter 2 | from services.performance_service import predict_performance 3 | 4 | router = APIRouter() 5 | 6 | @router.get("/predict") 7 | def predict(): 8 | return predict_performance() 9 | -------------------------------------------------------------------------------- /api/student_routes.py: -------------------------------------------------------------------------------- 1 | from fastapi import APIRouter 2 | from services.student_service import get_all_students 3 | 4 | router = APIRouter() 5 | 6 | @router.get("/") 7 | def list_students(): 8 | return get_all_students() 9 | -------------------------------------------------------------------------------- /creational_patterns/__pycache__/abstract_factory.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/abstract_factory.cpython-312.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/abstract_factory.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/abstract_factory.cpython-313.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/builder.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/builder.cpython-312.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/builder.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/builder.cpython-313.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/factory_method.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/factory_method.cpython-312.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/factory_method.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/factory_method.cpython-313.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/prototype.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/prototype.cpython-312.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/prototype.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/prototype.cpython-313.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/simple_factory.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/simple_factory.cpython-312.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/simple_factory.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/simple_factory.cpython-313.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/singleton.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/singleton.cpython-312.pyc -------------------------------------------------------------------------------- /creational_patterns/__pycache__/singleton.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/creational_patterns/__pycache__/singleton.cpython-313.pyc -------------------------------------------------------------------------------- /domain/__pycache__/student.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/domain/__pycache__/student.cpython-312.pyc -------------------------------------------------------------------------------- /domain/student.py: -------------------------------------------------------------------------------- 1 | # src/domain/student.py 2 | class Student: 3 | def __init__(self, id: str, name: str, grade: int): 4 | self.id = id 5 | self.name = name 6 | self.grade = grade 7 | -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | # pytest.ini 2 | [pytest] 3 | pythonpath = src 4 | -------------------------------------------------------------------------------- /repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/__init__.py -------------------------------------------------------------------------------- /repositories/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /repositories/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /repositories/__pycache__/repository.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/__pycache__/repository.cpython-312.pyc -------------------------------------------------------------------------------- /repositories/__pycache__/repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/__pycache__/repository.cpython-313.pyc -------------------------------------------------------------------------------- /repositories/__pycache__/student_repository.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/__pycache__/student_repository.cpython-312.pyc -------------------------------------------------------------------------------- /repositories/__pycache__/student_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/__pycache__/student_repository.cpython-313.pyc -------------------------------------------------------------------------------- /repositories/inmemory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/inmemory/__init__.py -------------------------------------------------------------------------------- /repositories/inmemory/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/inmemory/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /repositories/inmemory/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/inmemory/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /repositories/inmemory/__pycache__/base_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/inmemory/__pycache__/base_repository.cpython-313.pyc -------------------------------------------------------------------------------- /repositories/inmemory/__pycache__/inmemory_student_repository.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/inmemory/__pycache__/inmemory_student_repository.cpython-312.pyc -------------------------------------------------------------------------------- /repositories/inmemory/__pycache__/inmemory_student_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/inmemory/__pycache__/inmemory_student_repository.cpython-313.pyc -------------------------------------------------------------------------------- /repositories/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/repositories/interfaces/__init__.py -------------------------------------------------------------------------------- /repositories/student_repository.py: -------------------------------------------------------------------------------- 1 | from repositories.repository import Repository 2 | from domain.student import Student 3 | 4 | class StudentRepository(Repository[Student, str]): 5 | pass 6 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama==0.4.6 2 | coverage==7.8.0 3 | iniconfig==2.1.0 4 | packaging==24.2 5 | pluggy==1.5.0 6 | pytest==8.3.5 7 | pytest-cov==6.1.1 8 | fastapi 9 | uvicorn 10 | pydantic 11 | 12 | -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/services/__init__.py -------------------------------------------------------------------------------- /services/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/services/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /services/__pycache__/course_service.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/services/__pycache__/course_service.cpython-313.pyc -------------------------------------------------------------------------------- /services/__pycache__/performance_service.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/services/__pycache__/performance_service.cpython-313.pyc -------------------------------------------------------------------------------- /services/__pycache__/student_service.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/services/__pycache__/student_service.cpython-313.pyc -------------------------------------------------------------------------------- /services/course_service.py: -------------------------------------------------------------------------------- 1 | def get_all_courses(): 2 | return [{"code": "CS101", "name": "Intro to CS"}, {"code": "DBM", "name": "Database Management"}] 3 | -------------------------------------------------------------------------------- /services/module_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/services/module_service.py -------------------------------------------------------------------------------- /services/performance_service.py: -------------------------------------------------------------------------------- 1 | def predict_performance(): 2 | return {"student_id": 1, "predicted_grade": "A"} 3 | -------------------------------------------------------------------------------- /services/student_service.py: -------------------------------------------------------------------------------- 1 | def get_all_students(): 2 | return [{"id": 1, "name": "Sisipho"}, {"id": 2, "name": "Buhle"}] 3 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__init__.py -------------------------------------------------------------------------------- /tests/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /tests/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_abstract_factory.cpython-312-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_abstract_factory.cpython-312-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_abstract_factory.cpython-313-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_abstract_factory.cpython-313-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_builder.cpython-312-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_builder.cpython-312-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_builder.cpython-313-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_builder.cpython-313-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_factory_method.cpython-312-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_factory_method.cpython-312-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_factory_method.cpython-313-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_factory_method.cpython-313-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_inmemory_student_repository.cpython-312-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_inmemory_student_repository.cpython-312-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_inmemory_student_repository.cpython-313-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_inmemory_student_repository.cpython-313-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_prototype.cpython-312-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_prototype.cpython-312-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_prototype.cpython-313-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_prototype.cpython-313-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_simple_factory.cpython-312-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_simple_factory.cpython-312-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_simple_factory.cpython-313-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_simple_factory.cpython-313-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_singleton.cpython-312-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_singleton.cpython-312-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_singleton.cpython-313-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/tests/__pycache__/test_singleton.cpython-313-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/__pycache__/py.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/__pycache__/py.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/_argcomplete.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/_argcomplete.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/_version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/_version.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/cacheprovider.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/cacheprovider.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/capture.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/capture.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/debugging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/debugging.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/deprecated.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/deprecated.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/doctest.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/doctest.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/faulthandler.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/faulthandler.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/fixtures.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/fixtures.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/freeze_support.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/freeze_support.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/helpconfig.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/helpconfig.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/hookspec.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/hookspec.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/junitxml.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/junitxml.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/legacypath.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/legacypath.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/monkeypatch.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/monkeypatch.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/nodes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/nodes.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/outcomes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/outcomes.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/pastebin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/pastebin.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/pathlib.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/pathlib.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/pytester.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/pytester.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/pytester_assertions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/pytester_assertions.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/python.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/python.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/python_api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/python_api.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/python_path.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/python_path.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/recwarn.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/recwarn.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/reports.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/reports.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/runner.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/runner.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/scope.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/scope.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/setuponly.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/setuponly.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/setupplan.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/setupplan.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/skipping.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/skipping.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/stash.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/stash.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/stepwise.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/stepwise.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/terminal.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/terminal.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/threadexception.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/threadexception.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/timing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/timing.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/tmpdir.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/tmpdir.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/unittest.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/unittest.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/unraisableexception.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/unraisableexception.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/warning_types.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/warning_types.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/__pycache__/warnings.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/__pycache__/warnings.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_code/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_code/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_code/__pycache__/code.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_code/__pycache__/code.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_code/__pycache__/source.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_code/__pycache__/source.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_io/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_io/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_io/__pycache__/pprint.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_io/__pycache__/pprint.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_io/__pycache__/saferepr.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_io/__pycache__/saferepr.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_io/__pycache__/terminalwriter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_io/__pycache__/terminalwriter.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_io/__pycache__/wcwidth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_io/__pycache__/wcwidth.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_py/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_py/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_py/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_py/__pycache__/error.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_py/__pycache__/error.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/_py/__pycache__/path.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/_py/__pycache__/path.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/assertion/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/assertion/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/assertion/__pycache__/rewrite.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/assertion/__pycache__/rewrite.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/assertion/__pycache__/truncate.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/assertion/__pycache__/truncate.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/assertion/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/assertion/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/config/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/config/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/config/__pycache__/argparsing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/config/__pycache__/argparsing.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/config/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/config/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/config/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/config/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/config/__pycache__/findpaths.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/config/__pycache__/findpaths.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/mark/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/mark/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/mark/__pycache__/expression.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/mark/__pycache__/expression.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/mark/__pycache__/structures.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/mark/__pycache__/structures.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_pytest/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/_pytest/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama-0.4.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama-0.4.6.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: hatchling 1.11.1 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/__pycache__/ansi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/__pycache__/ansi.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/__pycache__/ansitowin32.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/__pycache__/ansitowin32.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/__pycache__/initialise.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/__pycache__/initialise.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/__pycache__/win32.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/__pycache__/win32.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/__pycache__/winterm.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/__pycache__/winterm.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/tests/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/tests/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/tests/__pycache__/ansi_test.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/tests/__pycache__/ansi_test.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/tests/__pycache__/initialise_test.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/tests/__pycache__/initialise_test.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/tests/__pycache__/isatty_test.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/tests/__pycache__/isatty_test.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/tests/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/tests/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama/tests/__pycache__/winterm_test.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/colorama/tests/__pycache__/winterm_test.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/iniconfig-2.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/iniconfig-2.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: hatchling 1.27.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/iniconfig/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/iniconfig/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/iniconfig/__pycache__/_parse.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/iniconfig/__pycache__/_parse.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/iniconfig/__pycache__/_version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/iniconfig/__pycache__/_version.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/iniconfig/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/iniconfig/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/iniconfig/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/iniconfig/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging-25.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging-25.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.12.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging-25.0.dist-info/licenses/LICENSE: -------------------------------------------------------------------------------- 1 | This software is made available under the terms of *either* of the licenses 2 | found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made 3 | under the terms of *both* these licenses. 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/_elffile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/_elffile.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/_manylinux.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/_manylinux.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/_musllinux.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/_musllinux.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/_parser.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/_structures.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/_structures.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/_tokenizer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/_tokenizer.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/markers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/markers.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/metadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/metadata.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/requirements.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/requirements.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/specifiers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/specifiers.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/tags.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/tags.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/licenses/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/licenses/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/licenses/__pycache__/_spdx.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/licenses/__pycache__/_spdx.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/packaging/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/packaging/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-24.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-24.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip-24.2.dist-info/REQUESTED -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-24.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (71.1.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-24.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal.cli.main:main 3 | pip3 = pip._internal.cli.main:main 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-24.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | SUCCESS = 0 2 | ERROR = 1 3 | UNKNOWN_ERROR = 2 4 | VIRTUALENV_NOT_FOUND = 3 5 | PREVIOUS_BUILD_DIR_ERROR = 4 6 | NO_MATCHES_FOUND = 23 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py: -------------------------------------------------------------------------------- 1 | from ._dists import Distribution 2 | from ._envs import Environment 3 | 4 | __all__ = ["NAME", "Distribution", "Environment"] 5 | 6 | NAME = "importlib" 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/operations/build/__init__.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/req/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/resolution/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/cachecontrol/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __all__ = ["contents", "where"] 4 | __version__ = "2024.07.04" 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/certifi/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/__main__.py: -------------------------------------------------------------------------------- 1 | from .distro import main 2 | 3 | if __name__ == "__main__": 4 | main() 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/distro/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.7' 2 | 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/idna/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/packaging/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/platformdirs/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py: -------------------------------------------------------------------------------- 1 | __all__ = ("tomllib",) 2 | 3 | import sys 4 | 5 | if sys.version_info >= (3, 11): 6 | import tomllib 7 | else: 8 | from pip._vendor import tomli as tomllib 9 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py: -------------------------------------------------------------------------------- 1 | __all__ = ["Mapping", "Sequence"] 2 | 3 | try: 4 | from collections.abc import Mapping, Sequence 5 | except ImportError: 6 | from collections import Mapping, Sequence 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/resolvelib/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/rich/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/region.py: -------------------------------------------------------------------------------- 1 | from typing import NamedTuple 2 | 3 | 4 | class Region(NamedTuple): 5 | """Defines a rectangular region of the screen.""" 6 | 7 | x: int 8 | y: int 9 | width: int 10 | height: int 11 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- 1 | from .default_styles import DEFAULT_STYLES 2 | from .theme import Theme 3 | 4 | 5 | DEFAULT = Theme(DEFAULT_STYLES) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/truststore/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/truststore/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.18" 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy-1.5.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy-1.5.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.43.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy-1.5.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pluggy 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pluggy/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy/__pycache__/_callers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pluggy/__pycache__/_callers.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy/__pycache__/_hooks.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pluggy/__pycache__/_hooks.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy/__pycache__/_manager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pluggy/__pycache__/_manager.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy/__pycache__/_result.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pluggy/__pycache__/_result.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy/__pycache__/_tracing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pluggy/__pycache__/_tracing.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy/__pycache__/_version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pluggy/__pycache__/_version.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy/__pycache__/_warnings.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pluggy/__pycache__/_warnings.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pluggy/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pluggy/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytest-8.3.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytest-8.3.5.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pytest-8.3.5.dist-info/REQUESTED -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytest-8.3.5.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (75.8.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytest-8.3.5.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | py.test = pytest:console_main 3 | pytest = pytest:console_main 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytest-8.3.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _pytest 2 | py 3 | pytest 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytest/__main__.py: -------------------------------------------------------------------------------- 1 | """The pytest entry point.""" 2 | 3 | from __future__ import annotations 4 | 5 | import pytest 6 | 7 | 8 | if __name__ == "__main__": 9 | raise SystemExit(pytest.console_main()) 10 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytest/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pytest/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytest/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pytest/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytest/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Lib/site-packages/pytest/py.typed -------------------------------------------------------------------------------- /venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.12.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Scripts/pip3.12.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /venv/Scripts/py.test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Scripts/py.test.exe -------------------------------------------------------------------------------- /venv/Scripts/pytest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Scripts/pytest.exe -------------------------------------------------------------------------------- /venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Scripts/python.exe -------------------------------------------------------------------------------- /venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SisiphoM/StudentPerformanceAI/bd35b8737981abc7ba3a1924ac7dce6d04f26b60/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Python312 2 | include-system-site-packages = false 3 | version = 3.12.6 4 | executable = C:\Python312\python.exe 5 | command = C:\Python312\python.exe -m venv C:\Users\218319762\StudentPerformanceAI\venv 6 | --------------------------------------------------------------------------------