Assorted Links


Making Python Fast

[Make python fast]

Compiling Python Code

Creating C++ extensions for Python


Gui Programming



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


./MetaClasses and ./NetStructs

These topics are futher discussed in their respective pages