This script is a Python implementation of few lines of C-code that get useful information about current working console on Windows. It may be useful for console application to proper formatting output. Recipe need ctypes package to be installed. When use handle of stdout for determining size of console and connect output of ...
This script allows you to run a Windows backup utility, with remote copy, and auto cleanup. It uses zip libs. It could be used in a production network environment and works very well dumping both target files and remote target files over the network so you are not limited to saving ...
This class can be used to write code that will parse command line options for an application by invoking one of the standard Python library command argument parser modules optparse or getopt. The class first tries to use optparse. It it is not there (< Python 2.3), it invokes getopt. However, ...
DrPython is a highly customizable, extensible editor/environment for developing programs written in the Python programming Language. It is implemented in wxPython. Features: - Cross Platform - Works anywhere wxPython works, adopts the native look and feel of the host os. - Built with Scintilla - Syntax Highlighting and Styling Built ...
PDFMap is both a command line tool, a CGI script and a Python language module, designed to make the automated generation of very high quality interactive maps in the PDF format easy. PDFMap can place different objects on a rasterized map background, scale and orient them correcly, and make them clickable ...
The BuildBot is a system to automate the compile/test cycle required by most software projects to validate code changes. By automatically rebuilding and testing the tree each time something has changed, build problems are pinpointed quickly, before other developers are inconvenienced by the failure.The guilty developer can be identified and harassed ...
PyChecker is a tool for finding bugs in python source code. It finds problems that are typically caught by a compiler for less dynamic languages, like C and C . Because of the dynamic nature of python, some warnings may be incorrect; however, spurious warnings should be fairly infrequent. PyChecker works ...
IDLEfork project was an official experimental development fork of Python's small, light, 'bundled' integrated development environment, IDLE.The objective was to develop a version of IDLE which had an execution environment which could be initialized prior to each run of user code. ...
Gaphor is an easy to use modeling environment. This means that you are able to create nice UML diagrams for documentation and to assist you with design decisions.Gaphor will help you create your applications. Features: - Gaphor has a UML 2.0 compliant data model. This guarantees future compatibility with other modeling ...
PyQwt is a set of Python bindings for the Qwt C class library which extends the Qt framework with widgets for scientific and engineering applications. It provides a widget to plot 2-dimensional data and various widgets to display and control bounded or unbounded floating point values. ...
Quasi is Yet Another Python Shell, but with a twist. It supports pluggable "contexts" for non-Python commands, such as OS commands, MySQLdb queries and external programs. ...
Gambit is a library of game theory software and tools for the construction and analysis of finite extensive and strategic games. Gambit provides: - A graphical user interface, based upon the wxWidgets library, providing a common interface with native look-and-feel across platforms. - A Python API for scripting applications. ...
Faces is a powerful and free project management tool. faces stands for flexible, automated, calculating, extendible, simulating. It is based on python, an easy to learn and powerful programming language. ...
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. ...