9👍
I’ve been using an older version of django-cas for a long time now, and it works as expected. I’ve never used django-cas-consumer, but I’ve looked into it.
Comparing the code between the two projects, it looks like django-cas-consumer is a stripped-down version of django-cas.
The two most glaring differences are:
- django-cas-consumer only supports CAS version 1
- django-cas has middleware that captures any requests to the django.contrib.auth.views.login and logout and redirects them to the CAS login and logout views
Also, if you are using Apache, you can consider using mod_auth_cas, which is an official CAS client. Then you can simply use django’s remote user authentication.
9👍
Django-cas was missing features we needed, so we rolled our own:
http://github.com/KTHse/django-cas2
- [Django]-How do I use Django's logger to log a traceback when I tell it to?
- [Django]-Send message using Django Channels from outside Consumer class
- [Django]-Python/Django: log to console under runserver, log to file under Apache
8👍
If someone still interesting CAS on django. Please try the most latest and active maintained version of django cas: django-cas-ng:
pip install django-cas-ng
django-cas-ng is CAS (Central Authentication Service) client implementation. This project inherit from django-cas. django-cas is not updated since 2013-4-1. This project will include new bugfix and new feature development.
It have more features:
- Supports CAS_ versions 1.0, 2.0 and 3.0.
- Support Single Sign Out
- Supports Token auth schemes
- Can fetch Proxy Granting Ticket
- Supports Django 2.0, 2.1, 2.2 and 3.0
- Supports using a User custom model
- Supports Python 3.5+
see document at https://djangocas.dev/docs/
- [Django]-Dynamic choices field in Django Models
- [Django]-What is a Django "app" supposed to mean?
- [Django]-How to see details of Django errors with Gunicorn?
4👍
Low activity does not necessarily mean that product is not good enough. It might be the case that the product has reached a stable state. Probably, you should confirm it with the developer. Personally, I would go for a stable system over one which shows lot of activity (especially if the activity is bug-fixing )
- [Django]-Custom error messages in Django Rest Framework serializer
- [Django]-Django – deterministic=True requires SQLite 3.8.3 or higher upon running python manage.py runserver
- [Django]-Start celery worker throws "no attribute 'worker_state_db'"
3👍
The kstateome/django-cas repo is more active recently (2015) with following details.
Requirements
- Current version: 1.1.1
- Django
1.5
or above, - Python
2.6
,2.7
,3.4
Features
This is K-State’s fork of the original and includes several additional features as well as features merged from
- [Django]-Django admin – sorting list_filter
- [Django]-Invalid command WSGIDaemonProcess Deploy Django application on CentOS 6.7
- [Django]-Django: How to format a DateField's date representation?