https://github.com/ryanfox/pycas
Clone of Jon Rifkin's unofficial CAS client for python
https://github.com/ryanfox/pycas
Last synced: 3 months ago
JSON representation
Clone of Jon Rifkin's unofficial CAS client for python
- Host: GitHub
- URL: https://github.com/ryanfox/pycas
- Owner: ryanfox
- License: apache-2.0
- Created: 2014-07-14T17:53:36.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-16T22:26:11.000Z (almost 12 years ago)
- Last Synced: 2026-01-02T15:45:24.094Z (6 months ago)
- Language: Python
- Size: 141 KB
- Stars: 3
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
===============
pycas v0.0.3
===============
Notice: this seems to not quite fit the needs of the project it was intended for. It will remain in its current form,
but consider the package no longer maintained. Feel free to improve it further if you choose, and submit pull
requests on github.
What?
===============
This is a copy of Jon Rifkin's Python CAS client. The original can be found at
https://wiki.jasig.org/display/CASC/Pycas. This fork lives at https://github.com/ryanfox/pycas and on Pypi.
The original appears to have not been updated for some time now, and is not on Pypi. This is an attempt to rectify
that situation.
Potential things to be added:
- Unit tests
- Better security:
* Remove default secret key
* Better yet, ditch md5 entirely
* Add signed cookies (e.g. itsdangerous)
- Enforce the timeout
Installation
==============
::
pip install pycas
Why?
==============
The pycas CAS client provides CAS authentication for your Python CGI web application.
How?
==============
STEPS TO ADD CAS AUTHENTICATION
1) Add four lines to your Python Web app like this: ::
import pycas
CAS_SERVER = "https://casserver.mydomain"
SERVICE_URL = "http://webserver.mydomain/cgi-bin/webapp.py"
status, userid, cookie = pycas.login(CAS_SERVER, SERVICE_URL)
2) Process the returned variables::
status carries the success or failure status.
userid is the user's account name.
cookie is the header string to send to the client if it's not empty.
For more information, see comments in the Python code.