SAML-Toolkits / python3-saml

MIT License
670 stars 302 forks source link

ModuleNotFoundError: No module named 'urlparse' when running demo-flask app #365

Open NeriaBasha opened 1 year ago

NeriaBasha commented 1 year ago

when running demo-flask app we get the error

ModuleNotFoundError: No module named 'urlparse' 

How to fix:

Change the code at line 6 from: from urlparse import urlparse to: from urllib.parse import urlparse

pitbulk commented 11 months ago

I guess this is something required while using py3

Can you provide a PR and make it backward-compatible?