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

Last updated: June 30,2024

1. Install "python39-pytidylib" package

Here is a brief guide to show you how to install python39-pytidylib on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python39-pytidylib

2. Uninstall "python39-pytidylib" package

Please follow the guidelines below to uninstall python39-pytidylib on openSuSE Tumbleweed:

$ sudo zypper remove python39-pytidylib

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

Information for package python39-pytidylib:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python39-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