├── .dockerignore ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── automerge-dependabot.yml │ ├── build.yml │ ├── pre-commit.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .releaserc ├── .secrets.baseline ├── .yamllint ├── AUTHORS ├── CODEOWNERS ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── Procfile ├── README.md ├── app.json ├── docker-bake.hcl ├── 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 ├── runtime.txt ├── setup.cfg ├── setup.py ├── test_httpbin.py └── tox.ini /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | .git 3 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.github/workflows/automerge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.releaserc -------------------------------------------------------------------------------- /.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.secrets.baseline -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/.yamllint -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Kong/k8s-maintainers 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn httpbin:app -k gevent 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/app.json -------------------------------------------------------------------------------- /docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/docker-bake.hcl -------------------------------------------------------------------------------- /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/Kong/httpbin/HEAD/httpbin/core.py -------------------------------------------------------------------------------- /httpbin/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/filters.py -------------------------------------------------------------------------------- /httpbin/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/helpers.py -------------------------------------------------------------------------------- /httpbin/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/static/favicon.ico -------------------------------------------------------------------------------- /httpbin/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/structures.py -------------------------------------------------------------------------------- /httpbin/templates/UTF-8-demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/UTF-8-demo.txt -------------------------------------------------------------------------------- /httpbin/templates/flasgger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/flasgger/index.html -------------------------------------------------------------------------------- /httpbin/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/footer.html -------------------------------------------------------------------------------- /httpbin/templates/forms-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/forms-post.html -------------------------------------------------------------------------------- /httpbin/templates/httpbin.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/httpbin.1.html -------------------------------------------------------------------------------- /httpbin/templates/images/jackal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/images/jackal.jpg -------------------------------------------------------------------------------- /httpbin/templates/images/pig_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/images/pig_icon.png -------------------------------------------------------------------------------- /httpbin/templates/images/svg_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/images/svg_logo.svg -------------------------------------------------------------------------------- /httpbin/templates/images/wolf_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/images/wolf_1.webp -------------------------------------------------------------------------------- /httpbin/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/index.html -------------------------------------------------------------------------------- /httpbin/templates/moby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/moby.html -------------------------------------------------------------------------------- /httpbin/templates/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/sample.xml -------------------------------------------------------------------------------- /httpbin/templates/trackingscripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/templates/trackingscripts.html -------------------------------------------------------------------------------- /httpbin/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/httpbin/utils.py -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.5 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/setup.py -------------------------------------------------------------------------------- /test_httpbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/test_httpbin.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/httpbin/HEAD/tox.ini --------------------------------------------------------------------------------