How to Install and Uninstall python-yarl-doc Package on Kali Linux

Last updated: May 17,2024

1. Install "python-yarl-doc" package

In this section, we are going to explain the necessary steps to install python-yarl-doc on Kali Linux

$ sudo apt update $ sudo apt install python-yarl-doc

2. Uninstall "python-yarl-doc" package

Please follow the guidelines below to uninstall python-yarl-doc on Kali Linux:

$ sudo apt remove python-yarl-doc $ sudo apt autoclean && sudo apt autoremove

3. Information about the python-yarl-doc package on Kali Linux

Package: python-yarl-doc
Source: yarl
Version: 1.8.2-3
Installed-Size: 445
Maintainer: Piotr Ożarowski
Architecture: all
Depends: libjs-sphinxdoc (>= 5.2)
Size: 76416
SHA256: d7f387973b2a630a4e954a9f1eda93e08c0a52dd5e6f08858d917b7c4f9b66a5
SHA1: 5b803b46ad6a316dc06b3294ed16602714c9522c
MD5sum: cec7bebd224c76a1e61a428f877b2ab0
Description: documentation for the yarl Python library
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/путь'
.
This package provides documentation for yarl
Description-md5:
Multi-Arch: foreign
Homepage: https://github.com/aio-libs/yarl/
Section: doc
Priority: optional
Filename: pool/main/y/yarl/python-yarl-doc_1.8.2-3_all.deb