wsgiref is the WSGI (PEP 333) reference implementation, included in the Python standard library. It provides utilities for developing and testing WSGI applications, including a simple HTTP server and request/response objects. Version 0.1.2 on PyPI is outdated; the standard library version is bundled with Python 3.x. Use the standard library module instead of the PyPI package to avoid conflicts.
pip install wsgirefVerified import paths — ran on the pinned version, not inferred.
Basic WSGI application using wsgiref's simple server.
Remove wsgiref from requirements.txt. Use: from wsgiref.simple_server import make_server
For production, use a production-grade server like Gunicorn or uWSGI.
No dependency data recorded yet.