Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matthewelse/pygattosx
A pygattlib compatible wrapper around pyxpcconnection for BLE
https://github.com/matthewelse/pygattosx
Last synced: about 1 month ago
JSON representation
A pygattlib compatible wrapper around pyxpcconnection for BLE
- Host: GitHub
- URL: https://github.com/matthewelse/pygattosx
- Owner: matthewelse
- License: apache-2.0
- Created: 2015-09-03T20:17:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-19T23:05:49.000Z (almost 9 years ago)
- Last Synced: 2023-08-02T14:56:17.344Z (over 1 year ago)
- Language: Python
- Size: 17.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pygattosx
A Python Bluetooth Low Energy wrapper for OSX. This is an abstraction layer, which is used by [bleep](https://github.com/matthewelse/bleep) to provide a high-level BLE interface.
## Installation
> Most of the time, you won't need to install this package directly - you should install [bleep](https://github.com/matthewelse/bleep) instead.
The only dependencies for this module are PyObjC, which should be installed by default on OS X, and CoreBluetooth.framework, which is also installed on OS X. As a result, installation is simple:
```bash
git clone https://github.com/matthewelse/pygattosx
cd pygattosx
sudo python setup.py install
```If you want to work on the development of pygattosx, use this instead:
```bash
git clone https://github.com/matthewelse/pygattosx
cd pygattosx
sudo python setup.py develop
```