Skip to main content

No project description provided

Project description

sarif-pydantic

An implementation of the SARIF (Static Analysis Results Interchange Format) format using Pydantic.

Overview

This library provides Pydantic models for working with the SARIF specification (version 2.1.0). It enables Python developers to:

  • Create, validate, and manipulate SARIF data
  • Parse existing SARIF files into typed Python objects
  • Export SARIF data to JSON with proper validation

Installation

pip install sarif-pydantic

Usage

Creating a SARIF Log

from sarif_pydantic import (
    ArtifactLocation, 
    Invocation, 
    Level, 
    Location, 
    Message, 
    PhysicalLocation, 
    Region, 
    Result, 
    Run, 
    SarifLog, 
    Tool, 
    ToolDriver
)

# Create a tool driver
tool_driver = ToolDriver(
    name="Example Analyzer",
    version="1.0.0",
)

# Create a tool with the driver
tool = Tool(driver=tool_driver)

# Create a physical location
physical_location = PhysicalLocation(
    artifact_location=ArtifactLocation(
        uri="src/example.py",
    ),
    region=Region(
        start_line=42,
        start_column=5,
        end_line=42,
        end_column=32,
    ),
)

# Create a result
result = Result(
    rule_id="EX001",
    level=Level.WARNING,
    message=Message(
        text="Example warning message",
    ),
    locations=[Location(
        physical_location=physical_location,
    )],
)

# Create a SARIF log
sarif_log = SarifLog(
    version="2.1.0",
    runs=[Run(
        tool=tool,
        invocations=[Invocation(
            execution_successful=True,
        )],
        results=[result],
    )],
)

# Export to JSON
sarif_json = sarif_log.model_dump_json(indent=2, exclude_none=True)
print(sarif_json)

Loading a SARIF Log from JSON

import json
from sarif_pydantic import SarifLog

# Load from a file
with open("example.sarif", "r") as f:
    sarif_data = json.load(f)

# Parse into a SarifLog object
sarif_log = SarifLog.model_validate(sarif_data)

# Access data via typed objects
for run in sarif_log.runs:
    for result in run.results or []:
        print(f"Rule: {result.rule_id}, Level: {result.level}")
        print(f"Message: {result.message.text}")

SARIF Specification

This implementation follows the SARIF 2.1.0 specification.

License

[LICENSE]

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

sarif_pydantic-0.1.0.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

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

sarif_pydantic-0.1.0-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file sarif_pydantic-0.1.0.tar.gz.

File metadata

  • Download URL: sarif_pydantic-0.1.0.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.11.4 Darwin/24.3.0

File hashes

Hashes for sarif_pydantic-0.1.0.tar.gz
Algorithm Hash digest
SHA256 4565f491a7d8e18b557face2882d1e2601a1b10a5eacbf3b89f5e9e20ee2df96
MD5 8a326e15363ec5c1987639e6638d8107
BLAKE2b-256 8c610a306a82230b9f13d53138e54c930aa888231d841b474cae11bae53edc7a

See more details on using hashes here.

File details

Details for the file sarif_pydantic-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: sarif_pydantic-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.11.4 Darwin/24.3.0

File hashes

Hashes for sarif_pydantic-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7b9b88df0a832e382648f1b0c0b6e7a03c2c73b0a63b47ebf223d31be3e7eb26
MD5 78d727e3bbf4af3aff67f98ad3ab1794
BLAKE2b-256 6dc78c1878c4c2bc8809c190e9a2fd984af3cef340207b1d3361924abfd88eb2

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