Source Code Online Home Categories Top Code New Code Submit Code
Search
New Code
Charming Python: Parsing with the SimpleParse module
Extending Python and Zope in C
Top Code
Extending Python and Zope in C
Charming Python: Parsing with the SimpleParse module
Python > Tips and Tutorials > Miscellaneous
Source List

Code 1-2 of 2   


All programmers need to identify parts and structures that exist inside textual documents: log files, configuration files, delimited data, and more free-form (but still semi-structured) report formats. There are many parsing tools that have been...





To extend Zope, you first extend Python. While extending Python is not brain surgery, it's no walk in the park either. There are two basic components to a Python extension. The first is obviously the C code. I'll cover that in a minute. The other...