From 00b8162f19090a4db26ccb2384fb4779ec69a3ec Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 16 Mar 2017 20:05:47 -0400 Subject: [PATCH] really simplify --- README.rst | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/README.rst b/README.rst index 0b27661..00df892 100644 --- a/README.rst +++ b/README.rst @@ -6,36 +6,6 @@ httpbin(1): HTTP Request & Response Service .. |Deploy| image:: https://www.herokucdn.com/deploy/button.svg .. _Deploy: https://heroku.com/deploy?template=https://github.com/kennethreitz/httpbin -Testing an HTTP Library can become difficult sometimes. -`RequestBin `__ is fantastic for testing POST -requests, but doesn't let you control the response. This exists to cover -all kinds of HTTP scenarios. Additional endpoints are being considered. - -All endpoint responses are JSON-encoded. - - -Installing and running from PyPI --------------------------------- - -You can install httpbin as a library from PyPI and run it as a WSGI app. -For example, using Gunicorn: - -.. code:: bash - - $ pip install httpbin - $ gunicorn httpbin:app - -Or install and run it directly: - -.. code:: bash - - $ git clone https://github.com/kennethreitz/httpbin.git - $ pip install -e httpbin - $ python -m httpbin.core [--port=PORT] [--host=HOST] - - -AUTHOR ------- A `Kenneth Reitz `__ Project.