How to Install and Uninstall python36-pytidylib Package on openSuSE Tumbleweed
Last updated: January 26,2025
Deprecated! Installation of this package may no longer be supported.
1. Install "python36-pytidylib" package
This guide let you learn how to install python36-pytidylib on openSuSE Tumbleweed
$
sudo zypper refresh
Copied
$
sudo zypper install
python36-pytidylib
Copied
2. Uninstall "python36-pytidylib" package
This is a short guide on how to uninstall python36-pytidylib on openSuSE Tumbleweed:
$
sudo zypper remove
python36-pytidylib
Copied
3. Information about the python36-pytidylib package on openSuSE Tumbleweed
Information for package python36-pytidylib:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python36-pytidylib
Version : 0.3.2-1.11
Arch : noarch
Vendor : openSUSE
Installed Size : 35,4 KiB
Installed : No
Status : not installed
Source package : python-pytidylib-0.3.2-1.11.src
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('''
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python36-pytidylib
Version : 0.3.2-1.11
Arch : noarch
Vendor : openSUSE
Installed Size : 35,4 KiB
Installed : No
Status : not installed
Source package : python-pytidylib-0.3.2-1.11.src
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