Free scripts download - Python scripts - page 3

LATEST free Python script downloads

Custom Made CGI Module

Custom Made CGI Module represents the modified version of the built in CGI module. ...
Python

Lavengro

Lavengro is a cross-platform, console-based vocabulary-test engine. It uses text files as its tests. The tests themselves are created by you. It has a tutor mode, a test mode, and a CBT learning mode. ...
Python

A higher level struct module

This script provides a higher level wrapper around the struct module. It provides a more convenient syntax for defining and using structs, and adds additional features such as: - Allows embedding structures within other structures - Allows defining arrays of items (or other structures) - Class based syntax, allowing access and ...
Python

re2 library

The re2 library provides a hierarchical named groups extension to the standard python re library. re2 extracts a hierarchy of named groups matches from a string, rather than the flat, incomplete dictionary that the standard re module returns. tandard r; ...
Python

ORBit Python

Python is an object-oriented and dynamically typed language. These two features make it quite ideal for seamless CORBA bindings. Following the approach used in CORBA::ORBit (the Perl bindings), ORBit-Python does away with the need for an IDL compiler.ORBit-Python also takes the dynamic approach one step further by automatically discovering available IDL ...
Python

PythonCard

PythonCard is a GUI construction kit for building cross-platform desktop applications on Windows, Mac OS X, and Linux, using the Python language. The PythonCard motto is "Simple things should be simple and complex things should be possible." PythonCard is for you if you want to develop graphical applications quickly and easily ...
Python

pyFLTK

pyFLTK is a Python wrapper for the Fast Light Tool Kit cross-platform graphical user-interface library. TCL, Guile, and Java support should not be that hard to add (this is left as an exercise for the reader).A utility named flconvert is also provided that allows for the conversion of fluid files to Python code. ...
Python

Boa Constructor

Boa Constructor is a cross platform Python IDE and wxPython GUI Builder. It offers visual frame creation and manipulation, an object inspector, many views on the source like object browsers, inheritance hierarchies, doc string generated html documentation, an advanced debugger and integrated help. Zope support: Object creation and editing. Cut, copy, ...
Python

Pytz

pytz module brings the Olson time zone database into Python. This library allows accurate and cross platform timezone calculations using Python 2.3 or higher. It also solves the issue of ambiguous times at the end of daylight savings, which you can read more about in the Python Library Reference (datetime.tzinfo). ...
Python

pySerial

This module encapsulates the access for the serial port. It provides backends for Python running on Windows, Linux, BSD (possibly any POSIX compilant system) and Jython. The module named "serial" automatically selects the appropriate backend. ...
Python

Pexpect

Pexpect is a pure Python module for spawning child applications; controlling them; and responding to expected patterns in their output. Pexpect works like Don Libes' Expect. Pexpect allows your script to spawn a child application and control it as if a human were typing commands. Pexpect can be used for automating ...
Python

PyFlag

FLAG (Forensic and Log Analysis GUI) was designed to simplify the process of log file analysis and forensic investigations. Often, when investigating a large case, a great deal of data needs to be analysed and correlated.PyFlag uses a database as a backend to assist in managing the large volumes of data. ...
Python

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

Launch a program based on file extension

This script associates or launches an action to be performed by the os based on filename extension. For example, assoc.py -e test.c will launch emacs. The optional extra_args allows you to add additional settings to the command associated with the file extension. More complicated actions may require Python functions instead of ...
Python