Is there a python bluetooth module for windows 7 64 bit?

I am new to python and bluetooth programming.

I know there is a python bluetooth module called bluetooth, but I read that it is only for GNU / Linux and Windows XP.

There are windows 7 on my PC. So I just wanted to know:

"Is there any Python bluetooth module for Windows 7 64 bit?"

Thanks in advance.

+4
source share
1 answer

I think the most popular Python Bluetooth package is pybluez . The project website mentions that it works on Linux and Windows XP, and that is what you wrote in your question. You can find precompiled installers for Windows x32 and x64 on the Chris Gohlke website: link . In general, if you need any Python to run on Windows x64, the Chris website should be the first one you look at. There may be an additional Bluetooth system configuration for your application, but at least this should help you get started.

Good luck

+4
source

All Articles