After finding a small comment on external libraries here:
http://code.google.com/appengine/docs/python/purepython.html
--- 8< ---
You can include other pure Python libraries with your application by
putting the code in your application directory. If you make a symbolic
link to a module's directory in your application directory, appcfg.py
will follow the link and include the module in your app.
--- 8< ---
On Windows Vista you can easily create symlinks within the command
line using *mklink*. On Windows XP there are also possibilities to do
that, see here:
http://elsdoerfer.name/=ntfslink
Steps to import a library (in this example unicodedata):
1. Open up a command line (you might need to start this as
adminstrator using a right click if mklink complains about missing
rights)
2. Create your link using: mklink /d X:\path\to\your\project\pyds C:
\Python25\DLLs
3. For getting code completion working in eclipse I needed to add an
empty __init__.py to the \pyds-directory
4. import a library using: from pyds import unicodedata
Additionally some tags for searching people to find this post:
library, external libraries, import, third party libraries, python
dlls, pyd, external modules, no module named