Assorted Links
Making Python Fast
[Make python fast]
Compiling Python Code
- [Pyrex] lets you write code that mixes Python and C data types any way you want, and compiles it into a C extension for Python.
Creating C++ extensions for Python
Gui Programming
- [Opendocs] has some books availiable for on-line reading about using python and it´s Qt binding to make GUI applications
XML and HTML Parsing
Simulation
It seems that python is indeed a good tool to perform
NetworkSimulation. Most of the documents I read regarding this subject and python pointed to the use of
StacklessPython. There is an article availiable on
[informit] with the title "Working with Stackless Python and Microthreads". This article was writen by
[this guy]
Web Programming
Network, Web and Distributed Systems Programming
Asynchronous network programming
def doWrite(self):
slice = buffer(self.data, self.offset, len(self.data) - self.offset)
amountWriten = write(slice)
self.offset += amountWritten
if self.offset == len(self.data);
self.data = ""; self.ooffset = 0
Security
See
DistributedProgramming for more on general issues on programming Distributed System
[Extending Vs. Embedding]
Debuging
Python and Other Languages
Python Object Model
These topics are futher discussed in their respective pages