all options
buster  ] [  bullseye  ] [  bookworm  ] [  trixie  ] [  sid  ]
[ Source: yarl  ]

Package: python3-yarl (1.9.4-1 and others)

Links for python3-yarl

Screenshot

Debian Resources:

Download Source Package yarl:

Maintainers:

External Resources:

Similar packages:

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
 <MultiDictProxy('arg': '1')>
 >>> 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/путь'

Other Packages Related to python3-yarl

  • depends
  • recommends
  • suggests
  • enhances

Download python3-yarl

Download for all available architectures
Architecture Version Package Size Installed Size Files
alpha (unofficial port) 1.8.2-3+b1 64.8 kB349.0 kB [list of files]
amd64 1.9.4-1 101.6 kB350.0 kB [list of files]
arm64 1.9.4-1 90.6 kB378.0 kB [list of files]
armel 1.9.4-1 91.0 kB326.0 kB [list of files]
armhf 1.9.4-1 93.4 kB274.0 kB [list of files]
hppa (unofficial port) 1.9.4-1 98.8 kB360.0 kB [list of files]
i386 1.9.4-1 105.2 kB366.0 kB [list of files]
ia64 (unofficial port) 1.9.4-1 113.4 kB581.0 kB [list of files]
m68k (unofficial port) 1.9.4-1 91.8 kB326.0 kB [list of files]
mips64el 1.9.4-1 88.7 kB388.0 kB [list of files]
ppc64 (unofficial port) 1.9.4-1 100.1 kB506.0 kB [list of files]
ppc64el 1.9.4-1 100.9 kB506.0 kB [list of files]
riscv64 1.9.4-1 101.3 kB306.0 kB [list of files]
s390x 1.9.4-1 98.1 kB358.0 kB [list of files]
sh4 (unofficial port) 1.9.4-1 110.8 kB376.0 kB [list of files]
sparc64 (unofficial port) 1.8.2-3+b1 59.0 kB2,145.0 kB [list of files]
x32 (unofficial port) 1.8.2-3+b1 71.0 kB241.0 kB [list of files]