Skip to content

hmfhmf/pybluez

This branch is 71 commits behind pybluez/pybluez:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

30060cd · Nov 20, 2019
Jul 22, 2019
Aug 11, 2019
Jul 23, 2019
Aug 12, 2019
Nov 14, 2019
Jul 23, 2019
Jul 29, 2019
Aug 16, 2019
May 22, 2015
May 22, 2015
Jul 23, 2019
Jul 30, 2019
Aug 5, 2015
Nov 12, 2007
Mar 11, 2018
Nov 20, 2019
Mar 11, 2018
Mar 11, 2018
Jul 25, 2018

Repository files navigation

PyBluez

Build Status

The PyBluez module allows Python code to access the host machine's Bluetooth resources.

Linux Raspberry Pi macOS Windows

Contributors Wanted

This project is not under active development. Contributions are strongly desired to resolve compatibility problems on newer systems, address bugs, and improve platform support for various features.

Examples

# simple inquiry example
import bluetooth

nearby_devices = bluetooth.discover_devices(lookup_names=True)
print("Found {} devices.".format(len(nearby_devices)))

for addr, name in nearby_devices:
    print("  {} - {}".format(addr, name))
# bluetooth low energy scan
from bluetooth.ble import DiscoveryService

service = DiscoveryService()
devices = service.discover(2)

for address, name in devices.items():
    print("name: {}, address: {}".format(name, address))

GNU/Linux and Windows XP examples:

GNU/Linux only examples:

GNU/Linux experimental BLE support:

Contact

Please file bugs to the issue tracker. Questions can be asked on the mailing list hosted on Google Groups, but unfortunately it is not very active.

Installation

Please refer to the installation instructions.

License

PyBluez is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

PyBluez is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with PyBluez; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

About

Bluetooth Python extension module

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 45.3%
  • Python 19.9%
  • Objective-C 14.2%
  • C 13.6%
  • C++ 5.9%
  • CSS 1.1%