eufy-sync 1.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- eufy_sync/__init__.py +20 -0
- eufy_sync/cli.py +832 -0
- eufy_sync/config.py +132 -0
- eufy_sync/credentials.py +75 -0
- eufy_sync/eufy_client.py +225 -0
- eufy_sync/fit.py +210 -0
- eufy_sync/garmin_auth.py +421 -0
- eufy_sync/garmin_client.py +102 -0
- eufy_sync/state.py +104 -0
- eufy_sync/strava_client.py +248 -0
- eufy_sync/sync.py +135 -0
- eufy_sync/transform.py +54 -0
- eufy_sync-1.5.0.dist-info/METADATA +152 -0
- eufy_sync-1.5.0.dist-info/RECORD +18 -0
- eufy_sync-1.5.0.dist-info/WHEEL +5 -0
- eufy_sync-1.5.0.dist-info/entry_points.txt +2 -0
- eufy_sync-1.5.0.dist-info/licenses/LICENSE +21 -0
- eufy_sync-1.5.0.dist-info/top_level.txt +1 -0
eufy_sync/__init__.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""Sync Eufy smart scale body composition data to Garmin Connect and Strava."""
|
|
2
|
+
|
|
3
|
+
__version__ = "1.5.0"
|
|
4
|
+
|
|
5
|
+
# Public API for programmatic use
|
|
6
|
+
from eufy_sync.garmin_auth import GarminAuth
|
|
7
|
+
from eufy_sync.eufy_client import EufyClient, EufyMeasurement
|
|
8
|
+
from eufy_sync.fit import FitEncoder
|
|
9
|
+
from eufy_sync.strava_client import StravaClient
|
|
10
|
+
from eufy_sync.transform import GarminBodyComposition, transform
|
|
11
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
"GarminAuth",
|
|
14
|
+
"EufyClient",
|
|
15
|
+
"EufyMeasurement",
|
|
16
|
+
"FitEncoder",
|
|
17
|
+
"GarminBodyComposition",
|
|
18
|
+
"StravaClient",
|
|
19
|
+
"transform",
|
|
20
|
+
]
|