skillfed

seeq

The Seeq SDK for Python

seeq v66.181.0.20260814 118.0K downloads/30d#12,141 on PyPI
License unclear Seeq Python Library – License File ------------------------------------------------------------------------------------------------------------------------ Seeq Python Library - Copyright Notice ©… (full text in the JSON record) Active released

What it is and what it does

The seeq package is a Python SDK that wraps the Seeq Server REST API, allowing programmatic access to time-series data, analytics, and derived insights stored in a Seeq instance. It provides low-level bindings to all REST endpoints exposed by Seeq Server, enabling automation of data queries, analysis creation, and workbook management. The package version mirrors the Seeq Server version it was generated from, ensuring API compatibility.

For most workflows, Seeq recommends using the higher-level SPy module (available as seeq-spy) instead. The SDK is intended for advanced tasks that SPy cannot handle. Authentication is performed via the AuthApi class using username and password credentials. The package depends on standard HTTP libraries (requests, urllib3, certifi) and cryptography for secure communication.

Use it for:

  • Automate extraction and analysis of time-series data from Seeq Server for external reporting or integration with other analytics platforms
  • Programmatically create and manage worksheets, workbooks, and derived signals in Seeq without manual UI interaction
  • Build custom data pipelines that query Seeq for operational metrics and feed results into downstream systems
  • Integrate Seeq data into Python-based machine learning or statistical analysis workflows
  • Develop monitoring or alerting systems that pull real-time or historical data from Seeq Server

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Python SDK for interfacing with Seeq Server REST API, providing bindings to query, analyze, and manage time-series data and derived analytics stored in Seeq.

Yes, if you have an active Seeq Server subscription and need programmatic access to its REST API. The package is actively maintained, has low install friction, and carries no known vulnerabilities. However, the proprietary subscription-based license means you cannot use it without a valid Seeq license, and the license terminates when your subscription ends. For most use cases, consider using the higher-level SPy module first; install this only if SPy cannot meet your requirements.

Install

seeq on PyPI

pip

pip install seeq

uv

uv add seeq

poetry

poetry add seeq

Installing seeq

Before you install

Low install friction with standard dependencies (certifi, six, urllib3, requests, cryptography). Package is actively maintained with a release dated 2026-08-14. Requires Python 2.7 or later, though Python 2.x is end-of-life and Python 3.x is strongly recommended.

License in practice

License is proprietary and subscription-based. Use is tied to an active Seeq Server subscription; the license terminates immediately upon subscription expiration. Redistribution, modification, reverse engineering, and commercial resale are prohibited. Consult the full EULA before deployment.

Quickstart

import seeq
import getpass

api_client = seeq.sdk.ApiClient('http://localhost:34216/api')
seeq.sdk.Configuration().verify_ssl = True

auth_api = seeq.sdk.AuthApi(api_client)
auth_input = seeq.sdk.AuthInputV1()
auth_input.username = input('Username:').rstrip().lower()
auth_input.password = getpass.getpass()
auth_input.auth_provider_class = "Auth"
auth_input.auth_provider_id = "Seeq"
auth_api.login(body=auth_input)

Requires a running Seeq Server instance accessible at the specified API endpoint. Authentication credentials for that server are mandatory.

Verify before relying

  • Whether the package works with Seeq Server versions other than the matching major.minor version
  • Performance characteristics and scalability limits for large datasets or concurrent API calls
  • Whether SPy module (seeq-spy) is required for typical workflows or optional for advanced use

Package facts

License Seeq Python Library – License File ------------------------------------------------------------------------------------------------------------------------ Seeq Python Library - Copyright Notice ©… (full text in the JSON record) (unclear)
Python support supports the current Python release (>=2.7)
Install friction low — pure-Python wheel
Runtime dependencies 5 — certifi, six, urllib3, requests, cryptography
Maintenance actively maintained — 0 days since the last release
First released
Downloads 117,952/month — #12,141 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: seeq-66.181.0.20260814-py3-none-any.whl

License :: Other/Proprietary LicenseOperating System :: OS IndependentProgramming Language :: Python :: 2Programming Language :: Python :: 3

Tags

seeq server api clienttime series data sdkindustrial data analysisseeq python bindingsrest api wrapperdata analytics platform integrationseeq workbench automation
rest-api-clienttime-series-dataindustrial-analytics

More WWW/HTTP packages