`imurl` is an immutable URL library, written in modern Python.
Project description
imurl
is an immutable URL library, written in modern Python.
imurl
is inspired by both purl
and Python's pathlib
.
It aims to maximise simplicity and ease of use, with support for a wide range of URL schemes.
Examples
URLs can be created from URL strings, and have the attributes you'd expect:
>>> from imurl import URL
>>> u = URL("https://example.com")
>>> u
imurl.URL('https://example.com')
>>> u.host
'example.com'
>>> u.scheme
'https'
URLs are immutable, but components can be replaced similarly to datetime
/pathlib
objects:
>>> u.replace(path="/some/path")
imurl.URL('https://example.com/some/path')
>>> u.path # This is still `None` - we haven't modified `u`.
>>> u.replace(path="/some/path").path_as_posix
PurePosixPath('/some/path')
URLs can also be built from components, and query/path parameters can be set/get/deleted:
>>> u = URL(scheme="https", host="google.com", path="/search")
imurl.URL('https://google.com/search')
>>> u2 = u.set_query("q", "a+search+term")
>>> u2
imurl.URL('https://google.com/search?q=a+search+term')
>>> u2.delete_query("q")
imurl.URL('https://google.com/search')
Installation
imurl
can be installed with pip
, and has been tested on Python 3.7. imurl
is still
alpha software, and can be considered unstable:
pip install imurl
Project details
Release history Release notifications | RSS feed
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 imurl-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: imurl-0.0.2-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5298c4914edce21662558c2f52bbf5691ced5d46b6b14de81a3e37805c085e23 |
|
MD5 | f6dcb1cdf49c04fcd61c2a632dc87daa |
|
BLAKE2b-256 | 7aa849cf596ce61a8069181f888c3142a9494cf9c954db58450c68599af58a1a |