全部搜索项
buster  ] [  bullseye  ] [  bookworm  ] [  trixie  ] [  sid  ]
[ 源代码: yarl  ]

软件包:python3-yarl(1.13.1-1 以及其他的)

python3-yarl 的相关链接

Screenshot

Debian 的资源:

下载源码包 yarl

维护小组:

外部的资源:

相似软件包:

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/путь'

其他与 python3-yarl 有关的软件包

  • 依赖
  • 推荐
  • 建议
  • 增强

下载 python3-yarl

下载可用于所有硬件架构的
硬件架构 版本 软件包大小 安装后大小 文件
alpha (非官方移植版) 1.13.1-1 90.8 kB354.0 kB [文件列表]
amd64 1.13.1-1 95.8 kB343.0 kB [文件列表]
arm64 1.13.1-1 88.3 kB351.0 kB [文件列表]
armel 1.13.1-1 87.2 kB315.0 kB [文件列表]
armhf 1.13.1-1 89.5 kB275.0 kB [文件列表]
hppa (非官方移植版) 1.13.1-1 92.2 kB340.0 kB [文件列表]
i386 1.13.1-1 97.2 kB351.0 kB [文件列表]
ia64 (非官方移植版) 1.9.4-1 113.4 kB581.0 kB [文件列表]
m68k (非官方移植版) 1.13.1-1 85.2 kB315.0 kB [文件列表]
mips64el 1.13.1-1 86.3 kB359.0 kB [文件列表]
ppc64 (非官方移植版) 1.13.1-1 95.0 kB479.0 kB [文件列表]
ppc64el 1.13.1-1 95.2 kB479.0 kB [文件列表]
riscv64 1.13.1-1 95.3 kB299.0 kB [文件列表]
s390x 1.13.1-1 91.7 kB343.0 kB [文件列表]
sh4 (非官方移植版) 1.13.1-1 101.8 kB348.0 kB [文件列表]
sparc64 (非官方移植版) 1.13.1-1 84.6 kB2,214.0 kB [文件列表]
x32 (非官方移植版) 1.13.1-1 96.8 kB331.0 kB [文件列表]