Easy-to-use Python interface for Seeq, providing high-level access to Seeq data, analyses, and workbooks. Current version: 201.0. Release cadence is irregular, following Seeq product updates.
pip install seeq-spyVerified import paths — ran on the pinned version, not inferred.
Import the spy module, authenticate via spy.login, and search for data items. Replace credentials with your own.
Use `import seeq.spy as spy` instead of `import spy`.
Access columns via tuples (e.g., `df[('Signal Name', 'Value')]`) or flatten the MultiIndex using `.columns.droplevel()`.Replace `spy.authenticate(url, username, password)` with `spy.login(url, username=..., password=...)`.
Use `for index, row in df.iterrows():` or convert to dict with `df.to_dict('records')`.Ensure your DataFrame index uses `pd.DatetimeIndex` with `tz='UTC'`: `df.index = df.index.tz_localize('UTC')` if naive.No dependency data recorded yet.