Development Tools scripts - Top 4 Download

Development Tools script downloads

MarkupString

This script contains a subclass of String that allows simple handling of simple XML markup. The goal here is to allow a slice of a python markup string to "do the right thing" and preserve formatting correctly. In other words, MarkupString(Hello World)[6:] = "World". ...
Python

mbsa2txt

This script allows you to read the Microsoft Baseline Security Analyzer 1.2.1 XML output and sends it to standard output in a readable text format. ...
Python

Remove whitespace from an XML DOM

When creating a DOM from an XML source, XML parsers are required to consider several conditions when deciding whether to include whitespace-only text nodes. This function ignores all of those conditions and removes all whitespace-only text descendants of the specified node. If the unlink flag is specified, the removed text nodes ...
Python

Ljopml

This is a Python script to generate the OPML feed of your LiveJournal Friends list. ...
Python

Extract text from XML document

This script represents an alternative way of extracting text from a WF XML source. ...
Python

Validating XML with External DTDs using xmlproc

PyXML is a useful package for parsing XML. The xmlval and xmldtd modules let you validate XML docs against an external DTD file. This is a simple, straightforward script that illustrates how to use the xmlval and xmldtd modules for validated XML parsing. ...
Python

Stopwatch in Tkinter

This script is a small implementation of a stopwatch widget in Tkinter. The widget displays a label with minutes:seconds:1/100-seconds. The label is updated every 50 ms, but that can easily be changed. Methods are availble for starting, stopping and resetting the stopwatch. ...
Python

change cvsroot

change_cvsroot  is a simple script written in Python that can switch a working copy of a CVS module (or modules) to another CVS root. ...
Python

Enforcing Referential Integrity with XML Schema

A schema—database, XML, or otherwise—specifies the structure and content of data. For the most part, the XML Schema Recommendation provides mechanisms for validating distinct datum (via simple types) and the structure of data (via complex types). ...

XML Polar Data Format

The eXtensible Markup Language format (XML) is being used by many programs for almost all kind of data handling. In contrast to several other file formats, its main advantages are - well defined language for general data storage and retrieval, - possibility to store hierarchically structured data, - not ...