How to Install and Uninstall python310-pytidylib Package on openSuSE Tumbleweed

Last updated: June 26,2024

1. Install "python310-pytidylib" package

Please follow the steps below to install python310-pytidylib on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python310-pytidylib

2. Uninstall "python310-pytidylib" package

In this section, we are going to explain the necessary steps to uninstall python310-pytidylib on openSuSE Tumbleweed:

$ sudo zypper remove python310-pytidylib

3. Information about the python310-pytidylib package on openSuSE Tumbleweed

Information for package python310-pytidylib:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python310-pytidylib
Version : 0.3.2-2.11
Arch : noarch
Vendor : openSUSE
Installed Size : 27.2 KiB
Installed : No
Status : not installed
Source package : python-pytidylib-0.3.2-2.11.src
Upstream URL : http://countergram.com/open-source/pytidylib/
Summary : Python wrapper for HTML Tidy (tidylib) on Python 2 and 3
Description :
`PyTidyLib`_ is a Python package that wraps the `HTML Tidy`_ library. This
allows you, from Python code, to "fix" invalid (X)HTML markup. Some of the
library's many capabilities include:
* Clean up unclosed tags and unescaped characters such as ampersands
* Output HTML 4 or XHTML, strict or transitional, and add missing doctypes
* Convert named entities to numeric entities, which can then be used in XML
documents without an HTML doctype.
* Clean up HTML from programs such as Word (to an extent)
* Indent the output, including proper (i.e. no) indenting for ``pre`` elements,
which some (X)HTML indenting code overlooks.
Small example of use
====================
The following code cleans up an invalid HTML document and sets an option::
from tidylib import tidy_document
document, errors = tidy_document('''

fõo ''',
options={'numeric-entities':1})
print document
print errors