Simple URL parsing, canonicalization and equivalence library for Python. Current version 0.5, stable but rarely updated.
pip install urlpyVerified import paths — ran on the pinned version, not inferred.
Parse, access components, and canonicalize a URL.
Use u.canonicalize() or create a new URL() for modifications.
Consider using 'yarl' or 'urllib.parse' for active development.
Manually sort query params if needed: u.query = '&'.join(sorted(u.query.split('&')))Use 'from urlpy import URL'
Use attribute assignment like u.scheme = 'https'
No dependency data recorded yet.