2012-07-29 03:49:26 +00:00
|
|
|
**pathod** is a collection of pathological tools for testing and torturing HTTP
|
2012-06-23 22:54:37 +00:00
|
|
|
clients and servers. The project has three components:
|
2012-04-29 09:30:48 +00:00
|
|
|
|
2012-07-29 03:49:26 +00:00
|
|
|
- **pathod**, an pathological HTTP daemon.
|
|
|
|
- **pathoc**, a perverse HTTP client.
|
|
|
|
- **libpathod.test**, an API for easily using pathod and pathoc in unit tests.
|
2012-04-29 09:30:48 +00:00
|
|
|
|
2012-04-29 10:08:35 +00:00
|
|
|
|
2012-07-29 03:49:26 +00:00
|
|
|
Documentation
|
|
|
|
-------------
|
2012-04-29 10:08:35 +00:00
|
|
|
|
2012-07-29 03:49:26 +00:00
|
|
|
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
|
2012-06-23 22:54:37 +00:00
|
|
|
dependencies is dead simple:
|
|
|
|
|
|
|
|
pip install pathod
|
2012-04-29 10:08:35 +00:00
|
|
|
|
2012-07-29 03:49:26 +00:00
|
|
|
The project has the following dependencies:
|
|
|
|
|
|
|
|
* netlib_
|
|
|
|
* requests_
|
|
|
|
|
|
|
|
The project's test suite uses the nose_ unit testing framework.
|
2012-04-29 10:08:35 +00:00
|
|
|
|
2012-07-29 03:49:26 +00:00
|
|
|
.. _netlib: http://github.com/cortesi/netlib
|
|
|
|
.. _requests: http://docs.python-requests.org/en/latest/index.html
|
|
|
|
.. _nose: http://nose.readthedocs.org/en/latest/
|