diff --git a/anaysis.py b/analysis.py
similarity index 95%
rename from anaysis.py
rename to analysis.py
index eca10d0b4728dca402adc87445bc3d88ab61148a..52c37510c2cdc11aa1c0ec5d259d9144e4856ddc 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()