The Seeq SDK for Python
Project description
The seeq Python library is used to interface with Seeq Server (http://www.seeq.com).
Execute pip install seeq
to make it available for import.
seeq.spy
The Seeq Spy module is a friendly set of functions that are optimized for use with Jupyter, Pandas and NumPy.
The Spy module is the best choice if you're trying to do any of the following:
- Search for signals, conditions, scalars, assets
- Pull data out of Seeq
- Import data in a programmatic way (when Seeq Workbench's CSV Import capability won't cut it)
- Calculate new data in Python and push it into Seeq
- Create an asset model
To start exploring the Spy module, execute the following lines of code in Jupyter:
from seeq import spy
spy.docs.copy()
Your Jupyter folder will now contain a Spy Documentation
folder that has a Tutorial and Command Reference
notebook that will walk you through common activities.
For more advanced tasks, you may need to use the SDK module described below.
seeq.sdk
The Seeq SDK module is a set of Python bindings for the Seeq Server REST API. You can experiment with the REST API by selecting the API Reference menu item in the upper-right "hamburger" menu of Seeq Workbench.
Login is accomplished with the following pattern:
import seeq
import getpass
api_client = seeq.sdk.ApiClient('http://localhost:34216/api')
# Change this to False if you're getting errors related to SSL
seeq.sdk.Configuration().verify_ssl = True
auth_api = seeq.sdk.AuthApi(api_client)
auth_input = seeq.sdk.AuthInputV1()
# Use raw_input() instead of input() if you're using Python 2
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)
The api_client
object is then used as the argument to construct any API object you need, such as
seeq.sdk.ItemsApi
. Each of the root endpoints that you see in the API Reference webpage corresponds
to a seeq.sdk.XxxxxApi
class.
In case you are looking for the Gencove package, it is available here: https://pypi.org/project/gencove/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file seeq-0.0.111.tar.gz
.
File metadata
- Download URL: seeq-0.0.111.tar.gz
- Upload date:
- Size: 962.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13db6325011c8a16af0d45b17aa4259a8de12f8c9e76acc18bcc5d5340b5bece |
|
MD5 | 58565b9a214fd33310a1b0f87c903961 |
|
BLAKE2b-256 | 2aefbef35e7505791515ad7104904e3508a933e686dc5023cbb7472b3fb1b018 |
File details
Details for the file seeq-0.0.111-py3-none-any.whl
.
File metadata
- Download URL: seeq-0.0.111-py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e62702b6461924d470586cf2edc3699ac477a4a464409c3888baee378eb3f71 |
|
MD5 | 5ac74a41bd5448ecc10054b8fa8aa796 |
|
BLAKE2b-256 | 1c9482aa126a11b14b225e9931623bb40e2d6d5e2291652f890404547b0f1a93 |