The Wayback Machine - https://web.archive.org/web/20190825220449/https://github.com/gabrielfalcao/HTTPretty
Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

HTTP client mocking tool for Python - inspired by Fakeweb for Ruby
Python Other
  1. Python 98.8%
  2. Other 1.2%
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
docs
httpretty Merge branch 'master' of github.com:supplypike/HTTPretty into supplyp… Nov 26, 2018
tests rename test Mar 20, 2019
.flake8 Release 0.9.0 - Python 3 support + Improved Documentation (#335) Apr 28, 2018
.gitignore docs Apr 28, 2018
.octomarks.yml octomarks.io metadata Apr 26, 2013
.release
.travis.yml install pipenv on traviss Mar 19, 2019
COPYING Release 0.9.0 - Python 3 support + Improved Documentation (#335) Apr 28, 2018
MANIFEST.in Release 0.9.0 - Python 3 support + Improved Documentation (#335) Apr 28, 2018
Makefile clean makefile Mar 20, 2019
Pipfile
README.rst document function exposed by @Bekt on #310 Nov 26, 2018
circle.yml Release 0.9.0 - Python 3 support + Improved Documentation (#335) Apr 28, 2018
development.txt use pip on travis to ensure correct python version runtime Nov 26, 2018
requirements.txt Release 0.9.0 - Python 3 support + Improved Documentation (#335) Apr 28, 2018
setup.cfg Release 0.9.0 - Python 3 support + Improved Documentation (#335) Apr 28, 2018
setup.py Python 3.7 support (#339) Jun 6, 2018
tox.ini Python 3.7 support (#339) Jun 6, 2018

README.rst

HTTPretty 0.9.6

HTTP Client mocking tool for Python. Provides a full fake TCP socket module. Inspired by FakeWeb

Python Support:

  • 2.7.13
  • 3.6.5

https://github.com/gabrielfalcao/HTTPretty/raw/master/docs/source/_static/logo.svg?sanitize=true

Documentation Status https://travis-ci.org/gabrielfalcao/HTTPretty.svg?branch=master

Install

pip install httpretty

Common Use Cases

  • Test-driven development of API integrations
  • Fake responses of external APIs
  • Record and playback HTTP requests

Simple Example

import sure
import httpretty
import requests


@httpretty.activate
def test_httpbin():
    httpretty.register_uri(
        httpretty.GET,
        "https://httpbin.org/ip",
        body='{"origin": "127.0.0.1"}'
    )

    response = requests.get('https://httpbin.org/ip')
    response.json().should.equal({'origin': '127.0.0.1'})

    httpretty.latest_requests().should.have.length_of(1)
    httpretty.last_request().should.equal(httpretty.latest_requests()[0])
    httpretty.last_request().body.should.equal('{"origin": "127.0.0.1"}')

checking multiple responses

License

<HTTPretty - HTTP client mock for Python>
Copyright (C) <2011-2018>  Gabriel Falcão <gabriel@nacaolivre.org>

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

Main contributors

HTTPretty has received many contributions but some folks made remarkable contributions and deserve extra credit:

You can’t perform that action at this time.