This commit is contained in:
2017-03-16 20:13:47 -04:00
parent 7263b9ae97
commit 5f03bba84c
3 changed files with 26 additions and 18 deletions
+23
View File
@@ -0,0 +1,23 @@
# httpbin(1): HTTP Request & Response Service
A [Kenneth Reitz](http://kennethreitz.org/) Project.
![ice cream](http://farm1.staticflickr.com/572/32514669683_4daf2ab7bc_k_d.jpg)
See http://httpbin.org for more information.
## Officially Deployed at:
- http://httpbin.org
- https://httpbin.org
- http://eu.httpbin.org
- https://eu.httpbin.org
## SEE ALSO
- http://httpbin.org
- https://www.hurl.it
- http://requestb.in
- http://python-requests.org
-15
View File
@@ -1,15 +0,0 @@
httpbin(1): HTTP Request & Response Service
===========================================
A `Kenneth Reitz <http://kennethreitz.org/>`__ Project.
.. image:: http://farm1.staticflickr.com/572/32514669683_4daf2ab7bc_k_d.jpg
See http://httpbin.org for more information.
SEE ALSO
--------
- https://www.hurl.it
- http://requestb.in
- http://python-requests.org
+3 -3
View File
@@ -2,14 +2,14 @@ from setuptools import setup, find_packages
import os
import io
long_description = io.open(
os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8').read()
# long_description = io.open(
# os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8').read()
setup(
name="httpbin",
version="0.5.0",
description="HTTP Request and Response Service",
long_description=long_description,
# long_description=long_description,
# The project URL.
url='https://github.com/Runscope/httpbin',