Plugin spec parser tooling for InsightConnect integrations
Project description
InsightConnect Integrations Plugin Spec
What this is
A tool for parsing a Rapid7 InsightConnect integration plugin spec file (plugin.spec.yaml) and interacting with it programmatically.
Installation
Install the module via pip
$ pip install insightconnect-integrations-plugin-spec-tooling
Okay great, but how do I use it
Simple!
from typing import Any
from icon_plugin_spec.plugin_spec import KomandPluginSpec, PluginComponent
spec: KomandPluginSpec = KomandPluginSpec(directory="path_to_my_plugin")
raw_connection: {str: Any} = spec.connection() # Dictionary of connection properties
print(raw_connection) # Prints out list of inputs on the connection
# or, do the following
connection: PluginComponent = PluginComponent.new_connection(raw=raw_connection)
print(connection.inputs)
Changelog
- 1.3.2 - Update PyYaml to v6.0.1
- 1.3.1 - Update ruamel.yaml to work with Python 3.9
- 1.3.0 - Add functionality to support plugin tasks
- 1.2.0 - Add functionality to check if a plugin is cloud ready
- 1.1.0 - Add functionality to check if a plugin is obsolete
- 1.0.0 - Initial
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file insightconnect_integrations_plugin_spec_tooling-1.3.2-py3-none-any.whl
.
File metadata
- Download URL: insightconnect_integrations_plugin_spec_tooling-1.3.2-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f7d1f10449abfbb719a15f64cdfdbbe39ea174d908520853e70fc0893e9a21f |
|
MD5 | bf34369e4378062be8f0c77206278e8c |
|
BLAKE2b-256 | 88edd0c7028b8c660ce635242c3bcb8bce400fb0be1bb34f74d952541afacff7 |