uri icon indicating copy to clipboard operation
uri copied to clipboard

A type to represent, query, and manipulate a Uniform Resource Identifier.

Results 13 uri issues
Sort by recently updated
recently updated
newest added

Utilize [`urllib.request.urlopen`](https://docs.python.org/3/library/urllib.request.html#urllib.request.urlopen) to implement a generic `open` method.

2.enhancement
need:example
need:documentation
need:test
area:api-compat

Example from the docs: ```python base = URI("https://example.com/about/us") cdn = base // "cdn.example.com" # https://cdn.example.com/ assert cdn == URI(str(cdn)) # boom! ```

1.bug

Example from the docs: ```python from uri import URI base = URI("https://example.com/about/us") cdn = base // "cdn.example.com" cdn.relative # boom! ``` Fails with: ``` Traceback (most recent call last): File...

1.bug