Skip to main content

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

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.20.tar.gz (255.9 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.20-py3-none-any.whl (459.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: taegis_sdk_python-1.6.20.tar.gz
  • Upload date:
  • Size: 255.9 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.20.tar.gz
Algorithm Hash digest
SHA256 1685dfffb785b9c4cc322fc11134a27fa20443acdb796dc99bf01c19cd085935
MD5 456c7dd890f8159099c779f0ba06553c
BLAKE2b-256 b6845ad0593dcae8568c75d5d26f7a479dfb9283c71642b39ca691cbf9d2bdc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taegis_sdk_python-1.6.20-py3-none-any.whl
  • Upload date:
  • Size: 459.1 kB
  • Tags: Python 3
  • 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.20-py3-none-any.whl
Algorithm Hash digest
SHA256 037388388494178b7c455cec66aa4453d349ed5772f3fbcd34043f9cb37ac37b
MD5 bf4af54c95515c8ea4abb114edce8711
BLAKE2b-256 9cd39144dc1f26a99a36bfc1c8ca75ac99916821f9eed26924058aaab47556f8

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

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