Show way to run httpbin as a python module.

It's already there, may as well mention how to run httpbin without gunicorn.
This commit is contained in:
Ehtesh Choudhury
2014-11-04 12:01:51 -05:00
parent 128bc1b986
commit 1fce5f6a20
+6
View File
@@ -127,6 +127,12 @@ $ pip install httpbin
$ gunicorn httpbin:app
```
Or run it directly:
```bash
$ python -m httpbin.core
```
## Changelog
* 0.2.0: Added an XML endpoint. Also fixes several bugs with unicode, CORS headers, digest auth, and more.