├── .dockerignore ├── .gitignore ├── .travis.yml ├── AUTHORS ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── Procfile ├── README.md ├── app.json ├── docker-compose.yml ├── httpbin ├── VERSION ├── __init__.py ├── core.py ├── filters.py ├── helpers.py ├── static │ └── favicon.ico ├── structures.py ├── templates │ ├── UTF-8-demo.txt │ ├── flasgger │ │ └── index.html │ ├── footer.html │ ├── forms-post.html │ ├── httpbin.1.html │ ├── images │ │ ├── jackal.jpg │ │ ├── pig_icon.png │ │ ├── svg_logo.svg │ │ └── wolf_1.webp │ ├── index.html │ ├── moby.html │ ├── sample.xml │ └── trackingscripts.html └── utils.py ├── now.json ├── runtime.txt ├── setup.cfg ├── setup.py ├── test_httpbin.py └── tox.ini /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | .git 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/AUTHORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn httpbin:app -k gevent 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/app.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /httpbin/VERSION: -------------------------------------------------------------------------------- 1 | 0.9.2 2 | -------------------------------------------------------------------------------- /httpbin/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from .core import * 4 | -------------------------------------------------------------------------------- /httpbin/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/core.py -------------------------------------------------------------------------------- /httpbin/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/filters.py -------------------------------------------------------------------------------- /httpbin/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/helpers.py -------------------------------------------------------------------------------- /httpbin/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/static/favicon.ico -------------------------------------------------------------------------------- /httpbin/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/structures.py -------------------------------------------------------------------------------- /httpbin/templates/UTF-8-demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/UTF-8-demo.txt -------------------------------------------------------------------------------- /httpbin/templates/flasgger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/flasgger/index.html -------------------------------------------------------------------------------- /httpbin/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/footer.html -------------------------------------------------------------------------------- /httpbin/templates/forms-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/forms-post.html -------------------------------------------------------------------------------- /httpbin/templates/httpbin.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/httpbin.1.html -------------------------------------------------------------------------------- /httpbin/templates/images/jackal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/images/jackal.jpg -------------------------------------------------------------------------------- /httpbin/templates/images/pig_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/images/pig_icon.png -------------------------------------------------------------------------------- /httpbin/templates/images/svg_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/images/svg_logo.svg -------------------------------------------------------------------------------- /httpbin/templates/images/wolf_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/images/wolf_1.webp -------------------------------------------------------------------------------- /httpbin/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/index.html -------------------------------------------------------------------------------- /httpbin/templates/moby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/moby.html -------------------------------------------------------------------------------- /httpbin/templates/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/sample.xml -------------------------------------------------------------------------------- /httpbin/templates/trackingscripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/templates/trackingscripts.html -------------------------------------------------------------------------------- /httpbin/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/httpbin/utils.py -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/now.json -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.5 -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/setup.py -------------------------------------------------------------------------------- /test_httpbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/test_httpbin.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmanlabs/httpbin/HEAD/tox.ini --------------------------------------------------------------------------------