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
- Host: GitHub
- URL: https://github.com/eric-wieser/raven-client
- Owner: eric-wieser
- Created: 2014-06-06T14:59:40.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2019-09-27T18:24:03.000Z (about 6 years ago)
- Last Synced: 2025-02-12T15:47:27.597Z (8 months ago)
- Topics: raven, ucamwebauth, university-of-cambridge
- Language: Python
- Homepage: https://pypi.python.org/pypi/ravenclient
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
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 requestss = 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]