Skip to content

Connect the requests library to your WSGI app without using sockets.

License

Notifications You must be signed in to change notification settings

the-allanc/pyriform

Repository files navigation

pyriform

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.

Example Usage

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!

Docs Release Version Python Version License Build Status Coverage Code Climate

You can browse the source code and file bug reports at the project repository. Full documentation can be found here.

About

Connect the requests library to your WSGI app without using sockets.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages