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

..03-May-2022-

docs/H03-Nov-2019-3,5392,583

src/H03-Nov-2019-52,59241,758

tools/H03-Nov-2019-2,4061,903

CHANGELOG.mdH A D03-Nov-20196 KiB156124

LICENSEH A D23-Oct-201910.5 KiB191160

MANIFEST.inH A D23-Oct-2019266 1813

PKG-INFOH A D03-Nov-20193.3 KiB8767

README.rstH A D23-Oct-20191.7 KiB5940

VERSIONH A D03-Nov-20196 21

setup.cfgH A D03-Nov-20191.9 KiB9990

setup.pyH A D23-Oct-2019314 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.org/IdentityPython/pysaml2.png?branch=master
9    :target: https://travis-ci.org/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