root/alpine313/: pysaml2-7.4.2 metadata and description

Homepage Simple index PyPI page

Python implementation of SAML Version 2 Standard

author IdentityPython
author_email discuss@idpy.org
classifiers
  • License :: OSI Approved :: Apache Software License
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Topic :: Software Development :: Libraries :: Python Modules
description_content_type text/markdown
keywords saml, saml2, standard, federation, identity, idpy, IdentityPython
license Apache-2.0
maintainer IdentityPython
maintainer_email discuss@idpy.org
project_urls
  • Bug Tracker, https://github.com/IdentityPython/pysaml2/issues
  • Documentation, https://pysaml2.readthedocs.io
  • Repository, https://github.com/IdentityPython/pysaml2
requires_dist
  • cryptography (>=3.1)
  • defusedxml
  • importlib-metadata (>=1.7.0) ; python_version < "3.8"
  • importlib-resources ; python_version < "3.9"
  • paste ; extra == "s2repoze"
  • pyopenssl
  • python-dateutil
  • pytz
  • repoze.who ; extra == "s2repoze"
  • requests (>=2,<3)
  • xmlschema (>=1.2.1)
  • zope.interface ; extra == "s2repoze"
requires_python >=3.9,<4.0
File Tox results History
pysaml2-7.4.2-py3-none-any.whl
Size
410 KB
Type
Python Wheel
Python
3

PySAML2 - SAML2 for Python

Version Supported Python versions Total downloads Weekly downloads License

PySAML2 is a pure python implementation of SAML Version 2 Standard. It contains all necessary pieces for building a SAML2 service provider or an identity provider. The distribution contains examples of both. Originally written to work in a WSGI environment there are extensions that allow you to use it with other frameworks.

Website: https://idpy.org/

Documentation: https://pysaml2.readthedocs.io/

Contribution guidelines: CONTRIBUTING.md

Security policies: SECURITY.md

Source code: https://github.com/IdentityPython/pysaml2/

Developer guidelines: DEVELOPERS.md

PyPI project: https://pypi.org/project/pysaml2/

License: LICENSE

Specifications

Retrieved from https://wiki.oasis-open.org/security/FrontPage

SAML V2.0 Standard

Profiles and extensions

Committee Specifications

Installation

You can install PySAML2 through pip:

pip install pysaml2

External dependencies

PySAML2 works with the xmlsec binary. This should be readily available in most Linux distributions:

$ apt-get install xmlsec1
$ dnf install xmlsec1-openssl
$ yum install xmlsec1-openssl
$ pacman -S xmlsec
...

and on MacOS through homebrew

$ brew install libxmlsec1

Changelog

See the CHANGELOG to learn about the latest developments.

Contributing

We've set up a separate document for our contribution guidelines.

Community

IdentityPython is a community around a collection of libraries and tools to manage identity related concepts with Python code. You can interact with the community though the mailing list or on the Slack workspace (invitation).

Development

We've set up a separate document for developers.

Releasing

We've set up a separate document for our release process.

Pre-commit

(TODO)