gattlib/gattlib-py
Olivier Martin 014c2802ee Refactor code to better separate gattlib_adapter_t, gattlib_device_t, gattlib_connection_t and their backends 2024-04-05 13:20:40 +02:00
..
examples Fix gattlib and examples 2024-03-18 00:19:44 +01:00
gattlib Refactor code to better separate gattlib_adapter_t, gattlib_device_t, gattlib_connection_t and their backends 2024-04-05 13:20:40 +02:00
README.md gattlib-py: Document how to develop 'gattlib-py' 2024-02-12 00:11:45 +01:00
TODO.md Initial Python support 2019-07-07 22:17:49 +02:00
setup.py python: Introduce __version__ 2024-03-26 13:43:42 +01:00

README.md

gattlib-py is a wrapper for gattlib library.

Development

  1. Set PYTHONPATH: export PYTHONPATH=$PWD/gattlib-py:$PYTHONPATH

  2. Build native library

mkdir -p build && cd build
cmake ..
make
  1. Set export LD_LIBRARY_PATH=$PWD/dbus for Python module to find native library.