--- id: seeq version: "66.181.0.20260814" license: Seeq Python Library – License File ------------------------------------------------------------------------------------------------------------------------ Seeq Python Library - Copyright Notice ©… (full text in the JSON record) license_treatment: unclear maintenance: active --- # seeq — The Seeq SDK for Python License: unclear · Maintenance: active · Downloads: 118.0K/mo ## 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 above — 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 pip install seeq uv add seeq 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_current - Install friction: low - Maintenance: active - Downloads: 118.0K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags seeq server api client, time series data sdk, industrial data analysis, seeq python bindings, rest api wrapper, data analytics platform integration, seeq workbench automation, rest-api-client, time-series-data, industrial-analytics [View on SkillFed](https://skillfed.io/packages/seeq) · [View on PyPI](https://pypi.org/project/seeq/)