mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
40 lines
1.2 KiB
Markdown
40 lines
1.2 KiB
Markdown
[![Build Status](https://travis-ci.org/mitmproxy/pathod.png?branch=master)](https://travis-ci.org/mitmproxy/pathod) [![Coverage Status](https://coveralls.io/repos/mitmproxy/pathod/badge.png?branch=master)](https://coveralls.io/r/mitmproxy/pathod)
|
|
|
|
__pathod__ is a collection of pathological tools for testing and torturing HTTP
|
|
clients and servers. The project has three components:
|
|
|
|
- __pathod__, an pathological HTTP daemon.
|
|
- __pathoc__, a perverse HTTP client.
|
|
- __libpathod.test__, an API for easily using __pathod__ and __pathoc__ in unit tests.
|
|
|
|
|
|
# Documentation
|
|
|
|
The pathod documentation is self-hosted. Just fire up pathod, like so:
|
|
|
|
./pathod
|
|
|
|
And then browse to:
|
|
|
|
http://localhost:9999
|
|
|
|
You can aways view the documentation for the latest release at the pathod
|
|
website:
|
|
|
|
http://pathod.net
|
|
|
|
# Installing
|
|
|
|
If you already have __pip__ on your system, installing __pathod__ and its
|
|
dependencies is dead simple:
|
|
|
|
pip install pathod
|
|
|
|
The project has the following dependencies:
|
|
|
|
* [netlib](http://github.com/cortesi/netlib)
|
|
* [requests](http://docs.python-requests.org/en/latest/index.html)
|
|
|
|
The project's test suite uses the
|
|
[nose](http://nose.readthedocs.org/en/latest/) unit testing framework.
|