RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse
Project description
This module defines RFC 3986 compliant replacements for the most commonly used functions of the Python Standard Library urlparse module.
>>> from uritools import urisplit, uriunsplit, urijoin, uridefrag >>> p = urisplit('foo://example.com:8042/over/there?name=ferret#nose') >>> p SplitResult(scheme='foo', authority='example.com:8042', path='/over/there', query='name=ferret', fragment='nose') >>> p.scheme 'foo' >>> p.authority 'example.com:8042' >>> p.geturi() 'foo://example.com:8042/over/there?name=ferret#nose' >>> uriunsplit(['foo', 'example.com:8042', '/over/there', 'name=ferret', 'nose']) 'foo://example.com:8042/over/there?name=ferret#nose' >>> urijoin('http://www.cwi.nl/~guido/Python.html', 'FAQ.html') 'http://www.cwi.nl/~guido/FAQ.html' >>> uridefrag('http://pythonhosted.org/uritools/index.html#uritools.uridefrag') ('http://pythonhosted.org/uritools/index.html', 'uritools.uridefrag')
For various reasons, the 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.
The uritools module aims to provide fully RFC 3986 compliant replacements for some commonly used functions found in urlparse, plus additional functions for handling Unicode, normalizing URI paths, and conveniently composing URIs from their individual components.
Installation
To install uritools using pip:
pip install uritools
Project Resources
Changelog
v0.1.0 (2014-02-14)
Initial beta 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.1.0.tar.gz
.
File metadata
- Download URL: uritools-0.1.0.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 992dacdee162a7ec100b0021638f522a6139ee826943729238962dc1e90e8b84 |
|
MD5 | 4f46c763f99881a771cfde8fcfc90171 |
|
BLAKE2b-256 | 6604395c1a306c9045bde5108446747c417ee19152b890457973b647c7caf9c0 |