Skip to main content

URI parsing, classification and composition

Project description

Latest PyPI version Documentation build status CI build status Test coverage License Code style: black

This module provides RFC 3986 compliant functions for parsing, classifying and composing URIs and URI references, largely replacing the Python Standard Library’s urllib.parse module.

>>> from uritools import uricompose, urijoin, urisplit, uriunsplit
>>> uricompose(scheme='foo', host='example.com', port=8042,
...            path='/over/there', query={'name': 'ferret'},
...            fragment='nose')
'foo://example.com:8042/over/there?name=ferret#nose'
>>> parts = urisplit(_)
>>> parts.scheme
'foo'
>>> parts.authority
'example.com:8042'
>>> parts.getport(default=80)
8042
>>> parts.getquerydict().get('name')
['ferret']
>>> parts.isuri()
True
>>> parts.isabsuri()
False
>>> urijoin(uriunsplit(parts), '/right/here?name=swallow#beak')
'foo://example.com:8042/right/here?name=swallow#beak'

For various reasons, urllib.parse and its Python 2 predecessor urlparse are not compliant with current Internet standards. As stated in Lib/urllib/parse.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 replacements for the most commonly used functions found in urllib.parse. It also includes functions for distinguishing between the different forms of URIs and URI references, and for conveniently creating URIs from their individual components.

Installation

uritools is available from PyPI and can be installed by running:

pip install uritools

Project Resources

License

Copyright (c) 2014-2023 Thomas Kemmer.

Licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uritools-4.0.1.tar.gz (23.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

uritools-4.0.1-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file uritools-4.0.1.tar.gz.

File metadata

  • Download URL: uritools-4.0.1.tar.gz
  • Upload date:
  • Size: 23.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.6

File hashes

Hashes for uritools-4.0.1.tar.gz
Algorithm Hash digest
SHA256 efc5c3a6de05404850685a8d3f34da8476b56aa3516fbf8eff5c8704c7a2826f
MD5 756ebb6b54b5bc280e5bb3dda5bd8134
BLAKE2b-256 4d8bf49813253c29c49a3767256cbe94a2450d3377953fedcd8e62be200c0ba0

See more details on using hashes here.

File details

Details for the file uritools-4.0.1-py3-none-any.whl.

File metadata

  • Download URL: uritools-4.0.1-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.6

File hashes

Hashes for uritools-4.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d122d394ed6e6e15ac0fddba6a5b19e9fa204e7797507815cbfb0e1455ac0475
MD5 2f12ad33e4778a6ae79504ae5857c0f3
BLAKE2b-256 7ad8a9b93cd612d1b0b1b1868c01435e82109cfb886b18ea482f74fb7b1f83a9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page