• home
  • forum
  • my
  • kt
  • download
  • this:1/1 25records  total:22    Start  Previous  Next  Last    goto:
    Intro to PYX
    ON: 2007-08-25 14:49:41
    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.
    14 times | category: [Web Fetching]
    How to use Python's xml_objectify
    ON: 2007-08-25 14:47:00
    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.
    15 times | category: [Web Fetching]
    Introduces the Python xml_pickle object
    ON: 2007-08-25 14:44:24
    As part of the ongoing quest to create a more seamless integration between XML and Python, this article presents the xml_pickle module. The author discusses the design goals and decisions that went into xml_pickle and provides a list of likely uses.
    8 times | category: [Web Fetching]
    XML Processing with Python
    ON: 2007-08-25 14:37:13
    This article illustrates the principle features of the Python language, and then examine the XML processing capabilities of Python.
    21 times | category: [Web Fetching]
    Python Squeezes the Web
    ON: 2007-08-25 14:34:27
    This 5-page tutorial describes how to grab remote web pages and process them locally in Python. Useful for parsing information off the web.
    12 times | category: [Web Fetching]
    Developing a full-text indexer in Python
    ON: 2007-08-25 14:32:09
    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.
    16 times | category: [Searching]
    Writing a simple search engine in Python and MySQL
    ON: 2007-08-25 14:29:28
    This tutorial describes how to to build a simple search engine in Python and MySQL.
    24 times | category: [Searching]
    Free Python IDE
    ON: 2007-08-25 14:28:22
    SPE is a free Python IDE with Blender, Kiki, PyChecker, Remote Debugger, Uml, and wxGlade support.
    16 times | category: [Miscellaneous]
    A quick look at Python modules
    ON: 2007-08-25 14:24:13
    This article introduces the idea of importing Python modules that manage many common and/or special tasks that you would otherwise have to write programming code for. IDLE is featured in this article because of some of its handy features, but you can follow the examples in other ways as well.
    10 times | category: [Miscellaneous]
    Charming Python: Parsing with the SimpleParse module
    ON: 2007-08-25 14:22:35
    Many parsing tools have been written for Python. This column discusses a high-level parsing language built on top of Python. SimpleParse provides an EBNF-style syntax on top of mxTextTools that can greatly clarify the expression of grammars.
    8 times | category: [Miscellaneous]
    Python for the PalmOS
    ON: 2007-08-25 14:21:10
    Pippy is a port of (a subset of) Python to the PalmOS. With Pippy, Python programmers can create custom applications to run on Palm devices, as well as use Pippy as an interactive environment directly on the Palm. This article evaluates the strengths and limitations of Pippy as a means of implementing Palm applications.
    17 times | category: [Miscellaneous]
    Intro to Python Generators
    ON: 2007-08-25 10:41:54
    Generators are a very cool Python abstraction that allows you to greatly simplify control flow and can also lead to much lower memory consumption.
    12 times | category: [Introduction to Python]
    PyGTK/Glade and Matplotlib
    ON: 2007-08-25 10:36:54
    In this tutorial we will create a little application written in PyGTK and we will use Glade to create the graphical use interface (GUI). Another feature of this tutorial is that we will create a bar chart with Matplotlib.
    1 times | category: [Introduction to Python]
    Python 101 - Introduction to Python
    ON: 2007-08-25 10:32:46
    This document is a syllabus for a first course in Python programming. This course contains an introduction to the Python language, instruction in the important and commonly used features of the language, and practical excercises in the use of those features.
    15 times | category: [Introduction to Python]
    Python 201 -- (Slightly) Advanced Python Topics
    ON: 2007-08-25 10:27:17
    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.
    24 times | category: [Introduction to Python]
    Python Babysteps Tutorial
    ON: 2007-08-25 10:23:51
    This is a tutorial to help the non-programmer learn the basics of using Python. When you are done with it, you will be ready to learn this new language, and have no problems figuring out where to find the information you need to go farther
    8 times | category: [Introduction to Python]
    Web Python Tutorial
    ON: 2007-08-25 10:09:20
    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
    39 times | category: [Development]
    Creating a GUI in wxPython using wxGlade
    ON: 2007-08-25 10:07:48
    wxPython is a toolkit for creating cross platform graphical user interfaces (GUI) for the programming language Python. wxGlade is a GUI designer for wxPython
    267 times | category: [Development]
    How to build a website using CherryPy
    ON: 2007-08-25 10:06:17
    How to build a simple website using CherryPy, a pythonic, object-oriented web development framework.
    37 times | category: [Development]
    An advanced GUI library for Python - PyQT
    ON: 2007-08-25 10:05:21
    The Qt toolkit is a widely-used cross-platform GUI toolkit, available for Windows, Linux, Mac OSX, and handheld platforms. QT has a well-structured, but flexible, object-oriented organization, clear documentation, and an intuitive API. This article looks at the Qt library, with a focus on the PyQt bindings that let Python programmers access Qt functionality.
    42 times | category: [Development]
    Functional programming in Python, Part 2
    ON: 2007-08-25 09:35:41
    This column continues the introduction to functional programming (FP) in Python. The introduction to different paradigms of program problem-solving demonstrates several intermediate and advanced FP concepts. Article includes code snipets.
    9 times | category: [Development]
    Functional programming in Python
    ON: 2007-08-25 09:32:51
    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
    1 times | category: [Development]
    this:1/1 25records  total:22    Start  Previous  Next  Last    goto:

    Category

      Development (6)
      Introduction to Python (5)
      Miscellaneous (4)
      Searching (2)
      Web Fetching (5)
      XML and Python (0)