Tutorial search

Tutorials
Stuff
Affiliates

Cool Stuff




The fastest way to master the basics of Adobe Photoshop

Click here to find out how

Photoshop Templates


Featured Photoshop templates - professional ready to use designs for your next project.

View all templates

Web Python Tutorial - Python tutorial


People are always asking how to use Python in Web programming. As a general rule the only option to use Python in shared hosts is through CGI. This tutorial is just about how to use CGI with Python.
Category: Python tutorials > Development - Difficulty:


More cool Python tutorials:



Defining Functions
Defining Functions
The ‘def’ command defines, or creates, a function that can be used throughout the program.
Category: Python tutorials > Basics - Difficulty:
Intro to PYX
Intro to PYX
XML is a fairly simple format. It uses plain Unicode text rather than binary encoding, and all the structures are declared with predictable-looking tags. Nonetheless, there are still enough rules in the XML grammar that a carefully debugged parser is needed to process XML documents -- and every parser imposes its own particular programming style. An alternative is to make XML even simpler. The open-source PYX format is a purely line-oriented format for representing XML documents that allows for much easier processing of XML document contents with common text tools like grep, sed, awk, wc, and the usual UNIX collection.
Category: Python tutorials > XML - Difficulty:
Functional programming in Python
Functional programming in Python
Although users usually think of Python as a procedural and object-oriented language, it actually contains everything you need for a completely functional approach to programming. This article discusses general concepts of functional programming, and illustrates ways of implementing functional techniques in Python.
Category: Python tutorials > Development - Difficulty:
How to use Python's xml_objectify
How to use Python's xml_objectify
This article presents the xml_objectify module. It describes how to use xml_objectify and the advantages of using this "Pythonic" module for working with XML documents as objects.
Category: Python tutorials > XML - Difficulty:
Developing a full-text indexer in Python
Developing a full-text indexer in Python
As the volume of information grows, effective means of locating specific information become ever more crucial. This column discusses the field of full-text indexing, with a focus on the author's public-domain indexer module.
Category: Python tutorials > Searching - Difficulty: