Registry / devops / types-webob

types-webob

JSON →
library1.8.0.20260518pypypiunverified

Typing stubs for WebOb, providing type annotations for the WebOb library. Current version 1.8.0.20260518, updated regularly by typeshed.

pip install types-webob
INSTALL
IMPORT
SIG · TYPES-WEBOB
T
types-webob
devopspythonv1.8.0.20260518
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Request
from webob_stubs import Request
from webob import Request

Demonstrates type-annotated usage of WebOb with types-webob stubs.

from webob import Request, Response # Type-annotated usage def handle_request(req: Request) -> Response: return Response(body='Hello') # Basic usage of stubs req = Request.blank('/') print(req.method) # 'GET'
Debug
Known issues
gotchatypes-webob only provides type stubs; it does not replace the WebOb runtime package.
fix
Ensure 'webob' is installed alongside 'types-webob'.
affects: all
deprecatedSome older methods like 'Request.from_query_string' may not be fully typed in initial versions.
fix
Check typeshed updates or use explicit Any casts.
affects: <1.0
gotchaThe stubs are maintained by typeshed and may not cover every third-party extension or custom subclass.
fix
Define custom stubs or use # type: ignore for uncovered methods.
affects: all
breakingType stub updates may introduce new type errors in existing codebases when mypy or pyright is upgraded.
fix
Run type checking regularly and pin versions if needed.
affects: all
Upgrade
Version history
1.8.0.20260518latest on PyPI · released May 18, 2026
Audit
Dependencies
webobrequiredRuntime dependency for the stubs to type-check WebOb usage
Agent activity
6 hits · last 30 days
node
6
Resources
types-webob — pip install types-webob · libregistry