How to Install and Uninstall python3-pytidylib Package on openSUSE Leap
Last updated: November 07,2024
1. Install "python3-pytidylib" package
Learn how to install python3-pytidylib on openSUSE Leap
$
sudo zypper refresh
Copied
$
sudo zypper install
python3-pytidylib
Copied
2. Uninstall "python3-pytidylib" package
This guide let you learn how to uninstall python3-pytidylib on openSUSE Leap:
$
sudo zypper remove
python3-pytidylib
Copied
3. Information about the python3-pytidylib package on openSUSE Leap
Information for package python3-pytidylib:
------------------------------------------
Repository : Main Repository
Name : python3-pytidylib
Version : 0.3.2-bp155.2.11
Arch : noarch
Vendor : openSUSE
Installed Size : 35.4 KiB
Installed : No
Status : not installed
Source package : python-pytidylib-0.3.2-bp155.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('''
------------------------------------------
Repository : Main Repository
Name : python3-pytidylib
Version : 0.3.2-bp155.2.11
Arch : noarch
Vendor : openSUSE
Installed Size : 35.4 KiB
Installed : No
Status : not installed
Source package : python-pytidylib-0.3.2-bp155.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