Connect the requests library to your WSGI app without using sockets.
Linking the Requests and WebTest libraries together, pyriform
allows you to use the requests
library to interact your WSGI app without needing to have it running on the network; it bonds these two web components together.
It's useful for testing purposes, handles all standard HTTP methods (as well as custom ones), supports request timeouts. and is both Python 2 and 3 compatible.
Here's an example with a small WSGI app (in this case, using CherryPy), and how we can use Pyriform to connect to it:
>>> # Create the WSGI app. >>> >>> import cherrypy >>> >>> class SayHello(object): ... ... @cherrypy.expose ... def default(self, word): ... return "Hello %s from %s!" % (word, cherrypy.request.headers['X-Location']) ... >>> cherrypy.config.update({'environment': 'embedded'}) # Suppress logging output. >>> app = cherrypy.tree.mount(SayHello(), '/') >>> >>> # Now use Pyriform to map requests from a particular URL to this app. >>> >>> import pyriform >>> import requests >>> adapter = pyriform.WSGIAdapter(app) >>> session = requests.Session() >>> session.mount('http://helloapp/', adapter) >>> resp = session.get('http://helloapp/World', headers={'X-Location': 'London'}) >>> print (resp.text) Hello World from London!
You can browse the source code and file bug reports at the project repository. Full documentation can be found here.