Metadata-Version: 2.1
Name: pynexusic
Version: 2.0.1
Summary: Python wrapper to communicate with Wood NEXUS IC tool
Home-page: UNKNOWN
Author: Mahmoud Aboelatta
Author-email: mahmoud.aboelatta@woodplc.com
License: UNKNOWN
Keywords: NEXUS IC,REST API
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown

# pynexusic
```pynexusic``` is a package that allows communication with Wood NEXUS IC tool

#### Installation
``` python
pip install pynexusic
```
#### Example
1) Import ```NEXUSIC_RESTAPI```
    ```python
   from pynexusic import NEXUSIC_RESTAPI as api
    ```
2) Initialize ```NEXUSIC_REST``` class
    ```python
   NX_REST = api.NEXUSIC_REST(baseURI, APIKey)
    ```
 3) Execute required function
    ```python
    result, result_code = NX_REST.getVersion()
    ```
    Output:
    ```python
    result = {'version': 'x.x.xxxxx.x', 'schema': 'x.xxx'}
    result_code = 200
    ```
#### License
This project is licensed under the MIT license.


