Index of /ports/www/py-utidy/work/uTidylib-0.2

      Name                    Last modified       Size  Description

[DIR] Parent Directory 22-Jan-2008 03:59 - [TXT] INSTALL.txt 30-Jun-2003 12:09 3k [   ] LICENSE 19-Feb-2004 04:44 1k [   ] MANIFEST.in 19-Feb-2004 07:53 1k [   ] PKG-INFO 24-Feb-2004 06:11 1k [DIR] build/ 14-Jan-2008 18:40 - [   ] gendoc.py 18-Feb-2004 13:51 1k [   ] path.py 30-Jun-2003 12:09 18k [   ] path.pyc 14-Jan-2008 18:40 25k [   ] setup.py 24-Feb-2004 06:10 3k [DIR] tidy/ 14-Jan-2008 18:39 -

This is uTidylib, the Python wrapper for the HTML cleaning
library named TidyLib: http://tidy.sf.net .  Python 2.3 or later
is required to use uTidylib.  Repeat, Python 2.3 or later is
*required* to use uTidylib.

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

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

Then, of course, there's the epydoc-generated API documentation, which
is available at site-packages/tidy/apidoc/index.html .

__________________

10 Second Tutorial
__________________

>>> import tidy
>>> options = dict(output_xhtml=1, add_xml_decl=1, indent=1, tidy_mark=0)
>>> print tidy.parseString('<Html>Hello Tidy!', **options)
<?xml version="1.0" encoding="us-ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title></title>
  </head>
  <body>
    Hello Tidy!
  </body>
</html


Good luck!