A simple, logging, colorizing, pretty-formatting, HTTP proxy.
Project description
A simple HTTP proxy server that logs all client/server communications, with some added features to parse the content such as automatic gunzipping, output colorization and known data “pretty” formatting, including XML, JSON, and YAML.
Project
TL;DR
Install:
$ pip install proxylog
Proxy http://www.example.com/ locally to http://localhost:8080/, log all transactions to a file and display them colorized and formatted on the console:
$ proxylog -r www.example.com:80 -p 8080 -o transactions.log -dcf
Display a previous log file colorized and formatted:
$ proxylog -i transactions.log -dcf
Colorizing
The colorizing is done via the Pygments package; proxylog’s --theme option is passed through to pygments, so any of the color themes that pygments supports can be used. Use the following command to list the available themes:
$ pygmentize -L styles
Formatting
“Formatting” refers to proxylog’s ability to re-format known data formats to a more human-friendly display, which when combined with colorization, can yield very readable data. HOWEVER, this does alter the actual data, so if you are using the data in any way, you should not use the “–format” flag.
Currently, the following formats are supported, with examples of how they are “prettified”:
XML:
Input:
<root ><node attr= "value">data</node> </root>
Formatted output:
<root> <node attr="value">data</node> </root>
JSON:
Input:
{"key": "value", "list": [3, "bar", null, "foo"]}
Formatted output:
{ "key": "value", "list": [ 3, "bar", null, "foo" ] }
YAML:
Input:
{key: value, list: [3, bar, null, foo]}
Formatted output:
{ "key": "value", "list": [ 3, "bar", null, "foo" ] }
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.
Source Distribution
File details
Details for the file proxylog-0.5.tar.gz
.
File metadata
- Download URL: proxylog-0.5.tar.gz
- Upload date:
- Size: 21.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39ec3d89b3bce9ce34e713c7c35e0dbdfa3a62b9e9f3fcc341848a9537f67782 |
|
MD5 | ec0e88651eadd2a2cfbc9f7444a35932 |
|
BLAKE2b-256 | 31a44f26b16dfb645fd7d2b5983c6bbce3ccd2d57c3a4650e1a14d9bd2e4caae |