url-normalize
url-normalize copied to clipboard
URL normalization for Python
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...
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...
Add an optional flag, enabled by default, to remove tracking parameters. Implement a whitelist of parameters for the most popular sites, such as: ``` [ { url: "google.com", allowParams: ["q",...