mitmproxy/README.mkd

45 lines
1.6 KiB
Markdown
Raw Normal View History

2015-06-16 01:06:30 +00:00
[![Build Status](https://img.shields.io/travis/mitmproxy/pathod/master.svg)](https://travis-ci.org/mitmproxy/pathod)
[![Coverage Status](https://img.shields.io/coveralls/mitmproxy/pathod/master.svg)](https://coveralls.io/r/mitmproxy/pathod)
[![Downloads](https://img.shields.io/pypi/dm/pathod.svg?color=orange)](https://pypi.python.org/pypi/pathod)
[![Latest Version](https://img.shields.io/pypi/v/pathod.svg)](https://pypi.python.org/pypi/pathod)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/pathod.svg)](https://pypi.python.org/pypi/pathod)
[![Supported Python implementations](https://img.shields.io/pypi/implementation/pathod.svg)](https://pypi.python.org/pypi/pathod)
2013-12-16 03:47:29 +00:00
__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.
2015-05-29 17:57:06 +00:00
- __pathoc__, a perverse HTTP client.
- __libpathod.test__, an API for easily using __pathod__ and __pathoc__ in unit tests.
2012-07-29 03:49:26 +00:00
# Documentation
2012-07-29 03:36:00 +00:00
The pathod documentation is self-hosted. Just fire up pathod, like so:
2015-05-29 17:57:06 +00:00
./pathod
2012-07-29 03:36:00 +00:00
And then browse to:
http://localhost:9999
2012-07-29 03:49:26 +00:00
You can aways view the documentation for the latest release at the pathod
website:
2015-05-29 17:57:06 +00:00
2012-07-29 03:49:26 +00:00
http://pathod.net
2012-06-23 22:18:20 +00:00
2012-04-29 10:13:47 +00:00
# Installing
2012-04-29 10:08:35 +00:00
2012-06-21 04:58:10 +00:00
If you already have __pip__ on your system, installing __pathod__ and its
dependencies is dead simple:
2015-05-29 17:57:06 +00:00
2012-04-29 10:08:35 +00:00
pip install pathod
2012-07-29 03:36:00 +00:00
The project has the following dependencies:
2015-05-29 17:57:06 +00:00
* [netlib](https://github.com/mitmproxy/netlib)
* [requests](http://docs.python-requests.org/en/latest/index.html)
2012-06-23 22:18:20 +00:00
2012-07-29 03:36:00 +00:00
The project's test suite uses the
[nose](http://nose.readthedocs.org/en/latest/) unit testing framework.