| Package | python3-yarl |
| Source | yarl |
| Version | 1.9.4-1+b1~bpo12+1 |
| Architecture | amd64 |
| Maintainer | Piotr Ożarowski |
| Installed-Size | 207 |
| Depends | python3 (<< 3.12), python3 (>= 3.11~), python3-idna, python3-multidict, python3-typing-extensions | python3-supported-min (>= 3.8), python3:any, libc6 (>= 2.14) |
| Filename | pool/bookworm-dalmatian-backports-nochange/main/y/yarl/python3-yarl_1.9.4-1+b1~bpo12+1_amd64.deb |
| Size | 65488 |
| MD5sum | 2f31c942a6e22cbd67351b160cbcacfc |
| SHA1 | b248ce0344f9abfe1a6d60607fd2b4f313b54806 |
| SHA256 | 1550b3ea1bd45f01f5b310c0cd8b2a9c235ed69a96888782aa8e8c58318624d2 |
| Section | python |
| Priority | optional |
| Homepage | https://github.com/aio-libs/yarl/ |
| Description | yet another URL library for Python
URL is constructed from `str`:
.
>>> from yarl import URL
>>> url = URL('https://www.python.org/~guido?arg=1#frag')
>>> url
URL('https://www.python.org/~guido?arg=1#frag')
.
All URL parts: scheme, user, passsword, host, port, path, query and fragment
are accessible by properties:
.
>>> url.scheme
'https'
>>> url.host
'www.python.org'
>>> url.path
'/~guido'
>>> url.query_string
'arg=1'
>>> url.query
>>> url.fragment
'frag'
.
All URL manipulations produces a new URL object:
.
>>> url.parent / 'downloads/source'
URL('https://www.python.org/downloads/source')
.
Strings passed to constructor and modification methods are automatically
encoded giving canonical representation as result::
.
>>> url = URL('https://www.python.org/путь')
>>> url
URL('https://www.python.org/%D0%BF%D1%83%D1%82%D1%8C')
.
Regular properties are percent-decoded, use `raw_` versions for getting
encoded strings:
.
>>> url.path
'/путь'
.
>>> url.raw_path
'/%D0%BF%D1%83%D1%82%D1%8C'
.
Human readable representation of URL is available as `.human_repr()`:
.
>>> url.human_repr()
'https://www.python.org/путь' |
| Description-md5 | |