├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── poetry.lock ├── py.typed ├── pyproject.toml └── src ├── cleanurl.py ├── py.typed └── test_cleanurl.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojoc/cleanurl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojoc/cleanurl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojoc/cleanurl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojoc/cleanurl/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojoc/cleanurl/HEAD/TODO -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojoc/cleanurl/HEAD/poetry.lock -------------------------------------------------------------------------------- /py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojoc/cleanurl/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/cleanurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojoc/cleanurl/HEAD/src/cleanurl.py -------------------------------------------------------------------------------- /src/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test_cleanurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojoc/cleanurl/HEAD/src/test_cleanurl.py --------------------------------------------------------------------------------