python-wsgi-intercept 1.8.0-0ubuntu1 source package in Ubuntu

Changelog

python-wsgi-intercept (1.8.0-0ubuntu1) cosmic; urgency=medium

  * New upstream release.

 -- Corey Bryant <email address hidden>  Wed, 29 Aug 2018 16:28:57 -0400

Upload details

Uploaded by:
Corey Bryant
Uploaded to:
Cosmic
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Cosmic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-wsgi-intercept_1.8.0.orig.tar.gz 26.3 KiB 1a0a91e0da8ea71cbc3cf3fb81dfdc0012958136e2407c94906c8139bb24cc86
python-wsgi-intercept_1.8.0-0ubuntu1.debian.tar.xz 4.8 KiB d15a45d269466ac625d31dd97ad4cc2098148fa88e488b37f1903be95b542abb
python-wsgi-intercept_1.8.0-0ubuntu1.dsc 2.5 KiB 07d71b8cdc973045cfe63bc4b70d7efcd09407abf9a5f81d334fe974182e3cc0

View changes file

Binary packages built by this source

python-wsgi-intercept: No summary available for python-wsgi-intercept in ubuntu focal.

No description available for python-wsgi-intercept in ubuntu focal.

python3-wsgi-intercept: installs a WSGI application in place of a real URI for testing (python3)

 Testing a WSGI application normally involves starting a server at a local host
 and port, then pointing your test code to that address. Instead, this library
 lets you intercept calls to any specific host/port combination and redirect
 them into a WSGI application importable by your test program. Thus, you can
 avoid spawning multiple processes or threads to test your Web app.
 .
 wsgi_intercept works by replacing httplib.HTTPConnection with a subclass,
 wsgi_intercept.WSGI_HTTPConnection. This class then redirects specific
 server/port combinations into a WSGI application by emulating a socket. If no
 intercept is registered for the host and port requested, those requests are
 passed on to the standard handler.
 .
 This package provides a python3 module.