Voice recognition

Filed under: Addons 
Tags:

This article describes how to perform voice recognition in Python using the 3rd party pywin32 library along with the Microsoft Speech SDK.
Read more

NetBeans IDE + Vizard

Filed under: Addons 
Tags:

NetBeans IDE is a free cross-platform IDE that supports many programming languages, including Python. This article describes how to configure NetBeans IDE to run Vizard scripts.
Read more

Wing IDE + Vizard

Filed under: Addons 
Tags:

Wing IDE is a commercial cross-platform Python IDE. This article describes how to configure Wing IDE to run Vizard scripts.
Read more

Komodo IDE + Vizard

Filed under: Addons 
Tags:

Komodo is a cross-platform IDE that supports Python. It comes in a free and commercial version. This article describes how to configure Komodo to run Vizard scripts.
Read more

Eclipse IDE + Vizard

Filed under: Addons 
Tags:

Eclipse is a free open-source IDE that supports many programming languages. The Pydev addon for Eclipse enables Python support within the IDE. This article describes how to configure Eclipse to run Vizard scripts.
Read more

pywin32

Filed under: Addons 
Tags: ,

The pywin32 package provides access to various Windows APIs within Python. These APIs can be used to create UI objects (windows, dialogs, etc..), interface to native or 3rd party libraries using COM, access low-level OS functionality, and much more.

Read more

pySerial

Filed under: Addons 
Tags: ,

The pySerial module is a Python add-on that provides access to the serial port.

Read more

matplotlib

Filed under: Addons 
Tags: , ,

Matplotlib is a library with a very 'Matlab' like environment for generating publication quality figures. You can output to raster formats (e.g., PNG, TIFF, JPG) immediately in a pop-up window or to vector (e.g, EPS, PS) formats that are saved as files. The style of graphs and syntax for creating them, especially when combined with the added Python language constructs through NumPy will be very familiar to users of Matlab.
Read more

Psyco – Just in time compiler

Filed under: Addons 
Tags:

Psyco is similar to just-in-time (JIT) compilers that have been developed for other languages. It works by translating blocks of Python code into machine code on the fly, resulting in faster run times for your programs.
Read more

NumPy

Filed under: Addons 
Tags:

NumPy is a package that provides support for large multi-dimensional arrays and matrices in Python. This is essential for anyone doing scientific computing with the Python language.
Read more

Next Page »