Skip to main content

Python SDK to access the Tenchi Security Zanshin API v1

Project description

 Coverage badge PyPI version shields.io PyPI pyversions

Zanshin Python SDK

This Python package contains an SDK to interact with the API of the Zanshin SaaS service from Tenchi Security.

This SDK is used to implement a command-line utility, which is available on Github and on PyPI.

Setting up Credentials

There are three ways that the SDK handles credentials. The order of evaluation is:

Client Parameters

When calling the Client class, you can pass the values API Key, API URL, Proxy URL and User Agent you want to use as below:

from zanshinsdk import Client

client = Client(api_key="my_zanshin_api_key")

print(client.get_me())

:warning: These values will overwrite anything you set as Environment Variables or in the Config File.

Environment Variables

You can use the following Environment Variables to configure Zanshin SDK:

  • ZANSHIN_API_KEY: Will setup your Zanshin credentials
  • ZANSHIN_API_URL: Will define the API URL. Default is https://api.zanshin.tenchisecurity.com
  • ZANSHIN_USER_AGENT: If you want to overwrite the User Agent when calling Zanshin API
  • HTTP_PROXY | HTTPS_PROXY: Zanshin SDK uses HTTPX under the hood, checkout the Environment Variables section of their documentation for more use cases

Usage

export ZANSHIN_API_KEY="eyJhbGciOiJIU..."

:warning: These Environment Variables will overwrite anything you set on the Config File.

Config File

Second is by using a configuration file in the format created by the Python RawConfigParser class.

The file is located at ~/.tenchi/config, where ~ is the current user's home directory.

Each section is treated as a configuration profile, and the SDK will look for a section called default if another is not explicitly selected.

These are the supported options:

  • api_key (required) which contains the Zanshin API key obtained at the Zanshin web portal.
  • user_agent (optional) allows you to override the default user-agent header used by the SDK when making API requests.
  • api_url (optional) directs the SDK to use a different API endpoint than the default (https://api.zanshin.tenchisecurity.com).

This is what a minimal configuration file looks like:

[default]
api_key = abcdefghijklmnopqrstuvxyz

The SDK

The SDK uses Python 3 type hints extensively. It attempts to abstract API artifacts such as pagination by using Python generators, thus making the service easier to interact with.

The network connections are done using the wonderful httpx library.

Currently it focuses on returning the parsed JSON values instead of converting them into native classes for higher level abstractions.

The zanshinsdk.Client class is the main entry point of the SDK. Here is a quick example that shows information about the owner of the API key in use:

from zanshinsdk import Client
from json import dumps

client = Client()   # loads API key from the "default" profile in ~/.tenchi/config
me = client.get_me()    # calls /me API endpoint
print(dumps(me, indent=4))

For more examples, checkout the docs.

All operations call raise_for_status on the httpx Response object internally, so any 4xx or 5xx will raise exceptions.

Installing

To install the SDK, you can use pip. You have two options to install ZanshinSDK:

  • Essentials

Using pip install zanshinsdk will install the SDK with all features exception ability to perform onboarding of new Scan Targets. For this, you'll need to install boto3.

  • With Boto3

With pip install zanshinsdk[with_boto3] you'll automatically install boto3 along with ZanshinSDK. This will enable you to perform Onboard of new Scan Targets via SDK.

Testing

To run all tests call make test on the project root directory. Make sure there's a [default] profile configured, else some tests will fail. Also, be sure to install boto3 and moto[all] or some integration tests will fail.

Support

If you are a Zanshin customer and have any questions regarding the use of the service, its API or this SDK package, please get in touch via e-mail at support {at} tenchisecurity {dot} com or via the support widget on the Zanshin Portal.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zanshinsdk-2.1.2.tar.gz (40.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

zanshinsdk-2.1.2-py3-none-any.whl (44.2 kB view details)

Uploaded Python 3

File details

Details for the file zanshinsdk-2.1.2.tar.gz.

File metadata

  • Download URL: zanshinsdk-2.1.2.tar.gz
  • Upload date:
  • Size: 40.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.10.16 Linux/6.8.0-1021-azure

File hashes

Hashes for zanshinsdk-2.1.2.tar.gz
Algorithm Hash digest
SHA256 43723808ce3a3391e98c54505397079eacfa2237efe4b4885a4e2bbb0b410683
MD5 cf5f51d5deb0712cc16f75648c1dd54e
BLAKE2b-256 9066d9f4a3d67d2a5797d5182f6ace8e7db7e34dcb4249dbabc1f08c722950a0

See more details on using hashes here.

File details

Details for the file zanshinsdk-2.1.2-py3-none-any.whl.

File metadata

  • Download URL: zanshinsdk-2.1.2-py3-none-any.whl
  • Upload date:
  • Size: 44.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.10.16 Linux/6.8.0-1021-azure

File hashes

Hashes for zanshinsdk-2.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2a01667663394ff2d0faec72e9aaac10c92cec99811d4e56a8507bc7604a6b7b
MD5 65f6bf9cec5d26e066a2cb65c756c46a
BLAKE2b-256 24d9b9cd1804d65929f9212cf2f2f5546a359acfe79580b7444bc6c24f85596b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page