Skip to content

Latest commit

 

History

History
31 lines (16 loc) · 677 Bytes

File metadata and controls

31 lines (16 loc) · 677 Bytes

libreview

A python wrapper for the LibreLinkUp API, with additional helper functions for interpreting CGM data

LibreView API details from this source:

  https://libreview-unofficial.stoplight.io/

Thank you, FokkeZB! #WeAreNotWaiting

https://semver.org/

This project on perpetual hiatus due to lack of personal need. Consider using OAPS or AAPS instead.

Quickstart (probably not working yet, just draft):

in file.py:

import asyncio

from libreview import auth, libreview

async def main():

myAuth = auth.Auth("emailaddress","password")

myApi = libreview.LibreViewAPI(myAuth)

response = await myApi.getLatestReading()

print(response)