HTML Tools Python scripts - Top 4 Download

HTML Tools Python script downloads

HTMLTags

The HTMLTags module defines a class for each valid HTML tag, written in uppercase letters. To create a piece of HTML, the general syntax is :  t = TAG(innerHTML, key1=val1,key2=val2,...) . ...
Python

HTML Page Scraping

HTML Page Scraping script allows you to scrap html pages. ...
Python

Grabbing text between HTML tags

Grabbing text between HTML tags script allows you to grab the text contained in various html tags. ...
Python

Simple Application of htmllib for Parsing HTML

This script shows: how to derive a class from NullWriter that accumulates text from the body of an HTML page, how to derive a class from HTMLParser that retains metatag information, how to instantiate these classes and display a typical result of using them. ...
Python

z html

In this script two classes are provided, HTML_Table and HTML_Month. HTML_Table can manage the generation of a table in HTML format. HTML_Month builds on top of HTML_Table and expands on its capabilities. It allows to create dynamically tables that have the look of the selected month. Requirements: · z_matrix ...
Python

HTML Templates Script

This script consists of two classes usable for managing html templates, applicable to output from a CGI. ...
Python

Summarizing XHTML

This module provides a function to summarize a XHTML string - that is, shorten it so it is has no more than a given amount of words while keeping XHTML (or, hopefully, any XML) tags intact. ...
Python

Unroll a sequence into an HTML unordered list

This script simply takes a single-dimension sequence and converts into into an HTML unordered list. This function makes it simple to present the contents of a sequence on the web in an neat fashion. ...
Python

Using MSHTML to Parse HTML

MSHTML is the COM component used by Internet Explorer to parse HTML pages (since version 4 of IE). This script shows you how to use this component independently of IE. ...
Python