WSGI middleware for recording requests/responses.
Project description
WSGI middleware for conditionally recording request/response information.
Install it:
$ pip install wsgim-record ...
and use it:
import wsgim_record class RecordMiddleware(wsgim_record.RecordMiddleware) # tell what to record def record_input(self, environ) return True def record_errors(self, environ) return False def record_output(self, environ, status, headers, exc_info=None) return True # what was recorded def recorded(self, environ, input, errors, status, headers, output): ... wrapped = RecordMiddleware(app)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size wsgim-record-0.1.1.tar.gz (3.7 kB) | File type Source | Python version None | Upload date | Hashes View |