RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse
Project description
For various reasons, the Python Standard Library urlparse module is not compliant with current Internet standards, does not include Unicode support, and is generally unusable with proprietary URI schemes. As stated in Lib/urlparse.py:
RFC 3986 is considered the current standard and any future changes to urlparse module should conform with it. The urlparse module is currently not entirely compliant with this RFC due to defacto scenarios for parsing, and for backward compatibility purposes, some parsing quirks from older RFCs are retained.
This module aims to provide fully RFC 3986 compliant, Unicode-aware replacements for the most commonly used functions provided by urlparse.
The uritools module currently defines the following classes and functions:
uritools.urisplit(uristring)
Split a URI string into a named tuple with five components:
<scheme>://<authority>/<path>?<query>#<fragment>
The returned object is an instance of SplitResult.
uritools.uriunsplit(parts)
Combine the elements of a tuple as returned by urisplit() into a complete URI as a string.
The parts argument can be any five-item iterable.
uritools.urijoin(base, ref, strict=False)
Resolve a URI reference relative to a base URI and return the resulting URI string.
uritools.uricompose(scheme=None, authority=None, path=’’, query=None, fragment=None, encoding=’utf-8’)
Compose a URI string from its components.
class uritools.SplitResult(scheme, authority, path, query, fragment)
Extend namedtuple to hold urisplit() results.
- Attributes:
- scheme:
URI scheme or None if not present
- authority:
URI authority component or None if not present
- path:
URI path component, always present but may be empty
- query:
URI query component or None if not present
- fragment:
URI fragment component or None if not present
Changelog
v0.0.5 (2014-02-09)
Add urijoin().
Improve unit tests.
v0.0.4 (2014-02-09)
Add default parameters.
Improve RFC 3986 compliance.
Adapt unit tests from urlparse.
Write some documentation.
v0.0.3 (2014-02-08)
Add character encoding parameters.
v0.0.2 (2014-02-08)
Add basic unit tests.
v0.0.1 (2014-02-08)
Initial alpha release.
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 Distribution
File details
Details for the file uritools-0.0.5.tar.gz
.
File metadata
- Download URL: uritools-0.0.5.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9193af2307b0de6949f25e0421021c644dd5cdf58892f1340ad862e021e9b7d |
|
MD5 | 4485f14837bc9a795e973815b25b1a02 |
|
BLAKE2b-256 | 065534cb19bdf5c5a77df0e4e997814fad36980f46a2c85eb128b7eb3900201b |