Python library to communicate with varies systems such as Wood NEXUS IC, Maximo and OSI PI
Project description
pynexusic
pynexusic
is a package that allows communication with the following tools:
- Wood NEXUS IC
- Maximo
- OSI PI
Python library installation
pip install pynexusic
Library documentation
To be developed soon
External documentation
NEXUS IC
NEXUS IC REST API documentation can be found in the following link:
https://docs.nexusic.com/6.6/ic-web.rest.v2.html
A specific NEXUS IC version can be specified in the above link by changing 6.6 to the desired NEXUS IC version
OSI PI
OSI PI API documentation can be found in the following link:
https://techsupport.osisoft.com/Documentation/PI-Web-API/help.html
Maximo
Maximo API documentation can be found in the following link:
Examples
NEXUS IC Examples
-
Example 1: Get system version
-
Import
NEXUSIC_RESTAPI
from pynexusic import NEXUSIC_RESTAPI as api
-
Initialize
NEXUSIC_REST
classNX_REST = api.NEXUSIC_REST(baseURI, api_key=APIKey)
where APIKey is the user's API Key provided by the system administrator
-
Execute required function
result, result_status_code = NX_REST.getVersion()
Output:
result = {'version': 'x.x.xxxxx.x', 'schema': 'x.xxx'} result_code = 200
-
-
Example 2: Run reports and get python object response
-
Import
NEXUSIC_RESTAPI
from pynexusic import NEXUSIC_RESTAPI as api
-
Initialize
NEXUSIC_REST
classNX_REST = api.NEXUSIC_REST(baseURI, api_key=APIKey)
where APIKey is the user's API Key provided by the system administrator
-
Execute required report
result, result_status_code = NX_REST.getDashboard(report_name)
where report_name is the name of the report to be executed in NEXUS IC
Output:
result = {'name': 'xxxxxxxxxxx', 'elements': [{'type': 'section', 'data': {}}, {'type': 'paragraph', 'data': {'text': [{'value': 'xxxxxx'}]}} ] } result_code = 200
The values of the elements key will contain the data configured in the NEXUS IC report template
-
OSI PI Examples
-
Example 1: Get full list of points in the database
-
Import
OSIPI_WebAPI
from pynexusic import OSIPI_WebAPI as OSIPI
-
Initialize
OSIPI_WebAPI
classOSIPI_obj = OSIPI.OSIPI_WebAPI(piwebapi_uri, username, password)
an example for piwebapi_uri is https://[domain].com/piwebapi
-
Execute required function
result, result_status_code = OSIPI_obj.getPointsList(pageSize=20000)
Output:
result = [{'ServerName': 'xxxxxxxxxxx', 'Points': [{'WebId': 'xxxxxxxxxx', 'Id': xxxxx, ...}], 'ResponseStatus': 200 }] result_status_code = None
-
-
Example 2: Get stream summary data
-
Import
OSIPI_WebAPI
from pynexusic import OSIPI_WebAPI as OSIPI
-
Initialize
OSIPI_WebAPI
classOSIPI_obj = OSIPI.OSIPI_WebAPI(piwebapi_uri, username, password)
an example for piwebapi_uri is https://[domain].com/piwebapi
-
Execute required function
result, result_status_code = OSIPI_obj.getStreamDataSummary(webID, startTime='*-2mo', endTime='*-1mo', summaryType='Average')
where webID is the required stream webID, for more details see OSI PI documentation
Output:
result = {'Links': {}, 'Items': [{'Type': 'Average', 'Value': {'Timestamp': 'xxxxxxxx', 'Value': xxxxxx, ...} }] } result_status_code = 200
-
Maximo Examples
To be developed soon
Change history
(V2.1.2) Changes
- NEXUSIC_RESTAPI:
- Added
getAssetByFullLocation
function - Added
getTableDefInfo
function - Added
createNewEvents
function
- Added
- OSIPI_WebAPI:
- Added docstring
- MAXIMO_API:
- Added docstring
(V2.1.1) Changes:
- OSIPI_WebAPI:
- Added the ability to retrieve multiple AssetServers and DataServers in
get_system_links
function - Added the ability to get points list for a specific DataServer in
getPointsList
function.
- Added the ability to retrieve multiple AssetServers and DataServers in
(V2.1.0) Changes:
- NEXUSIC_RESTAPI:
- Added
createNewRecord
function
- Added
- MAXIMO_RESTAPI:
- Added read only connector class
- OSIPI_WebAPI:
- Added read only connector class
(V2.0.5) Changes:
- NEXUSIC_RESTAPI:
- Improved disconnection error handler
getAssetChildren
function: Added the ability to search at a specific level- Added
getAssetTypesID
function - Added
getTableDBNames
function
(V2.0.4) Changes:
- NEXUSIC_RESTAPI:
- Added
getAssetLocationByName
function - Added
getAssetLocationByID
function - Added
getAssetChildren
function
- Added
(V2.0.3) Changes:
- NEXUSIC_RESTAPI:
- Added the ability to authenticate using two modes (APIKEY and BASIC)
- APIKEY: Requires an API Key to authenticate
- BASIC: Requires username and password
- Added the ability to authenticate using two modes (APIKEY and BASIC)
(V2.0.2) Changes:
- NEXUSIC_RESTAPI:
- Added the ability to bypass SSL verification
(V2.0.1) Changes:
- Initial deployment in pypi.org
License
This project is licensed under the MIT license.
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 pynexusic-2.1.2.tar.gz
.
File metadata
- Download URL: pynexusic-2.1.2.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04de341f9f400848ec11e2dc2a057113560ccede7ac020510635a3671dca4296 |
|
MD5 | e814efa8fb5a017be44f4d6f2700686b |
|
BLAKE2b-256 | 1a59c585c2618ccbf536f825583bcccd38dd2dd6e513775c6ff923b68bac0956 |
Provenance
File details
Details for the file pynexusic-2.1.2-py3-none-any.whl
.
File metadata
- Download URL: pynexusic-2.1.2-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e8dbf29c62468522656a12a676d54fbff4dc1f08220ec4c8d89d56321877d93 |
|
MD5 | 77b488e89f37f63110ec60f91e20fc02 |
|
BLAKE2b-256 | ff420fede0a15b2f43d5631123b36934cc376ac14f435611e3bdd8bdf707ee2e |