Bluetooth for python 3

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?

+7
source share
4 answers

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.

+15
source

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

+5
source

pybluez is now porting to python 3: http://code.google.com/p/pybluez/downloads/list

w

+2
source

You can also use the socket class in python 3.3 to communicate with bluetooth.
Here is the link to the documentation page

+1
source

All Articles