The Seeq SDK for Python provides programmatic access to the Seeq data analytics platform, enabling automation of data retrieval, analysis, and configuration tasks. Current version is 66.133.1.20260430, updated daily. Requires Python >=2.7.
pip install seeqVerified import paths — ran on the pinned version, not inferred.
Basic login and worksheet listing using environment variables for credentials.
Use `client = seeq.SDK(url=..., username=..., password=...)` instead of positional args.
Replace `.search()` with `.find()` for consistency with future versions.
Convert timestamps using `pd.to_datetime(timestamps, unit='s', utc=True)`.
Upgrade to latest version: `pip install --upgrade seeq`. Then use `import seeq` and `seeq.SDK(...)`.
Ensure you use proper pandas vectorized operations, e.g., `df[df['column'] > 0]` instead of `if df['column'] > 0:`.
Verify your URL, username, and password. For API key auth, use `client = seeq.SDK(api_key='...')` instead.