├── .env.example ├── .envrc ├── .github ├── instructions │ ├── .instructions │ ├── step1-instructions.md │ ├── step2-instructions.md │ ├── step3-instructions.md │ └── step4-instructions.md ├── results │ ├── step3-results.md │ └── step4-results.md └── workflows │ └── static.yml ├── .gitignore ├── .venv ├── bin │ ├── Activate.ps1 │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── httpx │ ├── pip │ ├── pip3 │ ├── pip3.10 │ ├── py.test │ ├── pytest │ ├── python │ ├── python3 │ ├── python3.10 │ ├── uvicorn │ └── wheel ├── lib │ └── python3.10 │ │ └── site-packages │ │ ├── _distutils_hack │ │ ├── __init__.py │ │ └── override.py │ │ ├── _pytest │ │ ├── __init__.py │ │ ├── _argcomplete.py │ │ ├── _code │ │ │ ├── __init__.py │ │ │ ├── code.py │ │ │ └── source.py │ │ ├── _io │ │ │ ├── __init__.py │ │ │ ├── saferepr.py │ │ │ ├── terminalwriter.py │ │ │ └── wcwidth.py │ │ ├── _py │ │ │ ├── __init__.py │ │ │ ├── error.py │ │ │ └── path.py │ │ ├── _version.py │ │ ├── assertion │ │ │ ├── __init__.py │ │ │ ├── rewrite.py │ │ │ ├── truncate.py │ │ │ └── util.py │ │ ├── cacheprovider.py │ │ ├── capture.py │ │ ├── compat.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── anyio-4.10.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── licenses │ │ │ └── LICENSE │ │ └── top_level.txt │ │ ├── anyio │ │ ├── __init__.py │ │ ├── _backends │ │ │ ├── __init__.py │ │ │ ├── _asyncio.py │ │ │ └── _trio.py │ │ ├── _core │ │ │ ├── __init__.py │ │ │ ├── _asyncio_selector_thread.py │ │ │ ├── _contextmanagers.py │ │ │ ├── _eventloop.py │ │ │ ├── _exceptions.py │ │ │ ├── _fileio.py │ │ │ ├── _resources.py │ │ │ ├── _signals.py │ │ │ ├── _sockets.py │ │ │ ├── _streams.py │ │ │ ├── _subprocesses.py │ │ │ ├── _synchronization.py │ │ │ ├── _tasks.py │ │ │ ├── _tempfile.py │ │ │ ├── _testing.py │ │ │ └── _typedattr.py │ │ ├── abc │ │ │ ├── __init__.py │ │ │ ├── _eventloop.py │ │ │ ├── _resources.py │ │ │ ├── _sockets.py │ │ │ ├── _streams.py │ │ │ ├── _subprocesses.py │ │ │ ├── _tasks.py │ │ │ └── _testing.py │ │ ├── from_thread.py │ │ ├── lowlevel.py │ │ ├── py.typed │ │ ├── pytest_plugin.py │ │ ├── streams │ │ │ ├── __init__.py │ │ │ ├── buffered.py │ │ │ ├── file.py │ │ │ ├── memory.py │ │ │ ├── stapled.py │ │ │ ├── text.py │ │ │ └── tls.py │ │ ├── to_interpreter.py │ │ ├── to_process.py │ │ └── to_thread.py │ │ ├── certifi-2025.8.3.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── licenses │ │ │ └── LICENSE │ │ └── top_level.txt │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cacert.pem │ │ ├── core.py │ │ └── py.typed │ │ ├── click-8.2.1.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── licenses │ │ │ └── LICENSE.txt │ │ ├── click │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _termui_impl.py │ │ ├── _textwrap.py │ │ ├── _winconsole.py │ │ ├── core.py │ │ ├── decorators.py │ │ ├── exceptions.py │ │ ├── formatting.py │ │ ├── globals.py │ │ ├── parser.py │ │ ├── py.typed │ │ ├── shell_completion.py │ │ ├── termui.py │ │ ├── testing.py │ │ ├── types.py │ │ └── utils.py │ │ ├── distutils-precedence.pth │ │ ├── exceptiongroup-1.3.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── licenses │ │ │ └── LICENSE │ │ ├── exceptiongroup │ │ ├── __init__.py │ │ ├── _catch.py │ │ ├── _exceptions.py │ │ ├── _formatting.py │ │ ├── _suppress.py │ │ ├── _version.py │ │ └── py.typed │ │ ├── fastapi-0.100.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── licenses │ │ │ └── LICENSE │ │ ├── fastapi │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── applications.py │ │ ├── background.py │ │ ├── concurrency.py │ │ ├── datastructures.py │ │ ├── dependencies │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── utils.py │ │ ├── encoders.py │ │ ├── exception_handlers.py │ │ ├── exceptions.py │ │ ├── logger.py │ │ ├── middleware │ │ │ ├── __init__.py │ │ │ ├── asyncexitstack.py │ │ │ ├── cors.py │ │ │ ├── gzip.py │ │ │ ├── httpsredirect.py │ │ │ ├── trustedhost.py │ │ │ └── wsgi.py │ │ ├── openapi │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── docs.py │ │ │ ├── models.py │ │ │ └── utils.py │ │ ├── param_functions.py │ │ ├── params.py │ │ ├── py.typed │ │ ├── requests.py │ │ ├── responses.py │ │ ├── routing.py │ │ ├── security │ │ │ ├── __init__.py │ │ │ ├── api_key.py │ │ │ ├── base.py │ │ │ ├── http.py │ │ │ ├── oauth2.py │ │ │ ├── open_id_connect_url.py │ │ │ └── utils.py │ │ ├── staticfiles.py │ │ ├── templating.py │ │ ├── testclient.py │ │ ├── types.py │ │ ├── utils.py │ │ └── websockets.py │ │ ├── h11-0.14.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── h11 │ │ ├── __init__.py │ │ ├── _abnf.py │ │ ├── _connection.py │ │ ├── _events.py │ │ ├── _headers.py │ │ ├── _readers.py │ │ ├── _receivebuffer.py │ │ ├── _state.py │ │ ├── _util.py │ │ ├── _version.py │ │ ├── _writers.py │ │ ├── py.typed │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ └── test-file │ │ │ ├── helpers.py │ │ │ ├── test_against_stdlib_http.py │ │ │ ├── test_connection.py │ │ │ ├── test_events.py │ │ │ ├── test_headers.py │ │ │ ├── test_helpers.py │ │ │ ├── test_io.py │ │ │ ├── test_receivebuffer.py │ │ │ ├── test_state.py │ │ │ └── test_util.py │ │ ├── httpcore-0.17.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.md │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── httpcore │ │ ├── __init__.py │ │ ├── _api.py │ │ ├── _async │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── connection_pool.py │ │ │ ├── http11.py │ │ │ ├── http2.py │ │ │ ├── http_proxy.py │ │ │ ├── interfaces.py │ │ │ └── socks_proxy.py │ │ ├── _backends │ │ │ ├── __init__.py │ │ │ ├── anyio.py │ │ │ ├── auto.py │ │ │ ├── base.py │ │ │ ├── mock.py │ │ │ ├── sync.py │ │ │ └── trio.py │ │ ├── _exceptions.py │ │ ├── _models.py │ │ ├── _ssl.py │ │ ├── _sync │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── connection_pool.py │ │ │ ├── http11.py │ │ │ ├── http2.py │ │ │ ├── http_proxy.py │ │ │ ├── interfaces.py │ │ │ └── socks_proxy.py │ │ ├── _synchronization.py │ │ ├── _trace.py │ │ ├── _utils.py │ │ └── py.typed │ │ ├── httpx-0.24.1.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── licenses │ │ │ └── LICENSE.md │ │ ├── httpx │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _api.py │ │ ├── _auth.py │ │ ├── _client.py │ │ ├── _compat.py │ │ ├── _config.py │ │ ├── _content.py │ │ ├── _decoders.py │ │ ├── _exceptions.py │ │ ├── _main.py │ │ ├── _models.py │ │ ├── _multipart.py │ │ ├── _status_codes.py │ │ ├── _transports │ │ │ ├── __init__.py │ │ │ ├── asgi.py │ │ │ ├── base.py │ │ │ ├── default.py │ │ │ ├── mock.py │ │ │ └── wsgi.py │ │ ├── _types.py │ │ ├── _urlparse.py │ │ ├── _urls.py │ │ ├── _utils.py │ │ └── py.typed │ │ ├── idna-3.10.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.md │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── idna │ │ ├── __init__.py │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ ├── py.typed │ │ └── uts46data.py │ │ ├── iniconfig-2.1.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── licenses │ │ │ └── LICENSE │ │ ├── iniconfig │ │ ├── __init__.py │ │ ├── _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 │ │ ├── _elffile.py │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _parser.py │ │ ├── _structures.py │ │ ├── _tokenizer.py │ │ ├── licenses │ │ │ ├── __init__.py │ │ │ └── _spdx.py │ │ ├── markers.py │ │ ├── metadata.py │ │ ├── py.typed │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ │ ├── pip-25.2.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── licenses │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ └── src │ │ │ │ └── pip │ │ │ │ └── _vendor │ │ │ │ ├── cachecontrol │ │ │ │ └── LICENSE.txt │ │ │ │ ├── certifi │ │ │ │ └── LICENSE │ │ │ │ ├── dependency_groups │ │ │ │ └── LICENSE.txt │ │ │ │ ├── distlib │ │ │ │ └── LICENSE.txt │ │ │ │ ├── distro │ │ │ │ └── LICENSE │ │ │ │ ├── idna │ │ │ │ └── LICENSE.md │ │ │ │ ├── msgpack │ │ │ │ └── COPYING │ │ │ │ ├── packaging │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE.APACHE │ │ │ │ └── LICENSE.BSD │ │ │ │ ├── pkg_resources │ │ │ │ └── LICENSE │ │ │ │ ├── platformdirs │ │ │ │ └── LICENSE │ │ │ │ ├── pygments │ │ │ │ └── LICENSE │ │ │ │ ├── pyproject_hooks │ │ │ │ └── LICENSE │ │ │ │ ├── requests │ │ │ │ └── LICENSE │ │ │ │ ├── resolvelib │ │ │ │ └── LICENSE │ │ │ │ ├── rich │ │ │ │ └── LICENSE │ │ │ │ ├── tomli │ │ │ │ ├── LICENSE │ │ │ │ └── LICENSE-HEADER │ │ │ │ ├── tomli_w │ │ │ │ └── LICENSE │ │ │ │ ├── truststore │ │ │ │ └── LICENSE │ │ │ │ └── urllib3 │ │ │ │ └── LICENSE.txt │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pip-runner__.py │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── lock.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── installed.py │ │ │ │ ├── sdist.py │ │ │ │ └── wheel.py │ │ │ ├── exceptions.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ ├── collector.py │ │ │ │ ├── package_finder.py │ │ │ │ └── sources.py │ │ │ ├── locations │ │ │ │ ├── __init__.py │ │ │ │ ├── _distutils.py │ │ │ │ ├── _sysconfig.py │ │ │ │ └── base.py │ │ │ ├── main.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── _json.py │ │ │ │ ├── base.py │ │ │ │ ├── importlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _dists.py │ │ │ │ │ └── _envs.py │ │ │ │ └── pkg_resources.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── candidate.py │ │ │ │ ├── direct_url.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ ├── installation_report.py │ │ │ │ ├── link.py │ │ │ │ ├── pylock.py │ │ │ │ ├── scheme.py │ │ │ │ ├── search_scope.py │ │ │ │ ├── selection_prefs.py │ │ │ │ ├── target_python.py │ │ │ │ └── wheel.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── cache.py │ │ │ │ ├── download.py │ │ │ │ ├── lazy_wheel.py │ │ │ │ ├── session.py │ │ │ │ ├── utils.py │ │ │ │ └── xmlrpc.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ └── wheel.py │ │ │ │ └── prepare.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── constructors.py │ │ │ │ ├── req_dependency_group.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── legacy │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── resolver.py │ │ │ │ └── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── candidates.py │ │ │ │ │ ├── factory.py │ │ │ │ │ ├── found_candidates.py │ │ │ │ │ ├── provider.py │ │ │ │ │ ├── reporter.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ └── resolver.py │ │ │ ├── self_outdated_check.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── _jaraco_text.py │ │ │ │ ├── _log.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── compatibility_tags.py │ │ │ │ ├── datetime.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── direct_url_helpers.py │ │ │ │ ├── egg_link.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 │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ ├── subversion.py │ │ │ │ └── versioncontrol.py │ │ │ └── wheel_builder.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── py.typed │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── cacert.pem │ │ │ │ ├── core.py │ │ │ │ └── py.typed │ │ │ ├── dependency_groups │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _implementation.py │ │ │ │ ├── _lint_dependency_groups.py │ │ │ │ ├── _pip_wrapper.py │ │ │ │ ├── _toml_compat.py │ │ │ │ └── py.typed │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── compat.py │ │ │ │ ├── resources.py │ │ │ │ ├── scripts.py │ │ │ │ ├── t32.exe │ │ │ │ ├── t64-arm.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── util.py │ │ │ │ ├── w32.exe │ │ │ │ ├── w64-arm.exe │ │ │ │ └── w64.exe │ │ │ ├── distro │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── distro.py │ │ │ │ └── py.typed │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ ├── py.typed │ │ │ │ └── uts46data.py │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ │ ├── __init__.py │ │ │ │ ├── _elffile.py │ │ │ │ ├── _manylinux.py │ │ │ │ ├── _musllinux.py │ │ │ │ ├── _parser.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── licenses │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _spdx.py │ │ │ │ ├── markers.py │ │ │ │ ├── metadata.py │ │ │ │ ├── py.typed │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pkg_resources │ │ │ │ └── __init__.py │ │ │ ├── platformdirs │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── android.py │ │ │ │ ├── api.py │ │ │ │ ├── macos.py │ │ │ │ ├── py.typed │ │ │ │ ├── unix.py │ │ │ │ ├── version.py │ │ │ │ └── windows.py │ │ │ ├── pygments │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── console.py │ │ │ │ ├── filter.py │ │ │ │ ├── filters │ │ │ │ │ └── __init__.py │ │ │ │ ├── formatter.py │ │ │ │ ├── formatters │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _mapping.py │ │ │ │ ├── lexer.py │ │ │ │ ├── lexers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _mapping.py │ │ │ │ │ └── python.py │ │ │ │ ├── modeline.py │ │ │ │ ├── plugin.py │ │ │ │ ├── regexopt.py │ │ │ │ ├── scanner.py │ │ │ │ ├── sphinxext.py │ │ │ │ ├── style.py │ │ │ │ ├── styles │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _mapping.py │ │ │ │ ├── token.py │ │ │ │ ├── unistring.py │ │ │ │ └── util.py │ │ │ ├── pyproject_hooks │ │ │ │ ├── __init__.py │ │ │ │ ├── _impl.py │ │ │ │ ├── _in_process │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _in_process.py │ │ │ │ └── py.typed │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __version__.py │ │ │ │ ├── _internal_utils.py │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── help.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ ├── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── providers.py │ │ │ │ ├── py.typed │ │ │ │ ├── reporters.py │ │ │ │ ├── resolvers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── abstract.py │ │ │ │ │ ├── criterion.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── resolution.py │ │ │ │ └── structs.py │ │ │ ├── rich │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _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 │ │ │ │ ├── _parser.py │ │ │ │ ├── _re.py │ │ │ │ ├── _types.py │ │ │ │ └── py.typed │ │ │ ├── tomli_w │ │ │ │ ├── __init__.py │ │ │ │ ├── _writer.py │ │ │ │ └── py.typed │ │ │ ├── truststore │ │ │ │ ├── __init__.py │ │ │ │ ├── _api.py │ │ │ │ ├── _macos.py │ │ │ │ ├── _openssl.py │ │ │ │ ├── _ssl_constants.py │ │ │ │ ├── _windows.py │ │ │ │ └── py.typed │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── _collections.py │ │ │ │ ├── _version.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── makefile.py │ │ │ │ │ │ └── weakref_finalize.py │ │ │ │ │ └── six.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── api_tests.txt │ │ ├── py.typed │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ ├── my-test-package-source │ │ │ │ ├── setup.cfg │ │ │ │ └── setup.py │ │ │ ├── my-test-package-zip │ │ │ │ └── my-test-package.zip │ │ │ ├── my-test-package_unpacked-egg │ │ │ │ └── my_test_package-1.0-py3.7.egg │ │ │ │ │ └── EGG-INFO │ │ │ │ │ ├── PKG-INFO │ │ │ │ │ ├── SOURCES.txt │ │ │ │ │ ├── dependency_links.txt │ │ │ │ │ ├── top_level.txt │ │ │ │ │ └── zip-safe │ │ │ └── my-test-package_zipped-egg │ │ │ │ └── my_test_package-1.0-py3.7.egg │ │ │ ├── test_find_distributions.py │ │ │ ├── test_integration_zope_interface.py │ │ │ ├── test_markers.py │ │ │ ├── test_pkg_resources.py │ │ │ ├── test_resources.py │ │ │ └── test_working_set.py │ │ ├── pluggy-1.6.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── licenses │ │ │ └── LICENSE │ │ └── top_level.txt │ │ ├── pluggy │ │ ├── __init__.py │ │ ├── _callers.py │ │ ├── _hooks.py │ │ ├── _manager.py │ │ ├── _result.py │ │ ├── _tracing.py │ │ ├── _version.py │ │ ├── _warnings.py │ │ └── py.typed │ │ ├── py.py │ │ ├── pydantic-1.10.10.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pydantic │ │ ├── __init__.cpython-310-darwin.so │ │ ├── __init__.py │ │ ├── _hypothesis_plugin.cpython-310-darwin.so │ │ ├── _hypothesis_plugin.py │ │ ├── annotated_types.cpython-310-darwin.so │ │ ├── annotated_types.py │ │ ├── class_validators.cpython-310-darwin.so │ │ ├── class_validators.py │ │ ├── color.cpython-310-darwin.so │ │ ├── color.py │ │ ├── config.cpython-310-darwin.so │ │ ├── config.py │ │ ├── dataclasses.cpython-310-darwin.so │ │ ├── dataclasses.py │ │ ├── datetime_parse.cpython-310-darwin.so │ │ ├── datetime_parse.py │ │ ├── decorator.cpython-310-darwin.so │ │ ├── decorator.py │ │ ├── env_settings.cpython-310-darwin.so │ │ ├── env_settings.py │ │ ├── error_wrappers.cpython-310-darwin.so │ │ ├── error_wrappers.py │ │ ├── errors.cpython-310-darwin.so │ │ ├── errors.py │ │ ├── fields.cpython-310-darwin.so │ │ ├── fields.py │ │ ├── generics.py │ │ ├── json.cpython-310-darwin.so │ │ ├── json.py │ │ ├── main.cpython-310-darwin.so │ │ ├── main.py │ │ ├── mypy.cpython-310-darwin.so │ │ ├── mypy.py │ │ ├── networks.cpython-310-darwin.so │ │ ├── networks.py │ │ ├── parse.cpython-310-darwin.so │ │ ├── parse.py │ │ ├── py.typed │ │ ├── schema.cpython-310-darwin.so │ │ ├── schema.py │ │ ├── tools.cpython-310-darwin.so │ │ ├── tools.py │ │ ├── types.cpython-310-darwin.so │ │ ├── types.py │ │ ├── typing.cpython-310-darwin.so │ │ ├── typing.py │ │ ├── utils.cpython-310-darwin.so │ │ ├── utils.py │ │ ├── validators.cpython-310-darwin.so │ │ ├── validators.py │ │ ├── version.cpython-310-darwin.so │ │ └── version.py │ │ ├── pytest │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── py.typed │ │ ├── setuptools-80.9.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── licenses │ │ │ └── LICENSE │ │ └── top_level.txt │ │ ├── setuptools │ │ ├── __init__.py │ │ ├── _core_metadata.py │ │ ├── _discovery.py │ │ ├── _distutils │ │ │ ├── __init__.py │ │ │ ├── _log.py │ │ │ ├── _macos_compat.py │ │ │ ├── _modified.py │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── _framework_compat.py │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ └── sdist.py │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── numpy.py │ │ │ │ └── py39.py │ │ │ ├── compilers │ │ │ │ └── C │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cygwin.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── msvc.py │ │ │ │ │ ├── tests │ │ │ │ │ ├── test_base.py │ │ │ │ │ ├── test_cygwin.py │ │ │ │ │ ├── test_mingw.py │ │ │ │ │ ├── test_msvc.py │ │ │ │ │ └── test_unix.py │ │ │ │ │ ├── unix.py │ │ │ │ │ └── zos.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── py39.py │ │ │ │ ├── support.py │ │ │ │ ├── test_archive_util.py │ │ │ │ ├── test_bdist.py │ │ │ │ ├── test_bdist_dumb.py │ │ │ │ ├── test_bdist_rpm.py │ │ │ │ ├── test_build.py │ │ │ │ ├── test_build_clib.py │ │ │ │ ├── test_build_ext.py │ │ │ │ ├── test_build_py.py │ │ │ │ ├── test_build_scripts.py │ │ │ │ ├── test_check.py │ │ │ │ ├── test_clean.py │ │ │ │ ├── test_cmd.py │ │ │ │ ├── test_config_cmd.py │ │ │ │ ├── test_core.py │ │ │ │ ├── test_dir_util.py │ │ │ │ ├── test_dist.py │ │ │ │ ├── test_extension.py │ │ │ │ ├── test_file_util.py │ │ │ │ ├── test_filelist.py │ │ │ │ ├── test_install.py │ │ │ │ ├── test_install_data.py │ │ │ │ ├── test_install_headers.py │ │ │ │ ├── test_install_lib.py │ │ │ │ ├── test_install_scripts.py │ │ │ │ ├── test_log.py │ │ │ │ ├── test_modified.py │ │ │ │ ├── test_sdist.py │ │ │ │ ├── test_spawn.py │ │ │ │ ├── test_sysconfig.py │ │ │ │ ├── test_text_file.py │ │ │ │ ├── test_util.py │ │ │ │ ├── test_version.py │ │ │ │ ├── test_versionpredicate.py │ │ │ │ └── unix_compat.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── versionpredicate.py │ │ │ └── zosccompiler.py │ │ ├── _entry_points.py │ │ ├── _imp.py │ │ ├── _importlib.py │ │ ├── _itertools.py │ │ ├── _normalization.py │ │ ├── _path.py │ │ ├── _reqs.py │ │ ├── _scripts.py │ │ ├── _shutil.py │ │ ├── _static.py │ │ ├── _vendor │ │ │ ├── autocommand-2.2.2.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── autocommand │ │ │ │ ├── __init__.py │ │ │ │ ├── autoasync.py │ │ │ │ ├── autocommand.py │ │ │ │ ├── automain.py │ │ │ │ ├── autoparse.py │ │ │ │ └── errors.py │ │ │ ├── backports.tarfile-1.2.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ └── tarfile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ └── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── py38.py │ │ │ ├── importlib_metadata-8.0.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── importlib_metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── _adapters.py │ │ │ │ ├── _collections.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _functools.py │ │ │ │ ├── _itertools.py │ │ │ │ ├── _meta.py │ │ │ │ ├── _text.py │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── py311.py │ │ │ │ │ └── py39.py │ │ │ │ ├── diagnose.py │ │ │ │ └── py.typed │ │ │ ├── inflect-7.3.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── inflect │ │ │ │ ├── __init__.py │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── py38.py │ │ │ │ └── py.typed │ │ │ ├── jaraco.collections-5.1.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── jaraco.context-5.3.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── jaraco.functools-4.0.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── jaraco.text-3.12.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── jaraco │ │ │ │ ├── collections │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── py.typed │ │ │ │ ├── context.py │ │ │ │ ├── functools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── py.typed │ │ │ │ └── text │ │ │ │ │ ├── Lorem ipsum.txt │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── layouts.py │ │ │ │ │ ├── show-newlines.py │ │ │ │ │ ├── strip-prefix.py │ │ │ │ │ ├── to-dvorak.py │ │ │ │ │ └── to-qwerty.py │ │ │ ├── more_itertools-10.3.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ └── WHEEL │ │ │ ├── more_itertools │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyi │ │ │ │ ├── more.py │ │ │ │ ├── more.pyi │ │ │ │ ├── py.typed │ │ │ │ ├── recipes.py │ │ │ │ └── recipes.pyi │ │ │ ├── packaging-24.2.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE.APACHE │ │ │ │ ├── LICENSE.BSD │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ └── WHEEL │ │ │ ├── packaging │ │ │ │ ├── __init__.py │ │ │ │ ├── _elffile.py │ │ │ │ ├── _manylinux.py │ │ │ │ ├── _musllinux.py │ │ │ │ ├── _parser.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── licenses │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _spdx.py │ │ │ │ ├── markers.py │ │ │ │ ├── metadata.py │ │ │ │ ├── py.typed │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── platformdirs-4.2.2.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ └── licenses │ │ │ │ │ └── LICENSE │ │ │ ├── platformdirs │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── android.py │ │ │ │ ├── api.py │ │ │ │ ├── macos.py │ │ │ │ ├── py.typed │ │ │ │ ├── unix.py │ │ │ │ ├── version.py │ │ │ │ └── windows.py │ │ │ ├── tomli-2.0.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ └── WHEEL │ │ │ ├── tomli │ │ │ │ ├── __init__.py │ │ │ │ ├── _parser.py │ │ │ │ ├── _re.py │ │ │ │ ├── _types.py │ │ │ │ └── py.typed │ │ │ ├── typeguard-4.3.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ ├── typeguard │ │ │ │ ├── __init__.py │ │ │ │ ├── _checkers.py │ │ │ │ ├── _config.py │ │ │ │ ├── _decorators.py │ │ │ │ ├── _exceptions.py │ │ │ │ ├── _functions.py │ │ │ │ ├── _importhook.py │ │ │ │ ├── _memo.py │ │ │ │ ├── _pytest_plugin.py │ │ │ │ ├── _suppression.py │ │ │ │ ├── _transformer.py │ │ │ │ ├── _union_transformer.py │ │ │ │ ├── _utils.py │ │ │ │ └── py.typed │ │ │ ├── typing_extensions-4.12.2.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ └── WHEEL │ │ │ ├── typing_extensions.py │ │ │ ├── wheel-0.45.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ └── entry_points.txt │ │ │ ├── wheel │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _bdist_wheel.py │ │ │ │ ├── _setuptools_logging.py │ │ │ │ ├── bdist_wheel.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── convert.py │ │ │ │ │ ├── pack.py │ │ │ │ │ ├── tags.py │ │ │ │ │ └── unpack.py │ │ │ │ ├── macosx_libfile.py │ │ │ │ ├── metadata.py │ │ │ │ ├── util.py │ │ │ │ ├── vendored │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _elffile.py │ │ │ │ │ │ ├── _manylinux.py │ │ │ │ │ │ ├── _musllinux.py │ │ │ │ │ │ ├── _parser.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── tags.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ └── vendor.txt │ │ │ │ └── wheelfile.py │ │ │ ├── zipp-3.19.2.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ └── zipp │ │ │ │ ├── __init__.py │ │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ └── py310.py │ │ │ │ └── glob.py │ │ ├── archive_util.py │ │ ├── build_meta.py │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── cli-arm64.exe │ │ ├── cli.exe │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── _requirestxt.py │ │ │ ├── alias.py │ │ │ ├── bdist_egg.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wheel.py │ │ │ ├── build.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── develop.py │ │ │ ├── dist_info.py │ │ │ ├── easy_install.py │ │ │ ├── editable_wheel.py │ │ │ ├── egg_info.py │ │ │ ├── install.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── launcher manifest.xml │ │ │ ├── rotate.py │ │ │ ├── saveopts.py │ │ │ ├── sdist.py │ │ │ ├── setopt.py │ │ │ └── test.py │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── py310.py │ │ │ ├── py311.py │ │ │ ├── py312.py │ │ │ └── py39.py │ │ ├── config │ │ │ ├── NOTICE │ │ │ ├── __init__.py │ │ │ ├── _apply_pyprojecttoml.py │ │ │ ├── _validate_pyproject │ │ │ │ ├── NOTICE │ │ │ │ ├── __init__.py │ │ │ │ ├── error_reporting.py │ │ │ │ ├── extra_validations.py │ │ │ │ ├── fastjsonschema_exceptions.py │ │ │ │ ├── fastjsonschema_validations.py │ │ │ │ └── formats.py │ │ │ ├── distutils.schema.json │ │ │ ├── expand.py │ │ │ ├── pyprojecttoml.py │ │ │ ├── setupcfg.py │ │ │ └── setuptools.schema.json │ │ ├── depends.py │ │ ├── discovery.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── glob.py │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── gui-arm64.exe │ │ ├── gui.exe │ │ ├── installer.py │ │ ├── launch.py │ │ ├── logging.py │ │ ├── modified.py │ │ ├── monkey.py │ │ ├── msvc.py │ │ ├── namespaces.py │ │ ├── script (dev).tmpl │ │ ├── script.tmpl │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ └── py39.py │ │ │ ├── config │ │ │ │ ├── __init__.py │ │ │ │ ├── downloads │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── preload.py │ │ │ │ ├── setupcfg_examples.txt │ │ │ │ ├── test_apply_pyprojecttoml.py │ │ │ │ ├── test_expand.py │ │ │ │ ├── test_pyprojecttoml.py │ │ │ │ ├── test_pyprojecttoml_dynamic_deps.py │ │ │ │ └── test_setupcfg.py │ │ │ ├── contexts.py │ │ │ ├── environment.py │ │ │ ├── fixtures.py │ │ │ ├── indexes │ │ │ │ └── test_links_priority │ │ │ │ │ ├── external.html │ │ │ │ │ └── simple │ │ │ │ │ └── foobar │ │ │ │ │ └── index.html │ │ │ ├── integration │ │ │ │ ├── __init__.py │ │ │ │ ├── helpers.py │ │ │ │ ├── test_pbr.py │ │ │ │ └── test_pip_install_sdist.py │ │ │ ├── mod_with_constant.py │ │ │ ├── namespaces.py │ │ │ ├── script-with-bom.py │ │ │ ├── test_archive_util.py │ │ │ ├── test_bdist_deprecations.py │ │ │ ├── test_bdist_egg.py │ │ │ ├── test_bdist_wheel.py │ │ │ ├── test_build.py │ │ │ ├── test_build_clib.py │ │ │ ├── test_build_ext.py │ │ │ ├── test_build_meta.py │ │ │ ├── test_build_py.py │ │ │ ├── test_config_discovery.py │ │ │ ├── test_core_metadata.py │ │ │ ├── test_depends.py │ │ │ ├── test_develop.py │ │ │ ├── test_dist.py │ │ │ ├── test_dist_info.py │ │ │ ├── test_distutils_adoption.py │ │ │ ├── test_editable_install.py │ │ │ ├── test_egg_info.py │ │ │ ├── test_extern.py │ │ │ ├── test_find_packages.py │ │ │ ├── test_find_py_modules.py │ │ │ ├── test_glob.py │ │ │ ├── test_install_scripts.py │ │ │ ├── test_logging.py │ │ │ ├── test_manifest.py │ │ │ ├── test_namespaces.py │ │ │ ├── test_scripts.py │ │ │ ├── test_sdist.py │ │ │ ├── test_setopt.py │ │ │ ├── test_setuptools.py │ │ │ ├── test_shutil_wrapper.py │ │ │ ├── test_unicode_utils.py │ │ │ ├── test_virtualenv.py │ │ │ ├── test_warnings.py │ │ │ ├── test_wheel.py │ │ │ ├── test_windows_wrappers.py │ │ │ ├── text.py │ │ │ └── textwrap.py │ │ ├── unicode_utils.py │ │ ├── version.py │ │ ├── warnings.py │ │ ├── wheel.py │ │ └── windows_support.py │ │ ├── sniffio-1.3.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── LICENSE.APACHE2 │ │ ├── LICENSE.MIT │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── sniffio │ │ ├── __init__.py │ │ ├── _impl.py │ │ ├── _tests │ │ │ ├── __init__.py │ │ │ └── test_sniffio.py │ │ ├── _version.py │ │ └── py.typed │ │ ├── starlette-0.27.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── licenses │ │ │ └── LICENSE.md │ │ ├── starlette │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _utils.py │ │ ├── applications.py │ │ ├── authentication.py │ │ ├── background.py │ │ ├── concurrency.py │ │ ├── config.py │ │ ├── convertors.py │ │ ├── datastructures.py │ │ ├── endpoints.py │ │ ├── exceptions.py │ │ ├── formparsers.py │ │ ├── middleware │ │ │ ├── __init__.py │ │ │ ├── authentication.py │ │ │ ├── base.py │ │ │ ├── cors.py │ │ │ ├── errors.py │ │ │ ├── exceptions.py │ │ │ ├── gzip.py │ │ │ ├── httpsredirect.py │ │ │ ├── sessions.py │ │ │ ├── trustedhost.py │ │ │ └── wsgi.py │ │ ├── py.typed │ │ ├── requests.py │ │ ├── responses.py │ │ ├── routing.py │ │ ├── schemas.py │ │ ├── staticfiles.py │ │ ├── status.py │ │ ├── templating.py │ │ ├── testclient.py │ │ ├── types.py │ │ └── websockets.py │ │ ├── tomli-2.2.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── tomli │ │ ├── __init__.py │ │ ├── _parser.py │ │ ├── _re.py │ │ ├── _types.py │ │ └── py.typed │ │ ├── typing_extensions-4.15.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── licenses │ │ │ └── LICENSE │ │ ├── typing_extensions.py │ │ ├── uvicorn-0.22.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── licenses │ │ │ └── LICENSE.md │ │ ├── uvicorn │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _subprocess.py │ │ ├── _types.py │ │ ├── config.py │ │ ├── importer.py │ │ ├── lifespan │ │ │ ├── __init__.py │ │ │ ├── off.py │ │ │ └── on.py │ │ ├── logging.py │ │ ├── loops │ │ │ ├── __init__.py │ │ │ ├── asyncio.py │ │ │ ├── auto.py │ │ │ └── uvloop.py │ │ ├── main.py │ │ ├── middleware │ │ │ ├── __init__.py │ │ │ ├── asgi2.py │ │ │ ├── message_logger.py │ │ │ ├── proxy_headers.py │ │ │ └── wsgi.py │ │ ├── protocols │ │ │ ├── __init__.py │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ ├── auto.py │ │ │ │ ├── flow_control.py │ │ │ │ ├── h11_impl.py │ │ │ │ └── httptools_impl.py │ │ │ ├── utils.py │ │ │ └── websockets │ │ │ │ ├── __init__.py │ │ │ │ ├── auto.py │ │ │ │ ├── websockets_impl.py │ │ │ │ └── wsproto_impl.py │ │ ├── py.typed │ │ ├── server.py │ │ ├── supervisors │ │ │ ├── __init__.py │ │ │ ├── basereload.py │ │ │ ├── multiprocess.py │ │ │ ├── statreload.py │ │ │ ├── watchfilesreload.py │ │ │ └── watchgodreload.py │ │ └── workers.py │ │ ├── wheel-0.45.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── entry_points.txt │ │ └── wheel │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _bdist_wheel.py │ │ ├── _setuptools_logging.py │ │ ├── bdist_wheel.py │ │ ├── cli │ │ ├── __init__.py │ │ ├── convert.py │ │ ├── pack.py │ │ ├── tags.py │ │ └── unpack.py │ │ ├── macosx_libfile.py │ │ ├── metadata.py │ │ ├── util.py │ │ ├── vendored │ │ ├── __init__.py │ │ ├── packaging │ │ │ ├── LICENSE │ │ │ ├── LICENSE.APACHE │ │ │ ├── LICENSE.BSD │ │ │ ├── __init__.py │ │ │ ├── _elffile.py │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _parser.py │ │ │ ├── _structures.py │ │ │ ├── _tokenizer.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ └── vendor.txt │ │ └── wheelfile.py └── pyvenv.cfg ├── IMPLEMENTATION_COMPLETE.md ├── LICENSE.md ├── README.md ├── SKILL_COMPOSITION_SUMMARY.md ├── autolearn_success_demo.py ├── backend ├── __init__.py ├── app.py ├── app.py.bak ├── app.py.new ├── consumer_agent.py ├── consumer_agent_endpoints.py ├── db.py ├── mcp_protocol.py ├── mcp_transport.py ├── openai_client.py ├── sandbox.py ├── schemas.py ├── session_endpoints.py ├── sessions.py ├── skill_engine.py └── websocket.py ├── demo.py ├── demo_skill_composition.py ├── docs └── PRD.md ├── frontend ├── .env.example ├── .gitignore ├── README.md ├── biome.jsonc ├── components.json ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── favicon.ico ├── src │ ├── app │ │ ├── _components │ │ │ └── post.tsx │ │ ├── api │ │ │ └── trpc │ │ │ │ └── [trpc] │ │ │ │ └── route.ts │ │ ├── execute │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── mcp │ │ │ └── page.tsx │ │ ├── page.tsx │ │ └── skills │ │ │ └── page.tsx │ ├── components │ │ ├── layouts │ │ │ └── main-layout.tsx │ │ ├── navigation.tsx │ │ ├── ui │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sonner.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ └── textarea.tsx │ │ └── user-chat.tsx │ ├── env.js │ ├── server │ │ └── api │ │ │ ├── root.ts │ │ │ ├── routers │ │ │ └── post.ts │ │ │ └── trpc.ts │ ├── styles │ │ └── globals.css │ └── trpc │ │ ├── query-client.ts │ │ ├── react.tsx │ │ └── server.ts └── tsconfig.json ├── mcp_server.py ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── run_tests.py ├── server.py ├── skills.db ├── tests ├── README.md ├── __init__.py ├── agent │ ├── __init__.py │ ├── ai_analysis.py │ ├── autolearn_diagnosis.py │ ├── automatic_improvement.py │ ├── consumer_agent_skill_execution.py │ ├── conversation_context.py │ ├── full_agent.py │ ├── skill_error_handling.py │ ├── skill_prevention.py │ └── skill_selection_debug.py ├── integration │ ├── __init__.py │ ├── frontend_chat_integration.py │ ├── frontend_chat_spec.py │ ├── milestone2.py │ ├── milestone3_chat.py │ └── skill_chaining.py ├── mcp │ ├── __init__.py │ ├── mcp_compliance.py │ ├── mcp_http.py │ ├── mcp_integration.py │ ├── mcp_proof.py │ └── mcp_protocol.py ├── openai │ └── __init__.py ├── openai_integration │ ├── __init__.py │ └── openai.py └── unit │ ├── __init__.py │ ├── backend_basic.py │ ├── consumer_agent_basic.py │ ├── fibonacci_fix.py │ ├── function_calling.py │ ├── harness.py │ ├── parameter_fix.py │ └── skill_composition.py ├── video-thumbnail.png └── website └── index.html /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.env.example -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.envrc -------------------------------------------------------------------------------- /.github/instructions/.instructions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.github/instructions/.instructions -------------------------------------------------------------------------------- /.github/instructions/step1-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.github/instructions/step1-instructions.md -------------------------------------------------------------------------------- /.github/instructions/step2-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.github/instructions/step2-instructions.md -------------------------------------------------------------------------------- /.github/instructions/step3-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.github/instructions/step3-instructions.md -------------------------------------------------------------------------------- /.github/instructions/step4-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.github/instructions/step4-instructions.md -------------------------------------------------------------------------------- /.github/results/step3-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.github/results/step3-results.md -------------------------------------------------------------------------------- /.github/results/step4-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.github/results/step4-results.md -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.gitignore -------------------------------------------------------------------------------- /.venv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/Activate.ps1 -------------------------------------------------------------------------------- /.venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/activate -------------------------------------------------------------------------------- /.venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/activate.csh -------------------------------------------------------------------------------- /.venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/activate.fish -------------------------------------------------------------------------------- /.venv/bin/httpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/httpx -------------------------------------------------------------------------------- /.venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/pip -------------------------------------------------------------------------------- /.venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/pip3 -------------------------------------------------------------------------------- /.venv/bin/pip3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/pip3.10 -------------------------------------------------------------------------------- /.venv/bin/py.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/py.test -------------------------------------------------------------------------------- /.venv/bin/pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/pytest -------------------------------------------------------------------------------- /.venv/bin/python: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /.venv/bin/python3: -------------------------------------------------------------------------------- 1 | /Users/dan/.asdf/installs/python/3.10.13/bin/python3 -------------------------------------------------------------------------------- /.venv/bin/python3.10: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /.venv/bin/uvicorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/uvicorn -------------------------------------------------------------------------------- /.venv/bin/wheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/bin/wheel -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_argcomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/_argcomplete.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/_code/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_code/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/_code/code.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_code/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/_code/source.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/_io/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_io/saferepr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/_io/saferepr.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_io/wcwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/_io/wcwidth.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_py/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/_py/error.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_py/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/_py/path.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/_version.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/assertion/rewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/assertion/rewrite.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/assertion/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/assertion/util.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/cacheprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/cacheprovider.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/capture.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/compat.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/config/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/config/argparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/config/argparsing.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/config/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/config/compat.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/config/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/config/exceptions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/config/findpaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/config/findpaths.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/debugging.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/deprecated.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/doctest.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/faulthandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/faulthandler.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/fixtures.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/freeze_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/freeze_support.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/helpconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/helpconfig.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/hookspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/hookspec.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/junitxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/junitxml.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/legacypath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/legacypath.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/logging.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/main.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/mark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/mark/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/mark/expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/mark/expression.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/mark/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/mark/structures.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/monkeypatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/monkeypatch.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/nodes.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/outcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/outcomes.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/pastebin.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/pathlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/pathlib.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/pytester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/pytester.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/python.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/python_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/python_api.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/recwarn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/recwarn.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/reports.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/runner.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/scope.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/setuponly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/setuponly.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/setupplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/setupplan.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/skipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/skipping.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/stash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/stash.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/stepwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/stepwise.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/terminal.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/threadexception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/threadexception.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/timing.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/tmpdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/tmpdir.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/unittest.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/warning_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/warning_types.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/_pytest/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/_pytest/warnings.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio-4.10.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio-4.10.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (80.9.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio-4.10.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | anyio 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_backends/_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_backends/_asyncio.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_backends/_trio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_backends/_trio.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_eventloop.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_exceptions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_fileio.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_resources.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_signals.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_sockets.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_streams.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_subprocesses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_subprocesses.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_tasks.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_tempfile.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_testing.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/_core/_typedattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/_core/_typedattr.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/abc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/abc/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/abc/_eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/abc/_eventloop.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/abc/_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/abc/_resources.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/abc/_sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/abc/_sockets.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/abc/_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/abc/_streams.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/abc/_subprocesses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/abc/_subprocesses.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/abc/_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/abc/_tasks.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/abc/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/abc/_testing.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/from_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/from_thread.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/lowlevel.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/pytest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/pytest_plugin.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/streams/buffered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/streams/buffered.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/streams/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/streams/file.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/streams/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/streams/memory.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/streams/stapled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/streams/stapled.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/streams/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/streams/text.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/streams/tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/streams/tls.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/to_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/to_interpreter.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/to_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/to_process.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/anyio/to_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/anyio/to_thread.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/certifi-2025.8.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/certifi-2025.8.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (80.9.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/certifi-2025.8.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/certifi/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/certifi/__main__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/certifi/cacert.pem -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/certifi/core.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click-8.2.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click-8.2.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click-8.2.1.dist-info/RECORD -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click-8.2.1.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/python3.10/site-packages/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/_compat.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/_termui_impl.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/_textwrap.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/_winconsole.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/core.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/decorators.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/exceptions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/formatting.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/globals.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/parser.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/shell_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/shell_completion.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/termui.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/testing.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/types.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/click/utils.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/exceptiongroup-1.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/exceptiongroup-1.3.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/python3.10/site-packages/exceptiongroup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/exceptiongroup/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/exceptiongroup/_catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/exceptiongroup/_catch.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/exceptiongroup/_suppress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/exceptiongroup/_suppress.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/exceptiongroup/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/exceptiongroup/_version.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/exceptiongroup/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi-0.100.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi-0.100.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi-0.100.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: hatchling 1.17.1 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/_compat.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/applications.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/background.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/concurrency.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/datastructures.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/encoders.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/exceptions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/logger.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/middleware/cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/middleware/cors.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/middleware/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/middleware/gzip.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/middleware/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/middleware/wsgi.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/openapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/openapi/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/openapi/constants.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/openapi/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/openapi/docs.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/openapi/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/openapi/models.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/openapi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/openapi/utils.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/param_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/param_functions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/params.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/requests.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/responses.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/routing.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/security/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/security/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/security/api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/security/api_key.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/security/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/security/base.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/security/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/security/http.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/security/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/security/oauth2.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/security/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/security/utils.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/staticfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/staticfiles.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/templating.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/testclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/testclient.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/types.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/utils.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/fastapi/websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/fastapi/websockets.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/RECORD -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | h11 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/_abnf.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/_connection.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/_events.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/_headers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/_readers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/_receivebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/_receivebuffer.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/_state.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/_util.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/_version.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/_writers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/py.typed: -------------------------------------------------------------------------------- 1 | Marker 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/tests/data/test-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/tests/data/test-file -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/tests/helpers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/tests/test_connection.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/tests/test_events.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/tests/test_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/tests/test_headers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/tests/test_helpers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/tests/test_io.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/tests/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/tests/test_state.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/h11/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/h11/tests/test_util.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore-0.17.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore-0.17.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.40.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_api.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_async/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_async/http11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_async/http11.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_async/http2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_async/http2.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_backends/anyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_backends/anyio.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_backends/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_backends/auto.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_backends/base.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_backends/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_backends/mock.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_backends/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_backends/sync.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_backends/trio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_backends/trio.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_exceptions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_models.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_ssl.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_sync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_sync/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_sync/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_sync/connection.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_sync/http11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_sync/http11.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_sync/http2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_sync/http2.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_sync/http_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_sync/http_proxy.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_sync/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_sync/interfaces.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_synchronization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_synchronization.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_trace.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpcore/_utils.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpcore/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx-0.24.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx-0.24.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx-0.24.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx-0.24.1.dist-info/WHEEL -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/__version__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_api.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_auth.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_client.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_compat.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_config.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_content.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_decoders.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_exceptions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_main.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_models.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_multipart.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_status_codes.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_transports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_transports/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_transports/asgi.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_transports/base.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_transports/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_transports/default.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_transports/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_transports/mock.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_transports/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_transports/wsgi.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_types.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_urlparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_urlparse.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_urls.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/httpx/_utils.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/httpx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna-3.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna-3.10.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/idna-3.10.dist-info/METADATA -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna-3.10.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/idna-3.10.dist-info/RECORD -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna-3.10.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/idna/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/idna/codec.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/idna/compat.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/idna/core.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.10" 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/iniconfig-2.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/iniconfig/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/iniconfig/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/iniconfig/_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/iniconfig/_parse.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/iniconfig/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/iniconfig/_version.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/iniconfig/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/iniconfig/exceptions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/iniconfig/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging-25.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/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/python3.10/site-packages/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/_elffile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/_elffile.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/_manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/_manylinux.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/_musllinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/_musllinux.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/_parser.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/_structures.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/_tokenizer.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/licenses/_spdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/licenses/_spdx.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/markers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/metadata.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/requirements.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/specifiers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/tags.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/utils.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/packaging/version.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip-25.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip-25.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip-25.2.dist-info/METADATA -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip-25.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip-25.2.dist-info/RECORD -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip-25.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip-25.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (80.9.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip-25.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/__pip-runner__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/__pip-runner__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code""" 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities.""" 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages.""" 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/utils/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/utils/_log.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/utils/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/utils/retry.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/dependency_groups/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/distro/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/distro/distro.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/distro/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.10" 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/_fileno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_fileno.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/abc.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/align.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/bar.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/box.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/color.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/columns.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/console.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/control.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/errors.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/json.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/live.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/padding.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/palette.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/style.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/table.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/text.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/tomli_w/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/truststore/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.20" 3 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pip/py.typed -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pkg_resources/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pkg_resources/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy-1.6.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy-1.6.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (80.7.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy-1.6.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pluggy 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pluggy/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy/_callers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pluggy/_callers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy/_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pluggy/_hooks.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy/_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pluggy/_manager.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy/_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pluggy/_result.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy/_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pluggy/_tracing.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pluggy/_version.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy/_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pluggy/_warnings.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pluggy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/py.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic-1.10.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic-1.10.10.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic-1.10.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pydantic 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/color.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/config.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/dataclasses.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/decorator.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/env_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/env_settings.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/errors.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/fields.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/generics.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/json.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/main.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/mypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/mypy.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/networks.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/parse.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/schema.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/tools.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/types.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/typing.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/utils.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/validators.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pydantic/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pydantic/version.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pytest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pytest/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pytest/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/pytest/__main__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/pytest/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools-80.9.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools-80.9.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools-80.9.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/_discovery.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_distutils/tests/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_distutils/tests/test_versionpredicate.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_importlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/_importlib.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/_itertools.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/_path.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_reqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/_reqs.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/_scripts.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/_shutil.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/_static.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | autocommand 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | backports 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | importlib_metadata 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | inflect 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/inflect/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/inflect/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jaraco 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jaraco 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jaraco 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jaraco 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/collections/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | uv -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/platformdirs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.6.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | typeguard 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/typeguard/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/wheel-0.45.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/wheel-0.45.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/vendor.txt: -------------------------------------------------------------------------------- 1 | packaging==24.0 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | zipp 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/_vendor/zipp/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/cli-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/cli-arm64.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/compat/py39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/compat/py39.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/config/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/config/NOTICE -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/discovery.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/gui-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/gui-arm64.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/logging.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/modified.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/tests/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/tests/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/tests/mod_with_constant.py: -------------------------------------------------------------------------------- 1 | value = 'three, sir!' 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/tests/script-with-bom.py: -------------------------------------------------------------------------------- 1 | result = 'passed' 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/tests/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/tests/text.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/warnings.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/sniffio-1.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/sniffio-1.3.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.42.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/sniffio-1.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sniffio 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/sniffio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/sniffio/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/sniffio/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/sniffio/_impl.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/sniffio/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/sniffio/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/sniffio/_version.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/sniffio/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette-0.27.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.27.0" 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/_compat.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/_utils.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/applications.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/background.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/concurrency.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/config.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/convertors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/convertors.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/endpoints.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/exceptions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/formparsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/formparsers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/requests.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/responses.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/routing.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/schemas.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/staticfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/staticfiles.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/status.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/templating.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/testclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/testclient.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/types.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/starlette/websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/starlette/websockets.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/tomli-2.2.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/tomli-2.2.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.10.1 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/tomli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/tomli/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/tomli/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/tomli/_parser.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/tomli/_re.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/tomli/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/tomli/_types.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/typing_extensions-4.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/typing_extensions-4.15.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/python3.10/site-packages/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/typing_extensions.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn-0.22.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn-0.22.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/__main__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/_subprocess.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/_types.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/config.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/importer.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/lifespan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/lifespan/off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/lifespan/off.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/lifespan/on.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/lifespan/on.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/logging.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/loops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/loops/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/loops/asyncio.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/loops/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/loops/auto.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/loops/uvloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/loops/uvloop.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/main.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/py.typed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/server.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/uvicorn/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/uvicorn/workers.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel-0.45.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel-0.45.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel-0.45.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.10.1 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/__main__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/_bdist_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/_bdist_wheel.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/bdist_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/bdist_wheel.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/cli/__init__.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/cli/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/cli/convert.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/cli/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/cli/pack.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/cli/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/cli/tags.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/cli/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/cli/unpack.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/macosx_libfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/macosx_libfile.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/metadata.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/util.py -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/vendored/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/vendored/vendor.txt: -------------------------------------------------------------------------------- 1 | packaging==24.0 2 | -------------------------------------------------------------------------------- /.venv/lib/python3.10/site-packages/wheel/wheelfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/lib/python3.10/site-packages/wheel/wheelfile.py -------------------------------------------------------------------------------- /.venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/.venv/pyvenv.cfg -------------------------------------------------------------------------------- /IMPLEMENTATION_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/IMPLEMENTATION_COMPLETE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/README.md -------------------------------------------------------------------------------- /SKILL_COMPOSITION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/SKILL_COMPOSITION_SUMMARY.md -------------------------------------------------------------------------------- /autolearn_success_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/autolearn_success_demo.py -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/__init__.py -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/app.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/app.py.bak -------------------------------------------------------------------------------- /backend/app.py.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/app.py.new -------------------------------------------------------------------------------- /backend/consumer_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/consumer_agent.py -------------------------------------------------------------------------------- /backend/consumer_agent_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/consumer_agent_endpoints.py -------------------------------------------------------------------------------- /backend/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/db.py -------------------------------------------------------------------------------- /backend/mcp_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/mcp_protocol.py -------------------------------------------------------------------------------- /backend/mcp_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/mcp_transport.py -------------------------------------------------------------------------------- /backend/openai_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/openai_client.py -------------------------------------------------------------------------------- /backend/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/sandbox.py -------------------------------------------------------------------------------- /backend/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/schemas.py -------------------------------------------------------------------------------- /backend/session_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/session_endpoints.py -------------------------------------------------------------------------------- /backend/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/sessions.py -------------------------------------------------------------------------------- /backend/skill_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/skill_engine.py -------------------------------------------------------------------------------- /backend/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/backend/websocket.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/demo.py -------------------------------------------------------------------------------- /demo_skill_composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/demo_skill_composition.py -------------------------------------------------------------------------------- /docs/PRD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/docs/PRD.md -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/.env.example -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/biome.jsonc -------------------------------------------------------------------------------- /frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/components.json -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/src/app/_components/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/app/_components/post.tsx -------------------------------------------------------------------------------- /frontend/src/app/api/trpc/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/app/api/trpc/[trpc]/route.ts -------------------------------------------------------------------------------- /frontend/src/app/execute/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/app/execute/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/app/layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/mcp/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/app/mcp/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/app/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/skills/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/app/skills/page.tsx -------------------------------------------------------------------------------- /frontend/src/components/layouts/main-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/layouts/main-layout.tsx -------------------------------------------------------------------------------- /frontend/src/components/navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/navigation.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/button.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/card.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/form.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/input.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/label.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/select.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/table.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /frontend/src/components/user-chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/components/user-chat.tsx -------------------------------------------------------------------------------- /frontend/src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/env.js -------------------------------------------------------------------------------- /frontend/src/server/api/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/server/api/root.ts -------------------------------------------------------------------------------- /frontend/src/server/api/routers/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/server/api/routers/post.ts -------------------------------------------------------------------------------- /frontend/src/server/api/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/server/api/trpc.ts -------------------------------------------------------------------------------- /frontend/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/styles/globals.css -------------------------------------------------------------------------------- /frontend/src/trpc/query-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/trpc/query-client.ts -------------------------------------------------------------------------------- /frontend/src/trpc/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/trpc/react.tsx -------------------------------------------------------------------------------- /frontend/src/trpc/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/src/trpc/server.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/mcp_server.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/run_tests.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/server.py -------------------------------------------------------------------------------- /skills.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/skills.db -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """AutoLearn test suite.""" 2 | -------------------------------------------------------------------------------- /tests/agent/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the consumer agent functionality.""" 2 | -------------------------------------------------------------------------------- /tests/agent/ai_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/agent/ai_analysis.py -------------------------------------------------------------------------------- /tests/agent/autolearn_diagnosis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/agent/autolearn_diagnosis.py -------------------------------------------------------------------------------- /tests/agent/automatic_improvement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/agent/automatic_improvement.py -------------------------------------------------------------------------------- /tests/agent/consumer_agent_skill_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/agent/consumer_agent_skill_execution.py -------------------------------------------------------------------------------- /tests/agent/conversation_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/agent/conversation_context.py -------------------------------------------------------------------------------- /tests/agent/full_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/agent/full_agent.py -------------------------------------------------------------------------------- /tests/agent/skill_error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/agent/skill_error_handling.py -------------------------------------------------------------------------------- /tests/agent/skill_prevention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/agent/skill_prevention.py -------------------------------------------------------------------------------- /tests/agent/skill_selection_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/agent/skill_selection_debug.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/integration/__init__.py -------------------------------------------------------------------------------- /tests/integration/frontend_chat_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/integration/frontend_chat_integration.py -------------------------------------------------------------------------------- /tests/integration/frontend_chat_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/integration/frontend_chat_spec.py -------------------------------------------------------------------------------- /tests/integration/milestone2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/integration/milestone2.py -------------------------------------------------------------------------------- /tests/integration/milestone3_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/integration/milestone3_chat.py -------------------------------------------------------------------------------- /tests/integration/skill_chaining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/integration/skill_chaining.py -------------------------------------------------------------------------------- /tests/mcp/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for MCP (Model Context Protocol) functionality.""" 2 | -------------------------------------------------------------------------------- /tests/mcp/mcp_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/mcp/mcp_compliance.py -------------------------------------------------------------------------------- /tests/mcp/mcp_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/mcp/mcp_http.py -------------------------------------------------------------------------------- /tests/mcp/mcp_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/mcp/mcp_integration.py -------------------------------------------------------------------------------- /tests/mcp/mcp_proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/mcp/mcp_proof.py -------------------------------------------------------------------------------- /tests/mcp/mcp_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/mcp/mcp_protocol.py -------------------------------------------------------------------------------- /tests/openai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/openai_integration/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for OpenAI integration.""" 2 | -------------------------------------------------------------------------------- /tests/openai_integration/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/openai_integration/openai.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit tests for individual components.""" 2 | -------------------------------------------------------------------------------- /tests/unit/backend_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/unit/backend_basic.py -------------------------------------------------------------------------------- /tests/unit/consumer_agent_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/unit/consumer_agent_basic.py -------------------------------------------------------------------------------- /tests/unit/fibonacci_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/unit/fibonacci_fix.py -------------------------------------------------------------------------------- /tests/unit/function_calling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/unit/function_calling.py -------------------------------------------------------------------------------- /tests/unit/harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/unit/harness.py -------------------------------------------------------------------------------- /tests/unit/parameter_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/unit/parameter_fix.py -------------------------------------------------------------------------------- /tests/unit/skill_composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/tests/unit/skill_composition.py -------------------------------------------------------------------------------- /video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/video-thumbnail.png -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolearnai/autolearn/HEAD/website/index.html --------------------------------------------------------------------------------