Windows user's setup


  1. Install  Python 2.5 on you PC. It will be installed in c:\\python25
  2. Install the wxPython extension (Python widgets for win32)
  3. Install the bluetooth Python extension pyBluez for win32
  4. Check if you system support the native Microsoft Bluetooth Stack or, probabily, the pyBluez extension will not works

Installation check

Check in python.exe is in your path!

Check if pyBluez is ok:
   
python
>>> import bluetooth

If you get some problem relative to the wbtapi.dll,  download a new one from www.dll.com (or something like),
and put it in c:\\windows\stystem.
Worked for me.

Note

win32 didn't have the #!/usr/bin/python idiom. So, you should run the python programs writing on the prompt:

python program.py


M.A.