Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nijel/utidylib

HTML Tidy Python Library
https://github.com/nijel/utidylib

html python tidy

Last synced: 20 days ago
JSON representation

HTML Tidy Python Library

Awesome Lists containing this project

README

        

uTidylib
========

.. image:: https://github.com/nijel/utidylib/actions/workflows/test.yml/badge.svg
:target: https://github.com/nijel/utidylib/actions/workflows/test.yml
:alt: Build Status

.. image:: https://codecov.io/gh/nijel/utidylib/branch/master/graph/badge.svg
:target: https://codecov.io/gh/nijel/utidylib
:alt: Coverage Status

.. image:: https://readthedocs.org/projects/utidylib/badge/?version=latest
:target: http://utidylib.readthedocs.org/en/latest/
:alt: Documentation

.. image:: https://img.shields.io/pypi/v/uTidylib
:target: https://pypi.org/project/uTidylib/
:alt: PyPI - Version

This is uTidylib, the Python wrapper for the HTML cleaning
library named TidyLib. It supports both original Tidy and new
HTML5 enabled Tidy .

The package is available on PyPI .

Once installed, there are two ways to get help. The simplest is:

.. code-block:: sh

$ python
>>> import tidy
>>> help(tidy)
. . .

Then, of course, there's the API documentation, which
is available at .

10 Second Tutorial
------------------

.. code-block:: pycon

>>> import tidy
>>> print(
... tidy.parseString(
... "Hello Tidy!",
... output_xhtml=1,
... add_xml_decl=1,
... indent=1,
... tidy_mark=0,
... doctype="transitional",
... )
... )







Hello Tidy!

Good luck!