CHANGES.md
LICENSE
MANIFEST.in
README.md
TESTING.md
pyproject.toml
demo/__init__.py
demo/database_sqlalchemy.py
demo/database_sqlite3.py
demo/external_aiohttp.py
demo/external_http_client.py
demo/external_httpx.py
demo/external_requests.py
demo/external_urllib3.py
demo/external_urllib_request.py
demo/external_xmlrpc_client.py
demo/framework_django.py
demo/framework_fastapi.py
demo/framework_flask.py
demo/framework_starlette.py
demo/rpc_grpc.py
demo/server_aiohttp.py
demo/server_uvicorn.py
demo/server_werkzeug.py
demo/server_wsgiref.py
demo/server_xmlrpc.py
demo/template_jinja2.py
src/wrapture_instrumentation/__init__.py
src/wrapture_instrumentation/py.typed
src/wrapture_instrumentation.egg-info/PKG-INFO
src/wrapture_instrumentation.egg-info/SOURCES.txt
src/wrapture_instrumentation.egg-info/dependency_links.txt
src/wrapture_instrumentation.egg-info/entry_points.txt
src/wrapture_instrumentation.egg-info/not-zip-safe
src/wrapture_instrumentation.egg-info/requires.txt
src/wrapture_instrumentation.egg-info/top_level.txt
src/wrapture_instrumentation/database/__init__.py
src/wrapture_instrumentation/database/sqlalchemy/README.md
src/wrapture_instrumentation/database/sqlalchemy/__init__.py
src/wrapture_instrumentation/database/sqlalchemy/dialects.py
src/wrapture_instrumentation/database/sqlalchemy/engine_base.py
src/wrapture_instrumentation/database/sqlalchemy/engine_default.py
src/wrapture_instrumentation/database/sqlite3/README.md
src/wrapture_instrumentation/database/sqlite3/__init__.py
src/wrapture_instrumentation/database/sqlite3/dbapi2.py
src/wrapture_instrumentation/external/__init__.py
src/wrapture_instrumentation/external/aiohttp_client/README.md
src/wrapture_instrumentation/external/aiohttp_client/__init__.py
src/wrapture_instrumentation/external/aiohttp_client/client.py
src/wrapture_instrumentation/external/http_client/README.md
src/wrapture_instrumentation/external/http_client/__init__.py
src/wrapture_instrumentation/external/http_client/client.py
src/wrapture_instrumentation/external/httpx/README.md
src/wrapture_instrumentation/external/httpx/__init__.py
src/wrapture_instrumentation/external/httpx/_client.py
src/wrapture_instrumentation/external/requests/README.md
src/wrapture_instrumentation/external/requests/__init__.py
src/wrapture_instrumentation/external/requests/sessions.py
src/wrapture_instrumentation/external/urllib3/README.md
src/wrapture_instrumentation/external/urllib3/__init__.py
src/wrapture_instrumentation/external/urllib3/pools.py
src/wrapture_instrumentation/external/urllib_request/README.md
src/wrapture_instrumentation/external/urllib_request/__init__.py
src/wrapture_instrumentation/external/urllib_request/request.py
src/wrapture_instrumentation/external/xmlrpc_client/README.md
src/wrapture_instrumentation/external/xmlrpc_client/__init__.py
src/wrapture_instrumentation/external/xmlrpc_client/client.py
src/wrapture_instrumentation/framework/__init__.py
src/wrapture_instrumentation/framework/django/README.md
src/wrapture_instrumentation/framework/django/__init__.py
src/wrapture_instrumentation/framework/django/common.py
src/wrapture_instrumentation/framework/django/db.py
src/wrapture_instrumentation/framework/django/dispatch.py
src/wrapture_instrumentation/framework/django/exceptions.py
src/wrapture_instrumentation/framework/django/handlers.py
src/wrapture_instrumentation/framework/django/resolvers.py
src/wrapture_instrumentation/framework/django/templates.py
src/wrapture_instrumentation/framework/fastapi/README.md
src/wrapture_instrumentation/framework/fastapi/__init__.py
src/wrapture_instrumentation/framework/fastapi/applications.py
src/wrapture_instrumentation/framework/fastapi/routing.py
src/wrapture_instrumentation/framework/flask/README.md
src/wrapture_instrumentation/framework/flask/__init__.py
src/wrapture_instrumentation/framework/flask/app.py
src/wrapture_instrumentation/framework/flask/blueprints.py
src/wrapture_instrumentation/framework/flask/common.py
src/wrapture_instrumentation/framework/flask/scaffold.py
src/wrapture_instrumentation/framework/flask/templating.py
src/wrapture_instrumentation/framework/starlette/README.md
src/wrapture_instrumentation/framework/starlette/__init__.py
src/wrapture_instrumentation/framework/starlette/applications.py
src/wrapture_instrumentation/framework/starlette/routing.py
src/wrapture_instrumentation/rpc/__init__.py
src/wrapture_instrumentation/rpc/grpc/README.md
src/wrapture_instrumentation/rpc/grpc/__init__.py
src/wrapture_instrumentation/rpc/grpc/interceptors.py
src/wrapture_instrumentation/server/__init__.py
src/wrapture_instrumentation/server/aiohttp_web/README.md
src/wrapture_instrumentation/server/aiohttp_web/__init__.py
src/wrapture_instrumentation/server/aiohttp_web/web_app.py
src/wrapture_instrumentation/server/aiohttp_web/web_urldispatcher.py
src/wrapture_instrumentation/server/uvicorn/README.md
src/wrapture_instrumentation/server/uvicorn/__init__.py
src/wrapture_instrumentation/server/uvicorn/config.py
src/wrapture_instrumentation/server/werkzeug_serving/README.md
src/wrapture_instrumentation/server/werkzeug_serving/__init__.py
src/wrapture_instrumentation/server/werkzeug_serving/serving.py
src/wrapture_instrumentation/server/wsgiref_simple_server/README.md
src/wrapture_instrumentation/server/wsgiref_simple_server/__init__.py
src/wrapture_instrumentation/server/wsgiref_simple_server/simple_server.py
src/wrapture_instrumentation/server/xmlrpc_server/README.md
src/wrapture_instrumentation/server/xmlrpc_server/__init__.py
src/wrapture_instrumentation/server/xmlrpc_server/server.py
src/wrapture_instrumentation/template/__init__.py
src/wrapture_instrumentation/template/jinja2/README.md
src/wrapture_instrumentation/template/jinja2/__init__.py
src/wrapture_instrumentation/template/jinja2/environment.py
tests/__init__.py
tests/asgi.py
tests/conftest.py
tests/httpserver.py
tests/test_asgi.py
tests/test_package.py
tests/test_wsgi.py
tests/wsgi.py
tests/xmlrpcserver.py
tests/database/__init__.py
tests/database/sqlalchemy/__init__.py
tests/database/sqlalchemy/conftest.py
tests/database/sqlalchemy/test_apply_remove.py
tests/database/sqlalchemy/test_class.py
tests/database/sqlalchemy/test_composition.py
tests/database/sqlalchemy/test_recording.py
tests/database/sqlalchemy/test_registration.py
tests/database/sqlite3/__init__.py
tests/database/sqlite3/conftest.py
tests/database/sqlite3/test_apply_remove.py
tests/database/sqlite3/test_class.py
tests/database/sqlite3/test_recording.py
tests/database/sqlite3/test_registration.py
tests/external/__init__.py
tests/external/aiohttp_client/__init__.py
tests/external/aiohttp_client/conftest.py
tests/external/aiohttp_client/test_apply_remove.py
tests/external/aiohttp_client/test_class.py
tests/external/aiohttp_client/test_composition.py
tests/external/aiohttp_client/test_propagation.py
tests/external/aiohttp_client/test_recording.py
tests/external/aiohttp_client/test_registration.py
tests/external/http_client/__init__.py
tests/external/http_client/conftest.py
tests/external/http_client/test_apply_remove.py
tests/external/http_client/test_class.py
tests/external/http_client/test_layering.py
tests/external/http_client/test_recording.py
tests/external/http_client/test_registration.py
tests/external/httpx/__init__.py
tests/external/httpx/conftest.py
tests/external/httpx/test_apply_remove.py
tests/external/httpx/test_async.py
tests/external/httpx/test_class.py
tests/external/httpx/test_propagation.py
tests/external/httpx/test_recording.py
tests/external/httpx/test_registration.py
tests/external/requests/__init__.py
tests/external/requests/conftest.py
tests/external/requests/test_apply_remove.py
tests/external/requests/test_class.py
tests/external/requests/test_propagation.py
tests/external/requests/test_recording.py
tests/external/requests/test_registration.py
tests/external/urllib3/__init__.py
tests/external/urllib3/conftest.py
tests/external/urllib3/test_apply_remove.py
tests/external/urllib3/test_class.py
tests/external/urllib3/test_composition.py
tests/external/urllib3/test_propagation.py
tests/external/urllib3/test_recording.py
tests/external/urllib3/test_registration.py
tests/external/urllib_request/__init__.py
tests/external/urllib_request/conftest.py
tests/external/urllib_request/test_apply_remove.py
tests/external/urllib_request/test_class.py
tests/external/urllib_request/test_propagation.py
tests/external/urllib_request/test_registration.py
tests/external/urllib_request/test_requests.py
tests/external/xmlrpc_client/__init__.py
tests/external/xmlrpc_client/conftest.py
tests/external/xmlrpc_client/test_apply_remove.py
tests/external/xmlrpc_client/test_class.py
tests/external/xmlrpc_client/test_propagation.py
tests/external/xmlrpc_client/test_recording.py
tests/external/xmlrpc_client/test_registration.py
tests/framework/__init__.py
tests/framework/django/__init__.py
tests/framework/django/conftest.py
tests/framework/django/test_apply_remove.py
tests/framework/django/test_class.py
tests/framework/django/test_database.py
tests/framework/django/test_registration.py
tests/framework/django/test_request_options.py
tests/framework/django/test_templating.py
tests/framework/django/test_tracing.py
tests/framework/django/shop/__init__.py
tests/framework/django/shop/models.py
tests/framework/django/shop/urls.py
tests/framework/django/shop/views.py
tests/framework/django/templates/page.html
tests/framework/fastapi/__init__.py
tests/framework/fastapi/conftest.py
tests/framework/fastapi/shop.py
tests/framework/fastapi/test_apply_remove.py
tests/framework/fastapi/test_class.py
tests/framework/fastapi/test_composition.py
tests/framework/fastapi/test_registration.py
tests/framework/fastapi/test_request_options.py
tests/framework/fastapi/test_tracing.py
tests/framework/flask/__init__.py
tests/framework/flask/portal.py
tests/framework/flask/shop.py
tests/framework/flask/test_apply_remove.py
tests/framework/flask/test_class.py
tests/framework/flask/test_lifecycle.py
tests/framework/flask/test_registration.py
tests/framework/flask/test_request_options.py
tests/framework/flask/test_templating.py
tests/framework/flask/test_tracing.py
tests/framework/starlette/__init__.py
tests/framework/starlette/conftest.py
tests/framework/starlette/shop.py
tests/framework/starlette/test_apply_remove.py
tests/framework/starlette/test_class.py
tests/framework/starlette/test_composition.py
tests/framework/starlette/test_registration.py
tests/framework/starlette/test_request_options.py
tests/framework/starlette/test_tracing.py
tests/rpc/__init__.py
tests/rpc/grpc/__init__.py
tests/rpc/grpc/conftest.py
tests/rpc/grpc/service.py
tests/rpc/grpc/test_apply_remove.py
tests/rpc/grpc/test_class.py
tests/rpc/grpc/test_propagation.py
tests/rpc/grpc/test_recording.py
tests/rpc/grpc/test_registration.py
tests/rpc/grpc/test_server.py
tests/server/__init__.py
tests/server/aiohttp_web/__init__.py
tests/server/aiohttp_web/conftest.py
tests/server/aiohttp_web/shop.py
tests/server/aiohttp_web/test_apply_remove.py
tests/server/aiohttp_web/test_class.py
tests/server/aiohttp_web/test_composition.py
tests/server/aiohttp_web/test_join.py
tests/server/aiohttp_web/test_recording.py
tests/server/aiohttp_web/test_registration.py
tests/server/uvicorn/__init__.py
tests/server/uvicorn/conftest.py
tests/server/uvicorn/test_apply_remove.py
tests/server/uvicorn/test_class.py
tests/server/uvicorn/test_composition.py
tests/server/uvicorn/test_recording.py
tests/server/uvicorn/test_registration.py
tests/server/werkzeug_serving/__init__.py
tests/server/werkzeug_serving/conftest.py
tests/server/werkzeug_serving/test_apply_remove.py
tests/server/werkzeug_serving/test_class.py
tests/server/werkzeug_serving/test_composition.py
tests/server/werkzeug_serving/test_recording.py
tests/server/werkzeug_serving/test_registration.py
tests/server/wsgiref_simple_server/__init__.py
tests/server/wsgiref_simple_server/conftest.py
tests/server/wsgiref_simple_server/test_apply_remove.py
tests/server/wsgiref_simple_server/test_class.py
tests/server/wsgiref_simple_server/test_composition.py
tests/server/wsgiref_simple_server/test_recording.py
tests/server/wsgiref_simple_server/test_registration.py
tests/server/xmlrpc_server/__init__.py
tests/server/xmlrpc_server/conftest.py
tests/server/xmlrpc_server/test_apply_remove.py
tests/server/xmlrpc_server/test_class.py
tests/server/xmlrpc_server/test_join.py
tests/server/xmlrpc_server/test_recording.py
tests/server/xmlrpc_server/test_registration.py
tests/template/__init__.py
tests/template/jinja2/__init__.py
tests/template/jinja2/test_apply_remove.py
tests/template/jinja2/test_class.py
tests/template/jinja2/test_registration.py
tests/template/jinja2/test_rendering.py
tests/template/jinja2/test_with_flask.py