I understood from Bluetooth for Programmers chapter 2, that the PyBluez API does provide functions like discover_devices and lookup_name.
However I have not found any API documentation for PyBluez.
What I am looking for is the complete list of functions available in PyBluez as well as the list of arguments for these functions - f.e. what are the arguments available for discover_devices, what are the arguments available for lookup_name....
Asked
Active
Viewed 1.0k times
3

lolo67
- 184
- 1
- 1
- 7
2 Answers
7
Here it is, the most useless documentation ever

high incompetance
- 2,500
- 4
- 18
- 26
-
5I'm amazed that PyBluez is still the top result for bluetooth on python with this level of quality – Alex Lamson Oct 31 '18 at 03:09
-
@AlexLamson is there a better alternative for BLE on python? – jaaq Jun 05 '19 at 13:18
-
1@jaaq Supposedly python3.3 sockets should natively support it, but I haven't tried it. Also sockets aren't the simplest things in world to work with if you're trying to do something simple. – Alex Lamson Jun 05 '19 at 18:45
3
Found it:
- Download the PyBluez sources from it git repository
- Extract the sources
- Open the file pybluez\docs\index.html - Everything is available from there

lolo67
- 184
- 1
- 1
- 7