From 1fce5f6a20dc8ba1ade7e236f727fd43f6769011 Mon Sep 17 00:00:00 2001 From: Ehtesh Choudhury Date: Tue, 4 Nov 2014 12:01:51 -0500 Subject: [PATCH] Show way to run httpbin as a python module. It's already there, may as well mention how to run httpbin without gunicorn. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 07ca81f..6d5359d 100644 --- a/README.md +++ b/README.md @@ -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.