Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 815 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 815 Bytes

tobii_g3

Unofficial Python implementation of the Tobii Pro Glasses3 API, using websockets

The official Tobii Pro Glasses3 Developer Guide can be found here.

Installation

The library can be installed with pip after cloning the code from github From the repository root directory, run

pip install .

Quick Start

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

Alternatives

This library predates the release of the official Glasses3 python SDK here.