Vantiq Connector for Execution of Python Code
Project description
Vantiq Python Execution Connector
The Vantiq Python Execution Connector is a Python package that provides the ability to execute Python code as directed by a Vantiq server
Installation
The connector is installed from the PyPI repo. To install this into your system, use
pip install vantiqPythonExecConnector
Note: depending on your local environment, you may need to use pip3
instead of pip
, or whatever is appropriate to install into your
virtual environment.
The Vantiq Python Execution Connector requires Python version 3.10 or better.
Quick Start
Connector Configuration
You will need valid credentials on a Vantiq server in the form of an access token. If you have a private Vantiq server, contact your administrator for credentials. If you wish to use the Vantiq public cloud, contact support@vantiq.com.
The information required is placed in a server.config
file in the serverConfig
directory below the working directory from which the connector will be run. The format is as follows:
targetServer = ...
authToken = ...
sources = ...
An example file might be
targetServer = https://dev.vantiq.com
authToken = _cDWBfZLNO9FkXd-twjwKnVIBZSGwns35nF4nQFV_ps=
sources = pythonSource
As outlined in the vantiqconnectorsdk, there is also the option of providing extra keyword arguments that will be used to make connections to Vantiq. These will be used both for the vantiqconnectorsdk connection as well any "regular" Vantiq connections used. These are use, for example, for reading documents containing Python code.
To make use of this capability, include the connectKWArgs
property in your config file.
A special case is use for disabling SSL verification (often used in development environments). To do this, use the
argument disableSslVerification
. This sets up both the connector's websocket connection and the auxiliary
Vantiq connection to skip SSL verification. Doing so, internally, requires some Python code not directly
representable in JSON. The following example shows how this is done.
`` targetServer = https://dev.vantiq.com authToken = _cDWBfZLNO9FkXd-twjwKnVIBZSGwns35nF4nQFV_ps= sources = pythonSource connectKWArgs={ "disableSslVerification": true }
For users who may not want to write the `authToken` property to a file because of its sensitive nature, set the environment variable `CONNECTOR_AUTH_TOKEN` to its value. If the `authToken` is specified in the `server.config` document, that value will take precedence.
Otherwise, if the `authToken` is not set in the configuration file, the system will retrieve whatever value is provided in the environment variable.
> Note that this token will not work -- you will need to create your own
> within a VANTIQ installation
You should also provide an appropriate `logger.ini` file in the same directory.
An example file is provided at `src/test/resources/logger.ini` in this project's github repository.
### Running the Connector
Once you have the connector configuration (`serverConfig/server.config`) and logging configuration (`serverConfig/logger.ini`) files set up, you can run the connector using the command
```shell
vantiqPythonExecConnector
On startup, the connector will connect to the configured Vantiq server awaiting calls to run Python code. No other interaction is necessary.
Documentation
For the full documentation on the SDK, see the documentation available at the github repository. This README file provides the basics; more detailed information is available in docs/Usage.md.
Developers
The project is set up as a gradle
project. To run the tests, use
./gradlew test
or
./gradlew.bat test
in a Windows environment.
The tests run will run a mocked version. To execute tests against a live server, define the following gradle properties:
# Python project values
TestVantiqServer=<Vantiq server url>
TestAccessToken=<access token from that Vantiq system>
TestVantiqUsername=<Vantiq user name>
TestVantiqPassword=<Password for that Vantiq user>
Alternatively, when running directly, use the following environment variables:
VANTIQ_URL <Vantiq erver url>
VANTIQ_ACCESS_TOKEN <Access token from that Vantiq system>
VANTIQ_USERNAME <Vantiq user name>
VANTIQ_PASSWORD <Password for that Vantiq user>
Copyright and License
Copyright © 2022 Vantiq, Inc. Code released under the MIT license.
The MIT License (MIT)
Copyright (c) 2022 Vantiq, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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 vantiqpythonexecconnector-1.3.0.tar.gz
.
File metadata
- Download URL: vantiqpythonexecconnector-1.3.0.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39a72886c948bc4ed68343b36914d7687e7479b1d9dae217d82eca7766498962 |
|
MD5 | 2fb53a7cedc7bb52d81087dac3798e06 |
|
BLAKE2b-256 | de14b94ebcfa04877a6d24b87cf59e16a7357589615e5d1fddac553311540ca0 |
File details
Details for the file vantiqPythonExecConnector-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: vantiqPythonExecConnector-1.3.0-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 64097c29e393e302076107aee862568d4eff984af4bedcd0cd86fc20f9067a69 |
|
MD5 | 8d07711ec12d7e0b98a922b2708348b5 |
|
BLAKE2b-256 | 5e04a82d78a5e553f2ef7a20ce6294fef7dcf779aa29fe5ad3b17286a7e2a803 |