From 34e4fd0b5aae872344a16267efac847f45108ca7 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Tue, 29 Apr 2008 12:06:25 +0000 Subject: [project @ fpeters@0d.be-20080118215410-d45drghkhvba7822] merged Damien branch; and fixed PHP5 binding to use GLib memory management functions Original author: Frederic Peters Date: 2008-01-18 22:54:10.239000+01:00 --- bindings/python/examples/get_attributes_from_assertion.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 bindings/python/examples/get_attributes_from_assertion.py (limited to 'bindings/python') 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 -- cgit