experimental/cuda-ubi9/: uri-template-1.3.0 metadata and description

Simple index

RFC 6570 URI Template Processor

author_email Peter Linss <pypi@linss.com>
classifiers
  • Intended Audience :: Developers
  • License :: OSI Approved :: MIT License
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Topic :: Software Development :: Libraries :: Python Modules
description_content_type text/markdown
keywords config
license MIT License
project_urls
  • homepage, https://gitlab.linss.com/open-source/python/uri-template
provides_extras dev
requires_dist
  • types-PyYAML ; extra == 'dev'
  • mypy ; extra == 'dev'
  • flake8 ; extra == 'dev'
  • flake8-annotations ; extra == 'dev'
  • flake8-bandit ; extra == 'dev'
  • flake8-bugbear ; extra == 'dev'
  • flake8-commas ; extra == 'dev'
  • flake8-comprehensions ; extra == 'dev'
  • flake8-continuation ; extra == 'dev'
  • flake8-datetimez ; extra == 'dev'
  • flake8-docstrings ; extra == 'dev'
  • flake8-import-order ; extra == 'dev'
  • flake8-literal ; extra == 'dev'
  • flake8-modern-annotations ; extra == 'dev'
  • flake8-noqa ; extra == 'dev'
  • flake8-pyproject ; extra == 'dev'
  • flake8-requirements ; extra == 'dev'
  • flake8-typechecking-import ; extra == 'dev'
  • flake8-use-fstring ; extra == 'dev'
  • pep8-naming ; extra == 'dev'
requires_python >=3.7
File Tox results History
uri_template-1.3.0-py3-none-any.whl
Size
11 KB
Type
Python Wheel
Python
3

uri-template

An implementation of RFC 6570 URI Templates.

This packages implements URI Template expansion in strict adherence to RFC 6570, but adds a few extensions.

RFC 6570 Extensions

Non-string Values

RFC 6570 is silent regarding variable values that are not strings, lists, associative arrays, or null.

This package handles value types as follows:

Nested Structures

This package handles variable values with nested structure, for example, lists containing other lists or associative arrays, or associative arrays containing lists or other associative arrays.

Nested values for variables that do not use the array modifier ('[]') are treated as follows:

Nested values for variables that use the array modifier extend the variable name with the value's index or key written as an array subscript, e.g. "foo[0]" or "foo[bar]".

Default Values

This package allows default string values for variables per early drafts of RFC 6570. e.g. "{foo=bar}" will expand to "bar" if a value for foo is not given.

List and associtative array default values are not supported at this time.

Specifying Value Keys

Sometimes a URI Template is used to provide glue between an API and a given set of data. In this case, the names of values needed in the final URL may not match the data provided for the expansion.

This package allows specifying the key used to pass data into the template. e.g. "{?foo/bar}" will expand to "?foo="

Partial expansion

This package allows partial expansion of URI Templates.

In a partial expansion, missing values preseve their expansion in the resultant output. e.g. a partial expansion of "{one}/{two}" with a value for one of "foo" and two missing will result in: "foo/{two}".

In order to allow partial expansions to preserve value joiners with expanded output, expansions accept an optional "trailing joiner" of ",", ".", "/", ";", or "&", if this joiner is present after all variables, it will be appended to the output of the expansion and will suppress the output prefix. e.g.: "{#one,two}" with a missing value for one and a value of "bar" for two, will partially expand to: "#{#one,}bar", which when provided with a value of "foo" for one will expand to "#foo,bar"

Some partial expansions that have some output, but have missing values, will convert the remaining variables to a different type of expansion so that further expansions will produce the same output as if all values were originally present.

In order to preserve the resultant value of templates that are paritally expanded, the following additional Expression Expansions are supported:

Comma Expansion: {,var}

Similar to Label Expansion with Dot-Prefix, Comma Expansion prefixes the expansion output with a single comma ",".

Reserved Comma Expansion: {,+var}

Similar to Comma Expansion, Reserved Comma Expansion prefixes the expansion output with a single comma ",", but otherwise performs a Reserved Expansion ({+var}).

API

The package provides three functions:

uri_template.expand(template: str, **kwargs) -> (str | None): ...

Expand the given template, skipping missing values per RFC 6570.

Returns None if the template is invalid or expansion fails.

uri_template.partial(template: str, **kwargs) -> (str | None): ...

Partially expand the given template, replacing missing variables with further expansions.

Returns None if the template is invalid or expansion fails.

uri_template.validate(template: str) -> bool: ...

Return True if the template is valid.


And the following classes:

uri_template.URITemplate

URITemplate(template: str)

Construct a URITemplate for a given template string.

Raises ExpansionInvalid, ExpansionReserved, or VariableInvalid if the template is invalid or unsupported.

URITemplate.variables: Iterable[Variable]

All variables present in the template. Duplicates are returned once, order is preserved.

URITemplate.variable_names: Iterable[str]

The names of all variables present in the template. Duplicates are returned once, order is preserved.

URITemplate.expanded: bool

Determine if template is fully expanded.

URITemplate.expand(**kwargs) -> str

Returns the result of the expansion, skips missing variables.

Raises ExpansionFailed if the expansion fails due to a composite value being passed to a variable with a prefix modifier.

URITemplate.partial(**kwargs) -> URITemplate

Expand the template, replacing missing variables with further expansions.

Raises ExpansionFailed if the expansion fails due to a composite value being passed to a variable with a prefix modifier.

URITemplate.str() -> str

Convert the URITemplate object back into its original string form.


uri_template.Variable

Variable(var_spec: str)

Construct a Variable.

Variable.name: str

The name of the variable

Variable.max_length: int

The speicified max length, or 0.

Variable.explode: bool

Explode modifier is present.

Variable.array: bool

Array modifier is present.

Variable.default: (str | None)

Specified default value, or None.

Variable.str() -> str

Convert the variable back to its original string form.


And the following exceptions:

uri_template.ExpansionInvalid

Expansion specification is invalid.

Raised by URITemplate constructor.

uri_template.ExpansionReserved

Expansion contains a reserved operator.

Raised by URITemplate constructor.

uri_template.VariableInvalid

Variable specification is invalid.

Raised by URITemplate constructor.

uri_template.ExpansionFailed

Expansion failed, currently only possible when a composite value is passed to a variable with a prefix modifier.

Raised by URITemplate.expand() or URITemplate.partial() methods.

Installation

Install with pip:

pip install uri-template