Python
Python is a general-purpose, very high-level programming language. Its design philosophy emphasizes programmer productivity and code readability.
Application
Components and Libraries
Remove
Platform
Any
License
Any
Setuptools framework, a side project of PEAK, provides easier package management and distribution than distutils. Setuptools lets you package your libraries in a single-file archive called an "egg,"...
In this tutorial I'm going to teach you how to use the Python C API. I'm writing this tutorial as I saw that there are merely a few resources on the Internet which will show you how this thing goes...
Fredrik Lundh's ElementTree module is an increasingly popular API for light-weight and fast manipulation of XML documents within Python. In this installment, David contrasts ElementTree with several...
Suppose you want to make the systematic naming function available to other programs over the network. There is a huge number of ways to do it. You can program directly to the socket layer or use one...
The pyTTS module wraps the text-to-speech services of the Microsoft Speech API (SAPI) for use in Python. It relies on the win32com library for obtaining and communicating with the SAPI COM interfaces...
This short tutorial provides agentle introduction to the Python language. We will focus primarily on features of the language particularly useful for processing in the domain of computational...
The Portable Document Format (PDF) lets you create documents that look exactly the same on every platform. Sometimes a PDF document needs to be generated dynamically, however, and that can be quite a...
Flickr provides a set of HTTP-based APIs for accessing features both as a publisher and as a viewer of pictures. You get to choose between XML-RPC, REST (simple XML over HTTP), or SOAP, and the...
This is the 'sister' page to Bill Wilkinson's page on using Python with Microsoft's Data Access Objects (DAO). It is intended to give the basics on using Python to connect to an MS Access 2000...
I have been playing with Python and COM on Windows 2000. Whilst the built-in help in PythonWin does go some way towards explaining the bizarre details of COM and the various common interfaces one...
One of the goals of Jython is to make it as simple as possible
to use existing Java libraries from Python. Example The
following example of an interactive session with Jython shows
how a user...