Skip to main content

Snyk module for Clearskies

Project description

clearskies-snyk

A clearskies module for interacting with the Snyk API.

This module provides pre-built models and backends for seamless integration with both the Snyk REST API and the legacy v1 API, allowing you to easily query and manage Snyk resources like organizations, projects, groups, issues, and more.

Features

  • REST API Backend (SnykBackend): Full support for Snyk's JSON:API-compliant REST API with cursor-based pagination
  • V1 API Backend (SnykV1Backend): Support for Snyk's legacy v1 API with offset-based pagination
  • 75+ Pre-built Models: Ready-to-use models for organizations, projects, groups, issues, policies, service accounts, and more
  • Automatic Authentication: Configurable via environment variables with support for secret managers
  • Automatic Pagination: Seamlessly iterate through large result sets

Installation

pip install clearskies-snyk

Or with uv:

uv add clearskies-snyk

Quick Start

Authentication

Set up authentication using environment variables:

# Option 1: Direct API key
export SNYK_AUTH_KEY=your-snyk-api-key

# Option 2: Secret manager path (recommended for production)
export SNYK_AUTH_SECRET_PATH=/path/to/secret

Basic Usage

import clearskies
from clearskies_snyk.models import SnykOrg, SnykProject, SnykGroup

# List all organizations
for org in SnykOrg():
    print(f"Org: {org.name} ({org.slug})")

# Get projects for an organization
projects = SnykProject(org_id="your-org-id")
for project in projects:
    print(f"Project: {project.name} - {project.project_type}")

# List groups
for group in SnykGroup():
    print(f"Group: {group.name}")

Working with Issues

from clearskies_snyk.models import SnykOrgIssue, SnykGroupIssue

# Get issues for an organization
org_issues = SnykOrgIssue(org_id="your-org-id")
for issue in org_issues:
    print(f"Issue: {issue.title} - Severity: {issue.effective_severity_level}")

# Get issues across a group
group_issues = SnykGroupIssue(group_id="your-group-id")
for issue in group_issues:
    print(f"Issue: {issue.title}")

Using the V1 API

Some endpoints are only available through the legacy v1 API:

from clearskies_snyk.models.v1 import SnykIntegration, SnykWebhook, SnykLicense

# List integrations for an organization
integrations = SnykIntegration(org_id="your-org-id")
for integration in integrations:
    print(f"Integration: {integration.name} ({integration.integration_type})")

# List webhooks
webhooks = SnykWebhook(org_id="your-org-id")
for webhook in webhooks:
    print(f"Webhook: {webhook.url}")

Custom Backend Configuration

import clearskies
from clearskies_snyk.backends import SnykBackend

# Custom authentication
backend = SnykBackend(
    authentication=clearskies.authentication.SecretBearer(
        environment_key="MY_SNYK_KEY",
        header_prefix="token ",
    )
)

# Custom API version
backend = SnykBackend(api_version="2024-10-15")

Available Models

REST API Models

Category Models
Organizations SnykOrg, SnykOrgMember, SnykOrgMembership, SnykOrgUser, SnykOrgInvite
Projects SnykProject, SnykProjectHistory, SnykProjectIgnore, SnykProjectSbom
Groups SnykGroup, SnykGroupMember, SnykGroupMembership, SnykGroupUser, SnykGroupOrgMembership
Issues SnykOrgIssue, SnykGroupIssue
Policies SnykOrgPolicy, SnykOrgPolicyEvent, SnykGroupPolicy
Service Accounts SnykOrgServiceAccount, SnykGroupServiceAccount
Apps SnykOrgApp, SnykOrgAppBot, SnykOrgAppInstall, SnykGroupAppInstall, SnykSelfApp
Cloud SnykCloudEnvironment, SnykCloudResource, SnykCloudScan
Containers SnykContainerImage, SnykCustomBaseImage
Settings SnykOrgSettingsIac, SnykOrgSettingsSast, SnykOrgSettingsOpenSource, SnykGroupSettingsIac
Tenants SnykTenant, SnykTenantMembership, SnykTenantRole
Other SnykCollection, SnykTarget, SnykPackage, SnykAiBom, SnykLearnAssignment, and more

V1 API Models

Model Description
SnykIntegration SCM and CI/CD integrations
SnykIntegrationSetting Integration configuration settings
SnykWebhook Webhook configurations
SnykLicense License information
SnykDependency Project dependencies
SnykEntitlement Organization entitlements
SnykGroupRoleV1 Group roles (v1 format)
SnykGroupSettings Group settings
SnykGroupTag Group tags
SnykImportJob Project import jobs

Development

To set up your development environment:

# Install uv if not already installed
pip install uv

# Create a virtual environment and install all dependencies
uv sync

# Install dev dependencies
uv pip install .[dev]

# Install pre-commit hooks
uv run pre-commit install

# Run pre-commit on all files
uv run pre-commit run --all-files

Documentation

For full API documentation, visit the Snyk API Documentation.

License

MIT License - see LICENSE for details.

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

clear_skies_snyk-2.0.1.tar.gz (789.9 kB view details)

Uploaded Source

Built Distribution

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

clear_skies_snyk-2.0.1-py3-none-any.whl (103.8 kB view details)

Uploaded Python 3

File details

Details for the file clear_skies_snyk-2.0.1.tar.gz.

File metadata

  • Download URL: clear_skies_snyk-2.0.1.tar.gz
  • Upload date:
  • Size: 789.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.1 {"installer":{"name":"uv","version":"0.10.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for clear_skies_snyk-2.0.1.tar.gz
Algorithm Hash digest
SHA256 d91a1a364cdfafcc0e1f63570d6c14490e64051f46d9a4eba318819d5ad3df65
MD5 894a8241098abe10a29b9f33b5b54c0a
BLAKE2b-256 2fdf54aa0d3dab98c96abbeb82d49406a2700240665c89a48834b5eac9c7c7ed

See more details on using hashes here.

File details

Details for the file clear_skies_snyk-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: clear_skies_snyk-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 103.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.1 {"installer":{"name":"uv","version":"0.10.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for clear_skies_snyk-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 959180f82ed50f2af400ba88c0260e04a3973586e366930c1770ed3ab73363bc
MD5 52db1d6c5ea3402d7bde6f450048fb8a
BLAKE2b-256 99aeaf9e1fc8a960e2ccea930111948187de05d9af675300e0b7df648ac177d8

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