• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H16-Nov-2021-2,6801,838

src/H16-Nov-2021-59,85248,127

tools/H16-Nov-2021-2,4061,903

CHANGELOG.mdH A D16-Nov-202114.8 KiB376285

LICENSEH A D16-Nov-202110.5 KiB191160

MANIFEST.inH A D16-Nov-2021298 1914

PKG-INFOH A D16-Nov-20212.8 KiB8866

README.rstH A D16-Nov-20211.7 KiB5940

VERSIONH A D16-Nov-20216 21

pyproject.tomlH A D16-Nov-202158 32

setup.cfgH A D16-Nov-20212 KiB10494

setup.pyH A D16-Nov-2021314 149

README.rst

1*************************
2PySAML2 - SAML2 in Python
3*************************
4
5:Version: see VERSION_
6:Documentation: https://pysaml2.readthedocs.io/
7
8.. image:: https://api.travis-ci.com/IdentityPython/pysaml2.png?branch=master
9    :target: https://travis-ci.com/IdentityPython/pysaml2
10
11.. image:: https://img.shields.io/pypi/pyversions/pysaml2.svg
12    :target: https://pypi.org/project/pysaml2/
13
14.. image:: https://img.shields.io/pypi/v/pysaml2.svg
15    :target: https://pypi.org/project/pysaml2/
16
17
18PySAML2 is a pure python implementation of SAML Version 2 Standard. It contains
19all necessary pieces for building a SAML2 service provider or an identity
20provider. The distribution contains examples of both. Originally written to
21work in a WSGI environment there are extensions that allow you to use it with
22other frameworks.
23
24Install
25=======
26You can install with `pip install pysaml2`
27
28Testing
29=======
30
31PySAML2 uses the pytest_ framework for testing. To run the tests on your
32system's version of python:
33
341. Create and activate a virtualenv_
352. Inside the virtualenv_, install the dependencies needed for testing
36   :code:`pip install -r tests/test-requirements.txt`
373. Run the tests :code:`py.test tests`
38
39To run tests in multiple python environments, you can use pyenv_ with tox_.
40
41
42Please contribute!
43==================
44
45To help out, you could:
46
471. Test and report any bugs or other difficulties.
482. Implement missing features.
493. Write more unit tests.
50
51**If you have the time and inclination I'm looking for Collaborators**
52
53
54.. _VERSION: VERSION
55.. _pytest: https://docs.pytest.org/en/latest/
56.. _virtualenv: https://virtualenv.pypa.io/en/stable/
57.. _pyenv: https://github.com/yyuu/pyenv
58.. _tox: https://tox.readthedocs.io/en/latest/
59