URI Parsing for Humans.
Project description
# urilib
[![Build Status](https://secure.travis-ci.org/core/uricore.png?branch=master)](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.1.tar.gz
(2.4 kB
view details)
File details
Details for the file uricore-0.1.1.tar.gz
.
File metadata
- Download URL: uricore-0.1.1.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 258197e27a5fe96112b341441d3c054910a141b82af393d4f239299969f32125 |
|
MD5 | 2f537ec25a5ca04b5c176254667d6eff |
|
BLAKE2b-256 | 07396535bc9c04f498700567a6be767ac5eff4aaefef2c93707bffafa488431d |