Scroll to top

web development


Tag

Ali September 26, 2009
Fixing the multiprocessing error while developing for AppEngine

Fixing the multiprocessing error while developing for AppEngine

If you are developing for Google AppEngine on Mac, and you have updated python to 2.6.x or higher, you might face this non-sense error over and over:

ImportError: No module named _multiprocessing

The main reason behind this error is that AppEngine (as of this writing) can't get along with python versions higher than 2.5.x.

Fortunately it is quite easy to fix this issue, especially if you are using GoogleAppEngineLauncher:

Ali July 20, 2009

Creating online data forms with no coding at all

Many times you need to collect information from users (e.g. employees) through online forms. As I just did for my HR department as a favor,...