Resoto Python client library
Project description
resotoclient-python
Python client for Resoto
Installation
pip install resotoclient
For GraphVis and Pandas support:
pip install resotoclient[extras]
Usage
from resotoclient import ResotoClient
client = ResotoClient(url="https://localhost:8900", psk="changeme")
instances_csv = client.cli_execute("search is(instance) | tail 5 | list --csv")
for instance in instances_csv:
print(instance)
Pandas Dataframes
df = client.dataframe("is(instance)")
GraphViz Digraph
graph = client.graphviz("is(graph_root) -->")
Test
The tests expect a ResotoCore on localhost with the default PSK changeme
.
You can start it locally via:
$> resotocore --graphdb-database resotoclient_test --psk changeme
A local test environment is required. See the contribution guide for instructions. When the virtual environment is available, use those commands to set up the project and run the tests:
$> pip install --upgrade pip poetry nox nox-poetry
$> nox
For more examples see the examples directory.
Publish
- bump the version number in pyproject.toml
poetry build
poetry publish
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
resotoclient-1.1.1.tar.gz
(20.7 kB
view hashes)
Built Distribution
Close
Hashes for resotoclient-1.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5d3aecd53ec5eaf30b62acfb7c808c7a1766287b725cedc214020d334220673 |
|
MD5 | 16f5570b2b5ec8f63670cb10c6744186 |
|
BLAKE2b-256 | 277c49de4a7be08410ecde5f3008a6b9f94a33be7ffd8158749a6f0842017c84 |