Unofficial libre linkup python client
Project description
Libre-linkup-py
TL;DR
Unofficial client to get your glucose readings from the LibreLinkUp API in Python. Supports Python 3.9 and above
Contents
Installation
pip install libre-linkup-py
Usage
Note: I recommend using something like python-dotenv to manage your environment variables.
- Create a .env file with the following contents:
LIBRE_LINK_UP_USERNAME=...
LIBRE_LINK_UP_PASSWORD=...
LIBRE_LINK_UP_URL=https://api-eu2.libreview.io
LIBRE_LINK_UP_VERSION=4.16.0 # Optional
The url for LIBRE_LINK_UP_URL may be different depending on where you live, current options, also see here for more information.
- Paste this code into a file and run it:
from libre_link_up import LibreLinkUpClient
import os
import dotenv
import json
dotenv.load_dotenv()
client = LibreLinkUpClient(
username=os.environ["LIBRE_LINK_UP_USERNAME"],
password=os.environ["LIBRE_LINK_UP_PASSWORD"],
url=os.environ["LIBRE_LINK_UP_URL"],
version="4.16.0",
)
client.login()
glucose_data = client.get_latest_reading()
print(json.dumps(glucose_data.model_dump(), sort_keys=True, indent=4))
The output should look something like:
{
"high_at_the_time": false,
"low_at_the_time": false,
"unix_timestamp": 1709830900.0,
"value": 7.9,
"value_in_mg_per_dl": 143.0
}
Examples
See the examples directory for more examples.
Contributing
If you find a bug :bug:, please open a bug report. If you have an idea for an improvement or new feature :rocket:, please open a feature request.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file libre_linkup_py-0.2.5.tar.gz.
File metadata
- Download URL: libre_linkup_py-0.2.5.tar.gz
- Upload date:
- Size: 31.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a8851eb4dd3063589dcd97264e0b5d2bb640ff74d366570efe098c85981b876
|
|
| MD5 |
c1ff43aa27f5e79e39a8dc7e6a007388
|
|
| BLAKE2b-256 |
d452c05e34b5dde64dd6c4ed82f1f10d5119ad940621980e399cc9d1260310ef
|
File details
Details for the file libre_linkup_py-0.2.5-py3-none-any.whl.
File metadata
- Download URL: libre_linkup_py-0.2.5-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a4abb6cf94ff0d997ff38a9f9c31c814bca500805dffc5abbea690338e98493
|
|
| MD5 |
cecb3a6171b75ea1c70e64e849dbc396
|
|
| BLAKE2b-256 |
b577258dbc1af71f75d5c0a3bd65cbb246412fd3cd9b93a3d86c0a34b9302472
|