I was looking for a lib for bluetooth programming in python and I found PyBluz , but it is incompatible with Python 3. So is there any other free bluetooth programming library compatible with Python 3?
PyBluz
PyBluez now supports Python 3.
Like other answers, there is built-in Bluetooth support in Python sockets (Python 3.3 and above). However, there is virtually no documentation on how to actually use sockets with Bluetooth. I wrote a short tutorial so that I can return to it as soon as I forget. You may find this helpful.
There is built-in support on python 3.3 !! You can use bluetooth as a socket object
http://docs.python.org/3.3/library/socket.html
pybluez is now porting to python 3: http://code.google.com/p/pybluez/downloads/list
w
You can also use the socket class in python 3.3 to communicate with bluetooth.Here is the link to the documentation page