Unofficial Python implementation of the Tobii Pro Glasses3 API, using websockets
The official Tobii Pro Glasses3 Developer Guide can be found here.
The library can be installed with pip after cloning the code from github From the repository root directory, run
pip install .
This example will attempt to automatically discover and connect to a Glasses3 unit on the network and request the battery level
from tobii_g3 import G3Client
g3 = G3Client()
response = g3.battery_level
This library predates the release of the official Glasses3 python SDK here.