Skip to main content

Taegis Python SDK

Project description

Taegis SDK for Python

The Taegis SDK is a Python library for interfacing with the GraphQL APIs in Taegis.

Prerequisites

  • Python 3.8 or higher.

Authentication

OR

  • Login using username/password with mfa upon service creation

OR

  • Device Code SSO

Installation

python -m pip install taegis-sdk-python

Using the SDK

To use the SDK, you must first import the GraphQLService

from taegis_sdk_python import GraphQLService
from pprint import pprint as pp
service = GraphQLService()

Now that you have the GraphQLService, you can make requests and process responses for Taegis XDR Services. The following example uses the Investigations Service to send a query to get all available investigations

result = service.investigations.query.investigations_search(
    page=1,
    per_page=3,
    query="WHERE deleted_at IS NOT NULL EARLIEST=-90d"
)
pp(result)
result = service.tenants.query.tenants(tenants_query=TenantsQuery(
    max_results=10,
    page_num=1,
))
pp(result)
results = service.events.subscription.event_query(
    query="FROM process EARLIEST=-1d",
    options=EventQueryOptions(
        max_rows=20,
        page_size=10,
        skip_cache=True,
    ),
)
pp(results)
print()
try:
    next_page = next(
        iter(
            {
                result.next
                for result in results
                if result.next
            }
        )
    )
except StopIteration:
    next_page = None

if next_page:
    results = service.events.subscription.event_page(page_id=next_page)
    pp(results)

Getting Started Exploring the Schema

from taegis_sdk_python import GraphQLService

service = GraphQLService()
schema = service.core.get_sync_schema()

For more in depth analysis see: Exploring the Schema

For more information see the Getting Started

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

taegis_sdk_python-1.6.11.1.tar.gz (231.6 kB view details)

Uploaded Source

Built Distribution

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

taegis_sdk_python-1.6.11.1-py3-none-any.whl (411.2 kB view details)

Uploaded Python 3

File details

Details for the file taegis_sdk_python-1.6.11.1.tar.gz.

File metadata

  • Download URL: taegis_sdk_python-1.6.11.1.tar.gz
  • Upload date:
  • Size: 231.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.4 cpython/3.11.9 HTTPX/0.28.1

File hashes

Hashes for taegis_sdk_python-1.6.11.1.tar.gz
Algorithm Hash digest
SHA256 71377a0b534187645c6ca53b872d2a159eb75f625f963aaecaf8a729e4be52f0
MD5 e3f48ae6c5ec7f21e1e579e05b30010c
BLAKE2b-256 afb22f60f656fd7ba76946e1c9030f7dde75b38932ea531eafd80aa55b5facf6

See more details on using hashes here.

File details

Details for the file taegis_sdk_python-1.6.11.1-py3-none-any.whl.

File metadata

File hashes

Hashes for taegis_sdk_python-1.6.11.1-py3-none-any.whl
Algorithm Hash digest
SHA256 df619ed913dc82850379d4f6a0b6c83655c0944bf99f4b0c29e79870880f4f90
MD5 446ca1a3e6a719943c2cb74d72960c95
BLAKE2b-256 afa4ba319e71e5095e2e6bdf0a3e09e7272f320f42bdc7d8535af12ceab7c147

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