bluetooth library for beacons, classic and low-energy devices


Keywords
bluetooth, library, bluetooth-beacons, bluetooth-classic, bluetooth-le, bluetooth-low-energy, low-energy, scanner
License
MIT
Install
pip install btpy==2.0.3

Documentation

btpy

this is a wrapper around

how to ...

.. install

pip3 install btpy
# or (this is not guaranteed to be stable)
pip3 install git+https://github.com/nbdy/btpy

... to use it

from btpy import LEDevice, Beacon, ClassicDevice

le_results = LEDevice.scan(4)

beacon_results = Beacon.scan(5)

classic_results = ClassicDevice.scan(6)
TODO
  • Tests