Tutorial search

Tutorials
Stuff
Affiliates

Photoshop Templates


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

View all templates

Intro to PYX - Python tutorial


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:

Added on11.03.2008
Total clicks43
Tutorial Rating0
Tutorial Difficulty0

More cool Python tutorials:



Intro to Python Generators
Intro to Python Generators
Generators are a very cool Python abstraction that allows you to greatly simplify control flow and can also lead to much lower memory consumption.
Category: Python tutorials > Basics - Difficulty:
XML Processing with Python
XML Processing with Python
This article illustrates the principle features of the Python language, and then examine the XML processing capabilities of Python.
Category: Python tutorials > XML - Difficulty:
Python 201 -- (Slightly) Advanced Python Topics
Python 201 -- (Slightly) Advanced Python Topics
This document is a syllabus for a second course in Python programming. This course contains discussions of several advanced topics that are of interest to Python programmers.
Category: Python tutorials > Basics - Difficulty:
Pygame in 10 Easy Steps
Pygame in 10 Easy Steps
This is a line-by-line tutorial that will guide you through the basics of creating a simple game using the popular Pygame library. If you know Python and want to learn how to make games, start here!
Category: Python tutorials > Development - Difficulty:
Dictionaries Part 1
Dictionaries Part 1
A dictionary is a type of list with two parts: keys and values. The keys are used to find values. Keys and values are analogous in a dictionary to words and definitions, or in a phonebook to names and numbers.
Category: Python tutorials > Basics - Difficulty: