Skip to main content

Simple Apereo Central Authentication Service (CAS) client

Project description

cassyy

A simple Apereo Central Authentication Service (CAS) client that provides basic support for validating service tickets using CAS Protocols 2/3. It uses the Python standard library urllib.request module and has no external dependencies.

Usage

Below provides just an example of how it might be used in a web application. The example is generic and does not represent any specific web framework. It is up to the application to decide what service_url it will use with the build_login_url method. It is common to use the current request url or a fixed url that CAS will redirect the user to after the login is successful along with a ticket that can be validated to retrieve information about the user.

import cassyy

cas_client = cassyy.CASClient.from_base_url('https://cas.example.org')

def login_route(request, response):
    redirect_url = ...
    target_url = cas_client.build_login_url(redirect_url)
    response.redirect(target_url)

# This could be a route or some authentication middleware that intercepts
# unauthenticated requests and redirects to CAS and/or validates a CAS ticket
# if one is included in the request.
def validate_route(request, response):
    ticket = ...  # pull from request
    service_url = ...
    cas_user = cas_client.validate(service_url, ticket)
    request.session['user'] = cas_user.asdict()

def logout_route(request, response):
    # where to have CAS redirect back to the app after the CAS logout occurs,
    # or None to use the CAS logout page
    service_url = ...
    target_url = cas_client.build_logout_url(service_url)
    response.redirect(target_url)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cassyy-1.0.1.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cassyy-1.0.1-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file cassyy-1.0.1.tar.gz.

File metadata

  • Download URL: cassyy-1.0.1.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cassyy-1.0.1.tar.gz
Algorithm Hash digest
SHA256 96a1d94337434ef4a47aa39577314b0948bdd779c3ec1d593e815117361c7d0a
MD5 eca2f9a4a6f33c13a533df5b4fa75123
BLAKE2b-256 6abe624caf6e2efcbced7a05895282825ad5d6abd5179abbb51077c7c6086707

See more details on using hashes here.

File details

Details for the file cassyy-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: cassyy-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 8.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cassyy-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bb9c1c21592dc47aaec6f5d71ed20a277bff9ca228a24130160c4cdd733b1f9f
MD5 1d39ff925739834a615d1fe54e806ae6
BLAKE2b-256 cdbac40faf54e82af66925a21fd190ffe5d8580942812c06776eeb75eae69987

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page