Metadata-Version: 2.4
Name: repoze.who
Version: 3.2.0rc1
Summary: Identification and authentication framework for WSGI.
Author-email: "Tres Seaver, Agendaless Consulting" <tseaver@agendaless.com>
Project-URL: Repository, https://github.com/repoze/repoze.who
Project-URL: Issues, https://github.com/repoze/repoze.who/issues
Project-URL: Documentation, https://repozewho.readthedocs.io/en/stable/index.html
Project-URL: Changelog, https://github.com/repoze/repoze.who/blob/master/CHANGES.rst
Keywords: web,application,server,wsgi,zope
Classifier: Development Status :: 5 - Production/Stable
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Requires-Dist: WebOb
Requires-Dist: zope.interface
Requires-Dist: legacy-cgi; python_version > "3.12"
Dynamic: license-file

repoze.who
==========

.. image:: https://travis-ci.org/repoze/repoze.who.png?branch=master
        :target: https://travis-ci.org/repoze/repoze.who

.. image:: https://readthedocs.org/projects/repozewho/badge/?version=latest
        :target: http://repozewho.readthedocs.org/en/latest/
        :alt: Documentation Status

.. image:: https://img.shields.io/pypi/v/repoze.who.svg
        :target: https://pypi.python.org/pypi/repoze.who

.. image:: https://img.shields.io/pypi/pyversions/repoze.who.svg
        :target: https://pypi.python.org/pypi/repoze.who

``repoze.who`` is an identification and authentication framework
for arbitrary WSGI applications.  ``repoze.who`` can be configured
either as WSGI middleware or as an API for use by an application.

``repoze.who`` is inspired by Zope 2's Pluggable Authentication
Service (PAS) (but ``repoze.who`` is not dependent on Zope in any
way; it is useful for any WSGI application).  It provides no facility
for authorization (ensuring whether a user can or cannot perform the
operation implied by the request).  This is considered to be the
domain of the WSGI application.

Installation
------------

Install using pip (within a virtualenv)::

 $ pip install repoze.who


Usage
-----

For details on using the various components, please see the
documentation in ``docs/index.rst``.  A rendered version of that documentation
is also available online:

 - http://repozewho.readthedocs.org/en/latest/


Reporting Bugs 
--------------

Please report bugs in this package to

  https://github.com/repoze/repoze.who/issues


Obtaining Source Code
---------------------

Download development or tagged versions of the software by visiting:

  https://github.com/repoze/repoze.who
