├── .gitignore ├── LICENSE.txt ├── README ├── README.md ├── __init__.py ├── bluepy ├── .gitignore ├── Makefile ├── __init__.py ├── blescan.py ├── bluepy-helper.c ├── bluez-src.tgz ├── btle.py ├── get_services.py ├── scan_fuzz.py ├── scanner.py ├── sensortag.py ├── thingy52.py ├── uuids.json └── version.h ├── bluez-5.47 ├── AUTHORS ├── COPYING ├── COPYING.LIB ├── attrib │ ├── att-database.h │ ├── att.c │ ├── att.h │ ├── gatt-service.h │ ├── gatt.c │ ├── gatt.h │ ├── gattrib.c │ ├── gattrib.h │ ├── gatttool.h │ └── utils.c ├── btio │ ├── btio.c │ └── btio.h ├── config.h ├── lib │ ├── a2mp.h │ ├── amp.h │ ├── bluetooth.c │ ├── bluetooth.h │ ├── bnep.h │ ├── cmtp.h │ ├── hci.c │ ├── hci.h │ ├── hci_lib.h │ ├── hidp.h │ ├── l2cap.h │ ├── mgmt.h │ ├── rfcomm.h │ ├── sco.h │ ├── sdp.c │ ├── sdp.h │ ├── sdp_lib.h │ ├── uuid.c │ └── uuid.h ├── src │ ├── log.c │ ├── log.h │ └── shared │ │ ├── ad.h │ │ ├── att-types.h │ │ ├── att.c │ │ ├── att.h │ │ ├── btsnoop.h │ │ ├── crypto.c │ │ ├── crypto.h │ │ ├── ecc.h │ │ ├── gap.h │ │ ├── gatt-client.h │ │ ├── gatt-db.h │ │ ├── gatt-helpers.h │ │ ├── gatt-server.h │ │ ├── hci-crypto.h │ │ ├── hci.h │ │ ├── hfp.h │ │ ├── io-glib.c │ │ ├── io.h │ │ ├── mainloop.h │ │ ├── mgmt.c │ │ ├── mgmt.h │ │ ├── pcap.h │ │ ├── queue.c │ │ ├── queue.h │ │ ├── ringbuf.h │ │ ├── tester.h │ │ ├── timeout-glib.c │ │ ├── timeout.h │ │ ├── tty.h │ │ ├── uhid.h │ │ ├── util.c │ │ └── util.h └── sys │ └── bluetooth │ ├── bluetooth.h │ └── hci.h ├── docs ├── .gitignore ├── Makefile ├── assignednumbers.rst ├── characteristic.rst ├── conf.py ├── delegate.rst ├── descriptor.rst ├── index.rst ├── notifications.rst ├── peripheral.rst ├── scanentry.rst ├── scanner.rst ├── service.rst └── uuid.rst ├── setup.cfg ├── setup.py └── tests └── test_uuid.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bluepy/.gitignore: -------------------------------------------------------------------------------- 1 | bluepy-helper 2 | *.pyc 3 | *.o 4 | 5 | -------------------------------------------------------------------------------- /bluepy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/Makefile -------------------------------------------------------------------------------- /bluepy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/__init__.py -------------------------------------------------------------------------------- /bluepy/blescan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/blescan.py -------------------------------------------------------------------------------- /bluepy/bluepy-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/bluepy-helper.c -------------------------------------------------------------------------------- /bluepy/bluez-src.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/bluez-src.tgz -------------------------------------------------------------------------------- /bluepy/btle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/btle.py -------------------------------------------------------------------------------- /bluepy/get_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/get_services.py -------------------------------------------------------------------------------- /bluepy/scan_fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/scan_fuzz.py -------------------------------------------------------------------------------- /bluepy/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/scanner.py -------------------------------------------------------------------------------- /bluepy/sensortag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/sensortag.py -------------------------------------------------------------------------------- /bluepy/thingy52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/thingy52.py -------------------------------------------------------------------------------- /bluepy/uuids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluepy/uuids.json -------------------------------------------------------------------------------- /bluepy/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION_STRING "1.3.0" 2 | -------------------------------------------------------------------------------- /bluez-5.47/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/AUTHORS -------------------------------------------------------------------------------- /bluez-5.47/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/COPYING -------------------------------------------------------------------------------- /bluez-5.47/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/COPYING.LIB -------------------------------------------------------------------------------- /bluez-5.47/attrib/att-database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/attrib/att-database.h -------------------------------------------------------------------------------- /bluez-5.47/attrib/att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/attrib/att.c -------------------------------------------------------------------------------- /bluez-5.47/attrib/att.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/attrib/att.h -------------------------------------------------------------------------------- /bluez-5.47/attrib/gatt-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/attrib/gatt-service.h -------------------------------------------------------------------------------- /bluez-5.47/attrib/gatt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/attrib/gatt.c -------------------------------------------------------------------------------- /bluez-5.47/attrib/gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/attrib/gatt.h -------------------------------------------------------------------------------- /bluez-5.47/attrib/gattrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/attrib/gattrib.c -------------------------------------------------------------------------------- /bluez-5.47/attrib/gattrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/attrib/gattrib.h -------------------------------------------------------------------------------- /bluez-5.47/attrib/gatttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/attrib/gatttool.h -------------------------------------------------------------------------------- /bluez-5.47/attrib/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/attrib/utils.c -------------------------------------------------------------------------------- /bluez-5.47/btio/btio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/btio/btio.c -------------------------------------------------------------------------------- /bluez-5.47/btio/btio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/btio/btio.h -------------------------------------------------------------------------------- /bluez-5.47/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/config.h -------------------------------------------------------------------------------- /bluez-5.47/lib/a2mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/a2mp.h -------------------------------------------------------------------------------- /bluez-5.47/lib/amp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/amp.h -------------------------------------------------------------------------------- /bluez-5.47/lib/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/bluetooth.c -------------------------------------------------------------------------------- /bluez-5.47/lib/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/bluetooth.h -------------------------------------------------------------------------------- /bluez-5.47/lib/bnep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/bnep.h -------------------------------------------------------------------------------- /bluez-5.47/lib/cmtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/cmtp.h -------------------------------------------------------------------------------- /bluez-5.47/lib/hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/hci.c -------------------------------------------------------------------------------- /bluez-5.47/lib/hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/hci.h -------------------------------------------------------------------------------- /bluez-5.47/lib/hci_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/hci_lib.h -------------------------------------------------------------------------------- /bluez-5.47/lib/hidp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/hidp.h -------------------------------------------------------------------------------- /bluez-5.47/lib/l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/l2cap.h -------------------------------------------------------------------------------- /bluez-5.47/lib/mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/mgmt.h -------------------------------------------------------------------------------- /bluez-5.47/lib/rfcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/rfcomm.h -------------------------------------------------------------------------------- /bluez-5.47/lib/sco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/sco.h -------------------------------------------------------------------------------- /bluez-5.47/lib/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/sdp.c -------------------------------------------------------------------------------- /bluez-5.47/lib/sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/sdp.h -------------------------------------------------------------------------------- /bluez-5.47/lib/sdp_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/sdp_lib.h -------------------------------------------------------------------------------- /bluez-5.47/lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/uuid.c -------------------------------------------------------------------------------- /bluez-5.47/lib/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/lib/uuid.h -------------------------------------------------------------------------------- /bluez-5.47/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/log.c -------------------------------------------------------------------------------- /bluez-5.47/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/log.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/ad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/ad.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/att-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/att-types.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/att.c -------------------------------------------------------------------------------- /bluez-5.47/src/shared/att.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/att.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/btsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/btsnoop.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/crypto.c -------------------------------------------------------------------------------- /bluez-5.47/src/shared/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/crypto.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/ecc.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/gap.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/gatt-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/gatt-client.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/gatt-db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/gatt-db.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/gatt-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/gatt-helpers.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/gatt-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/gatt-server.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/hci-crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/hci-crypto.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/hci.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/hfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/hfp.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/io-glib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/io-glib.c -------------------------------------------------------------------------------- /bluez-5.47/src/shared/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/io.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/mainloop.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/mgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/mgmt.c -------------------------------------------------------------------------------- /bluez-5.47/src/shared/mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/mgmt.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/pcap.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/queue.c -------------------------------------------------------------------------------- /bluez-5.47/src/shared/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/queue.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/ringbuf.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/tester.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/timeout-glib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/timeout-glib.c -------------------------------------------------------------------------------- /bluez-5.47/src/shared/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/timeout.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/tty.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/uhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/uhid.h -------------------------------------------------------------------------------- /bluez-5.47/src/shared/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/util.c -------------------------------------------------------------------------------- /bluez-5.47/src/shared/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/src/shared/util.h -------------------------------------------------------------------------------- /bluez-5.47/sys/bluetooth/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/sys/bluetooth/bluetooth.h -------------------------------------------------------------------------------- /bluez-5.47/sys/bluetooth/hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/bluez-5.47/sys/bluetooth/hci.h -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/assignednumbers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/assignednumbers.rst -------------------------------------------------------------------------------- /docs/characteristic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/characteristic.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/delegate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/delegate.rst -------------------------------------------------------------------------------- /docs/descriptor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/descriptor.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/notifications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/notifications.rst -------------------------------------------------------------------------------- /docs/peripheral.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/peripheral.rst -------------------------------------------------------------------------------- /docs/scanentry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/scanentry.rst -------------------------------------------------------------------------------- /docs/scanner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/scanner.rst -------------------------------------------------------------------------------- /docs/service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/service.rst -------------------------------------------------------------------------------- /docs/uuid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/docs/uuid.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHarvey/bluepy/HEAD/tests/test_uuid.py --------------------------------------------------------------------------------