URI Parsing for Humans.
Project description
# urilib
[](http://travis-ci.org/core/uricore)
WARNING: Rough, raw, and fast changing code. Check back later. ;-)
–
Example of use:
>>> from httpcore.uri import URI
>>> from httpcore.iri import IRI
>>> iri = IRI(u'http://\N{SNOWMAN}/')
>>> iri
IRI(u'http://\u2603/')
>>> uri = URI(iri)
>>> uri
URI('http://xn--n3h/')
>>> iri.netloc
u'http://\u2603/'
>>> iri.hostname
'\u2603'
>>> iri.port is None
True
>>> iri.path
u'/'
>>> hasattr(iri, '__hash__')
True
>>> iri.replace(port=8000)
IRI(u'http://\u2603:8000/')
>>> iriq = iri.update_query({'foo': u'42'})
>>> iriq
IRI(u'http://\u2603/?foo=42')
>>> iriq.update_query(foo=None)
IRI(u'http://\u2603/')
>>> iriq.query
MultiDict([('foo', '42')])
>>> URI.from_template('http://{domain}/find{?year*}', domain="example.com",
... year=("1965", "2000", "2012"))
URI('http://example.com/find?year=1965&year=2000&year=2012')
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
uricore-0.1.2.tar.gz
(16.1 kB
view details)
File details
Details for the file uricore-0.1.2.tar.gz.
File metadata
- Download URL: uricore-0.1.2.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
390a45f51b73f32cbaa6335c6a6776b3076a84b2b27872927b128d979a20ee14
|
|
| MD5 |
4fdb0c7f250750dda2e3d0f964478d65
|
|
| BLAKE2b-256 |
7c2d6302ff85afbf315257e64eee39131cebf45b94e3c6f98c09fed04634f732
|