diff options
Diffstat (limited to 'bindings/python/examples')
| -rw-r--r-- | bindings/python/examples/get_attributes_from_assertion.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bindings/python/examples/get_attributes_from_assertion.py b/bindings/python/examples/get_attributes_from_assertion.py new file mode 100644 index 00000000..44ceb9e5 --- /dev/null +++ b/bindings/python/examples/get_attributes_from_assertion.py @@ -0,0 +1,8 @@ +# Example SP Python code to get attributes from an assertion + +for attribute in assertion.attributeStatement[0].attribute: + if attribute.name == lasso.SAML2_ATTRIBUTE_NAME_EPR: + continue + print 'attribute : ' + attribute.name + for value in attribute.attributeValue: + print ' value : ' + value.any[0].content |
