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:

un'altra libreria per URL per Python

L'URL viene costruito da "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')

Tutte le parti dell'URL come schemi, parti, password, host, porte, percorsi, interrogazioni e frammenti sono accessibili tramite proprietà:

 >>> url.scheme
 'https'
 >>> url.host
 'www.python.org'
 >>> url.path
 '/~guido'
 >>> url.query_string
 'arg=1'
 >>> url.query
 <MultiDictProxy('arg': '1')>
 >>> url.fragment
 'frag'

Tutte le manipolazioni dell'URL producono un nuovo oggetto URL:

 >>> url.parent / 'downloads/source'
 URL('https://www.python.org/downloads/source')

Le stringhe passate al costruttore e ai metodi di modifica vengono automaticamente codificate fornendo come risultato una rappresentazione canonica:

 >>> url = URL('https://www.python.org/путь')
 >>> url
 URL('https://www.python.org/%D0%BF%D1%83%D1%82%D1%8C')

Le proprietà regolari sono decodificate con simbolo di percentuale, utilizzare le versioni "raw_" per ottenere stringhe codificate:

 >>> url.path
 '/путь'

 >>> url.raw_path
 '/%D0%BF%D1%83%D1%82%D1%8C'

La rappresentazione dell'URL in forma comprensibile dalle persone è disponibile come ".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]