TkTech / ckanext-cloudstorage

Implements support for resource storage against multiple popular providers via apache-libcloud (S3, Azure Storage, etc...)
MIT License
35 stars 55 forks source link

Migrate to Python 3: Replace urlparse with urllib.parse #57

Open florianm opened 2 years ago

florianm commented 2 years ago

Just a quick mention here to record this issue I ran into with CKAN 2.10 / ckanext0cloudstorage master.

Python 2 style urlparse is used here could be replaced by from urllib.parse import urljoin and used here as urljoin. Bonus points for imports supporting both urllib and urlparse :-)

maxclac commented 5 months ago

Any news about this?