All Projects → kanzure → python-requestions

kanzure / python-requestions

Licence: other
Serialization for python-requests based on JSON.

Programming Languages

python
139335 projects - #7 most used programming language

Requestions

Requestions is a serialization library for Requests using JSON. Also, requestions includes a decorator called httpetrified for storing responses and replaying them in the future for HTTP testing without the live interwebz.

Installing

Simple.

sudo pip install requestions

or,

sudo python setup.py install

Usage

# responses
original_response = requests.get("http://httpbin.org/get")
serialized_response = requestions.write_response(original_response)
response = requestions.read_response(serialized_response)

# requests
original_request = requests.models.Request(url="http://httpbin.org/post", method="POST")
serialized_request = requestions.write_request(original_request)
request = requestions.read_request(serialized_request)

Decorator

Save responses in a json file, then use them later to make unit testing not so miserable.

import json
import requests
from requestions import httpetrified

def get_current_ip_address(self):
    "Abuses some poor sap's ip address detection service."
    response = requests.get("http://jsonip.com")
    return response.json()["ip"]

@httpetrified("samples/helpers/jsonip-request.json")
def test_get_current_ip_address(self):
    self.assertEqual("127.0.0.1", get_current_ip_address())

Changelog

  • 0.0.7 - fix CaseInsensitiveDict problem
  • 0.0.5 - fix broken setup.py, gah
  • 0.0.4 - fix test for both requests==0.14.2 and requests>=1.0.3
  • 0.0.3 - httpetrified decorator
  • 0.0.1 - initial commit

Alternatives

Related

TODO

  • support multiple requests/responses in a single json file. This will allow a single test to cause multiple requests to be made that can all be mocked simultaneously.

  • support streaming http responses like HTTPretty does

License

BSD.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].