url-normalize icon indicating copy to clipboard operation
url-normalize copied to clipboard

URL normalization for Python

Results 14 url-normalize issues
Sort by recently updated
recently updated
newest added

Well, you have convertor ANY -> technically_correct/ It will be nice if you write ANY -> human_readable i.e. ANY -> normalized -> human_readable. Human-readable mean (idna -> unicode) + unscape...

enhancement

It appears that characters inside a URL fragment are being unnecessarily encoded. For example, when running a Google Sheets URL that links to a specific sheet, the resulting URL encodes...

When running the following snippet I get a `KeyError: 'foo'` in `normalize_port` with url-normalize 1.4.3: ```python import url_normalize print(url_normalize.url_normalize('foo://localhost:1234/')) ``` README.md states the following: ``` For schemes that define a...