Small, dependency-free, fast Python package for removing tracking fields from URLs.
Project description
Unalix is a library written in Python, it implements the specification used by the ClearURLs addon for removing tracking fields from URLs.
Installation
Install using pip
:
python3 -m pip install --force-reinstall \
--disable-pip-version-check \
--upgrade \
'unalix'
The version from git might be broken sometimes, but you can also install from it:
python3 -m pip install --force-reinstall \
--disable-pip-version-check \
--upgrade \
'https://codeload.github.com/AmanoTeam/Unalix/tar.gz/refs/heads/master'
Note: Unalix requires Python 3.6 or higher.
Usage:
Removing tracking fields:
import unalix
url: str = "https://deezer.com/track/891177062?utm_source=deezer"
result: str = unalix.clear_url(url=url)
assert result == "https://deezer.com/track/891177062"
Unshort shortened URL:
import unalix
url: str = "https://bitly.is/Pricing-Pop-Up"
result: str = unalix.unshort_url(url=url)
assert result == "https://bitly.com/pages/pricing"
Tip: The unshort_url()
method will strip tracking fields from any URL before following a redirect, so you don't need to manually call clear_url()
for it's return value.
Contributing
If you have discovered a bug in this library and know how to fix it, fork this repository and open a Pull Request.
Third party software
Unalix includes some third party software in its codebase. See them below:
-
ClearURLs
- Author: Kevin Röbert
- Repository: ClearURLs/Rules
- License: GNU Lesser General Public License v3.0
-
Requests
- Author: Kenneth Reitz
- Repository: psf/requests
- License: Apache v2.0
-
Pyrogram
- Author: Dan
- Repository: pyrogram/pyrogram
- License: LGPL-3.0
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file Unalix-0.9-py3-none-any.whl
.
File metadata
- Download URL: Unalix-0.9-py3-none-any.whl
- Upload date:
- Size: 153.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.11.0a1+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5b185b5a28b9fa485bd4c7bc2531da09e0e58e9b3bc1229fd625ac2d6d64d1c |
|
MD5 | 1f3fe902a0eb09e7e3db21db9adccfcd |
|
BLAKE2b-256 | b96eab75303b145fc59386a30fec31226d5797397b85e60ac1b02edd0b7a9b04 |