An open API service indexing awesome lists of open source software.

https://github.com/eric-wieser/raven-client

A python requests adapter to automatically login to the Cambridge University Raven Login
https://github.com/eric-wieser/raven-client

raven ucamwebauth university-of-cambridge

Last synced: 6 months ago
JSON representation

A python requests adapter to automatically login to the Cambridge University Raven Login

Awesome Lists containing this project

README

          

.. _requests: http://docs.python-requests.org/en/latest/

raven-client
============

A requests_ adapter to automatically login to the Cambridge University Raven Login

Example usage:

.. code-block:: python

import ravenclient
import requests

s = requests.Session()
s.mount(ravenclient.auth_url, ravenclient.HTTPAdapter('efw27', 'mypassword'))

r = s.get('http://www3.eng.cam.ac.uk/exams/results/2012/pt1a.html')

print r.text[:600]