From 11041753f38bff5fce26dd98424666e90964ff25 Mon Sep 17 00:00:00 2001 From: Roland Alton <ras@osalliance.com> Date: Thu, 2 Mar 2023 18:53:03 +0000 Subject: [PATCH] correct naming, add comment --- anaysis.py => analysis.py | 3 +++ 1 file changed, 3 insertions(+) rename anaysis.py => analysis.py (95%) diff --git a/anaysis.py b/analysis.py similarity index 95% rename from anaysis.py rename to analysis.py index eca10d0..52c3751 100644 --- a/anaysis.py +++ b/analysis.py @@ -1,5 +1,7 @@ #!/bin/python3 +# parse an IdP XML feed and export as csv for further analysis which attributes fit best for discovery + from pprint import pprint from lxml import etree @@ -26,6 +28,7 @@ attribute_map = { def get_metadata(): +# replace feed here url = 'https://eduid.at/md/aconet-interfed.xml' r = requests.get(url, allow_redirects=True) parser = etree.XMLParser() -- GitLab