Database
A database is a structured collection of records or data.
Language
Python
Remove
Platform
Any
License
Any
A Google Custom Search Engine (CSE) now makes it possible to quickly find relevant language and library API reference documentation. The search engine focuses specifically on popular industry...
Amazon SimpleDB (SDB) is a fast, scalable real-time dataset indexing and querying framework that makes it easy to store and retrieve structured data for Amazon Web Services-based applications in the...
Databases are happy to handle many parallel requests. However, active processes (threaded or forked) almost inevitably eat up a valuable resource: database connections. Learn how to use the antipool...
Using the Persistent Storage module, Python objects can store themselves in relational database systems. The Persistent Storage module abstracts and hides the underlying database interface, such as...
Rather than try to introduce Python thoroughly or teach it rigorously, this article jumps right into creating a useful sample application while demonstrating the aspects of Python most important for...
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...
Some programmers see the advantage of combining Python and Objective-C in the same environment, believing that a bridge between the two languages provides tremendous power and advantages to either...
Python is one of the more popular Open Source programming languages, owing largely to its own native expressiveness as well as to the variety of support modules that are available to extend its...
You don't have to keep writing the same old database access code over and over again instead, it's simple to roll your own database wrapper and use Python syntax to retrieve, search, and update data....
The Python programming language provides an increasing amount of support for XML technologies. This document attempts to introduce some basic XML processing concepts to readers who have not yet...
The goal of this article is to build a podcasting tool using Pygtk (Python + Glade + Pygtk). This tool, named BitPodder, is a podcasting tool allowing getting .torrent files from RSS Feeds. By...
Many people use Python because, like other scripting languages, it is a portable, platform-independent and general-purpose language that can perform the same tasks as the database-centric,...
XML is the eXtensible Markup Language, a subset of SGML intended to allow the creation and processing of application-specific markup languages. Python makes an excellent language for processing XML...
This tutorial on SQL is meant to demonstrate the small amount of know-how you need to write effective database programs. By looking at any SQL reference book, it is obvious that there is vastly more...
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...
XML can be used for describing data without needing a database. However, this leaves us with the problem of interpreting the data embedded within the XML. This is where Python comes to the rescue, as...
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...