RETIRED, further work has moved to Debian project infrastructure
Go to file
Johan Lundberg 4c6e454ee5
Allow to configuration option name_id_format_allow_create for sp config
2017-04-21 14:21:21 +02:00
.idea/libraries Added missing parameter. 2014-04-08 17:36:51 +02:00
doc Merge pull request #337 from jgehrcke/patch-1 2016-09-22 08:51:50 +03:00
example Use six instead of futures for PY3 compatibility. 2016-09-23 08:12:58 +02:00
script Fix python3 syntax errors 2015-05-15 11:52:15 -07:00
src Allow to configuration option name_id_format_allow_create for sp config 2017-04-21 14:21:21 +02:00
tests Allow to configuration option name_id_format_allow_create for sp config 2017-04-21 14:21:21 +02:00
tools Remove leading space before hashbang. 2016-08-29 14:15:45 -07:00
work removed non-ascii char \xfe from comments in TODO section 2014-07-05 17:03:09 +02:00
.bzrignore ignore egg-info & doc build directory 2011-04-12 19:27:08 +05:30
.gitignore Ignore virtualenv env and tox files 2016-10-19 19:00:16 -04:00
.travis.yml Update tox.ini to actually run tests and make Travis use it. 2015-11-12 10:54:53 +01:00
CHANGES Initial add 2012-05-23 18:56:51 +02:00
INSTALL Initial add 2012-05-23 18:56:51 +02:00
LICENSE.txt Match license text to license='Apache 2.0' in setup.py 2015-06-16 02:14:58 +02:00
MANIFEST.in Match license text to license='Apache 2.0' in setup.py 2015-06-16 02:14:58 +02:00
README.rst Latest version is 4.4.0 not 4.0.4 2016-12-20 09:50:06 -05:00
TODO Various spelling/grammar tweaks and typo fixes. 2014-04-02 04:13:34 -04:00
release-howto.rst Initial add 2012-05-23 18:56:51 +02:00
setup.py Swap pycrypto* for pyca/cryptography 2017-01-12 14:22:02 -06:00
tox.ini Refactor test dependencies 2016-10-19 19:01:26 -04:00

README.rst

PySAML2 - SAML2 in Python

Author

Roland Hedberg

Version

4.4.0

image

image

image

image

image

PySAML2 is a pure python implementation of SAML2. 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.

Testing

PySAML2 uses the pytest framework for testing. To run the tests on your system's version of python

  1. Create and activate a virtualenv.
  2. Inside the virtualenv, install the dependencies needed for testing pip install -r tests/test_requirements.txt
  3. Run the tests py.test tests

To run tests in multiple python environments, you can use pyenv with tox.