Skip to main content

Adaptive Guarded Object Notation - A schema-driven, token-efficient data interchange format for LLMs

Project description

AGON

PyPI version Python versions License: MIT CI codecov Rust PyO3 Ruff Documentation

Adaptive Guarded Object Notation - a self-describing, multi-format JSON encoding optimized for LLM prompts with one guarantee: never worse than JSON.

📚 Full Documentation | 🚀 Quick Start | ⚡ Benchmarks

Table of Contents

Why AGON?

The Problem: Fixed-format encoders can actually make token counts worse. When your data doesn't match the encoder's assumptions (e.g., deeply nested objects, sparse arrays, irregular structures), you pay the overhead of the format without the benefits.

AGON's Solution: Adaptive encoding with multiple guard rails.

result = AGON.encode(data, format="auto")
# Auto tries: rows, columns, struct
# Returns: whichever saves the most tokens
# Falls back: to compact JSON if none are better

Quick Comparison: AGON vs TOON

Aspect TOON AGON
Approach Single unified format Multiple adaptive formats + JSON fallback
Risk Can be worse than JSON on irregular data Never worse than JSON (guaranteed)
Format Selection Always applies TOON encoding Auto-selects best format or falls back to JSON
Best For Uniform arrays, consistent pipelines Variable data shapes, risk-averse optimization
Philosophy "One format for all JSON" "Best format for each data shape, or JSON"

Installation

pip install agon-python

Or with uv:

uv add agon-python

Quick Start

Basic Usage: Encode and Use in LLM Prompts

from agon import AGON

# Sample data - list of objects with repeated structure
data = [
    {"id": 1, "name": "Alice", "role": "admin"},
    {"id": 2, "name": "Bob", "role": "user"},
    {"id": 3, "name": "Charlie", "role": "user"},
]

# Encode with auto-selection (tries rows/columns/struct, picks best or falls back to JSON)
result = AGON.encode(data, format="auto")
print(f"Selected format: {result.format}")  # → "rows"
print(f"Encoded output:\n{result}")
# Outputs clean format WITHOUT @AGON header:
# [3]{id	name	role}
# 1	Alice	admin
# 2	Bob	user
# 3	Charlie	user

# Verify lossless round-trip
decoded = AGON.decode(result)
assert decoded == data  # ✅ Perfect reconstruction

# Use directly in LLM prompts - no header needed for sending data to LLMs
prompt = f"""Analyze this user data:

{result}

What percentage are admins?"""

# LLM can easily parse the structured format and respond with: "33.3% (1 out of 3 users)"

Experimental: Asking LLMs to Generate AGON Format

⚠️ Note: LLMs have NOT been trained on AGON format, so accuracy cannot be guaranteed. This is an experimental feature. For production use, prefer sending AGON to LLMs (reliable) over asking LLMs to generate AGON (experimental, requires validation).

from agon import AGON

# Same data as before
data = [
    {"id": 1, "name": "Alice", "role": "admin"},
    {"id": 2, "name": "Bob", "role": "user"},
    {"id": 3, "name": "Charlie", "role": "user"},
]

result = AGON.encode(data, format="auto")

# To ask an LLM to respond in AGON format, provide both:
# 1. Generation instructions via result.hint()
# 2. An example with header via result.with_header()
prompt = f"""Analyze this user data and return enriched data in AGON format.

Instructions: {result.hint()}

Example output:
{result.with_header()}

Task: Add an is_admin boolean field and return in the same format."""

# Example LLM response (hypothetical - accuracy not guaranteed)
llm_response = """@AGON rows

[3]{name	role	is_admin}
Alice	admin	true
Bob	user	false
Charlie	user	false"""

# Decode LLM response using header to auto-detect format
parsed = AGON.decode(llm_response)
# → [{"name": "Alice", "role": "admin", "is_admin": True},
#    {"name": "Bob", "role": "user", "is_admin": False},
#    {"name": "Charlie", "role": "user", "is_admin": False}]

admin_count = sum(1 for user in parsed if user.get("is_admin"))
print(f"Admin percentage: {admin_count / len(parsed) * 100:.1f}%")  # → 33.3%

How It Works

AGON provides three specialized repetition-aware encoding formats that are friendly to LLMs, powered by a high-performance Rust core for minimal latency:

The Three Formats

  1. AGONRows: Row-based tabular encoding for arrays of uniform objects

    • Similar to TOON format
    • Best for: Uniform arrays with consistent fields
    • Example: User lists, transaction logs, simple metrics
  2. AGONColumns: Columnar encoding with type clustering

    • Transposes data: groups same-type values together
    • Best for: Wide tables (many columns), numeric-heavy data
    • Example: Financial data with 20+ fields per record
  3. AGONStruct: Template-based encoding for repeated nested patterns

    • Similar to TRON format but with abbreviated struct names
    • Best for: Complex nested objects with repeated shapes
    • Example: Market data with nested {fmt, raw} or {value, timestamp} patterns

Rust-Powered Performance

AGON's core encoding/decoding is implemented in Rust with PyO3 bindings, delivering:

  • Parallel format selection: Auto mode uses Rayon to encode all formats concurrently
  • Native Python integration: Format classes (AGONRows, AGONColumns, AGONStruct) exposed as Python objects via PyO3

Adaptive Auto Mode

result = AGON.encode(data, format="auto")

How auto works:

  1. Try all formats in parallel: Rust encodes rows, columns, struct concurrently
  2. Count tokens: Measures each encoding's token count
  3. Compare to JSON: Calculates savings vs compact JSON baseline
  4. Apply threshold: Requires minimum savings (default 10%) to use specialized format
  5. Select winner: Returns format with best savings, or JSON if none meet threshold

The guarantee: Auto mode never returns a format with more tokens than compact JSON. If all specialized formats are worse or marginally better, it returns JSON.

Example decision tree:

Data shape analysis:
  → Rows:    96 tokens (30.9% better than JSON)   ✅ Winner
  → Columns: 108 tokens (22.3% better than JSON)  ❌ Not optimal
  → Struct:  130 tokens (6.5% better than JSON)   ❌ Not optimal
  → JSON:    139 tokens (baseline)                ❌ Fallback

Decision: Use rows (best savings, exceeds 10% threshold)

All non-JSON encodings start with an @AGON ... header so they can be decoded later.

Concrete Example: TOON vs AGON

Let's compare formats on the same data with real token counts (using o200k_base tokenizer).

Source Data: toon.json

This example demonstrates encoding a list of hiking records with nested context and uniform arrays—a common LLM use case.

JSON (pretty, 229 tokens - baseline):

{
  "context": {"task": "Our favorite hikes together", "location": "Boulder", "season": "spring_2025"},
  "friends": ["ana", "luis", "sam"],
  "hikes": [
    {"id": 1, "name": "Blue Lake Trail", "distanceKm": 7.5, "elevationGain": 320, "companion": "ana", "wasSunny": true},
    {"id": 2, "name": "Ridge Overlook", "distanceKm": 9.2, "elevationGain": 540, "companion": "luis", "wasSunny": false},
    {"id": 3, "name": "Wildflower Loop", "distanceKm": 5.1, "elevationGain": 180, "companion": "sam", "wasSunny": true}
  ]
}

JSON (compact, 139 tokens):

{"context":{"task":"Our favorite hikes together","location":"Boulder","season":"spring_2025"},"friends":["ana","luis","sam"],"hikes":[{"id":1,"name":"Blue Lake Trail","distanceKm":7.5,"elevationGain":320,"companion":"ana","wasSunny":true},{"id":2,"name":"Ridge Overlook","distanceKm":9.2,"elevationGain":540,"companion":"luis","wasSunny":false},{"id":3,"name":"Wildflower Loop","distanceKm":5.1,"elevationGain":180,"companion":"sam","wasSunny":true}]}

Token Comparison

Format Tokens Savings vs Pretty Savings vs Compact Winner
JSON (pretty) 229 — (baseline) -64.7% 📉
JSON (compact) 139 +39.3% ✅ — (baseline)
TOON 96 +58.1% +30.9%
AGON rows 96 +58.1% +30.9% Tied with TOON
AGON columns 108 +52.8% +22.3%
AGON struct 130 +43.2% +6.5%
AGON auto 96 +58.1% +30.9% Winner (selected rows)

Format Encodings with Explanations

TOON (96 tokens, +58.1% savings):

context:
  task: Our favorite hikes together
  location: Boulder
  season: spring_2025
friends[3]: ana,luis,sam
hikes[3]{id,name,distanceKm,elevationGain,companion,wasSunny}:
  1,Blue Lake Trail,7.5,320,ana,true
  2,Ridge Overlook,9.2,540,luis,false
  3,Wildflower Loop,5.1,180,sam,true

How it works: TOON uses YAML-like indentation for nested objects and comma-delimited rows for arrays. The [3] declares array length and {fields} lists column headers—giving LLMs explicit structure to validate against.


AGON rows (96 tokens, +58.1% savings - nearly identical to TOON!):

context:
  task: Our favorite hikes together
  location: Boulder
  season: spring_2025
friends[3]: ana	luis	sam
hikes[3]{id	name	distanceKm	elevationGain	companion	wasSunny}
1	Blue Lake Trail	7.5	320	ana	true
2	Ridge Overlook	9.2	540	luis	false
3	Wildflower Loop	5.1	180	sam	true

How it works: AGON rows uses the same structure as TOON but with tab-delimited rows instead of commas. Both achieve identical token counts (96 tokens) because the delimiter choice doesn't significantly affect tokenization. Auto mode chose rows because it had the lowest token count (96 vs 108 for columns vs 130 for struct).


AGON columns (108 tokens, +52.8% savings):

context:
  task: Our favorite hikes together
  location: Boulder
  season: spring_2025
friends[3]: ana	luis	sam
hikes[3]
├ id: 1	2	3
├ name: Blue Lake Trail	Ridge Overlook	Wildflower Loop
├ distanceKm: 7.5	9.2	5.1
├ elevationGain: 320	540	180
├ companion: ana	luis	sam
└ wasSunny: true	false	true

How it works: Columnar format transposes the data, grouping same-type values together. This can be more token-efficient for wide tables (20+ columns) or numeric-heavy data where type clustering improves compression. Not selected here because rows format is better for this data shape.


AGON struct (144 tokens, +37.1% savings):

@CDEI: companion, distanceKm, elevationGain, id, name, wasSunny

context:
  task: Our favorite hikes together
  location: Boulder
  season: spring_2025
friends
  [3]:
    - ana
    - luis
    - sam
hikes
  [3]:
    - CDEI(ana, 7.5, 320, 1, Blue Lake Trail, true)
    - CDEI(luis, 9.2, 540, 2, Ridge Overlook, false)
    - CDEI(sam, 5.1, 180, 3, Wildflower Loop, true)

How it works: Struct format declares reusable templates (@CDEI: fields) once at the top, then instantiates them with just values CDEI(...). The struct name is generated from the first letter of each field (Companion, DistanceKm, ElevationGain, Id → CDEI).

When AGON Falls Back to JSON

But what about data where specialized formats don't provide enough benefit? Let's look at gainers.json (100 complex quote objects with deeply nested structures):

Format Tokens Savings vs Pretty JSON Decision
JSON (pretty) 142,791 — (baseline)
JSON (compact) 91,634 +35.8%
AGON rows 113,132 +20.8%
AGON columns 113,132 +20.8%
AGON struct 89,011 +37.7% ✅ (best format!)
AGON auto 91,634 +35.8% (returned compact JSON) Safe choice

AGON's safety net in action: Even though struct format achieved the best savings (37.7%), when compared against compact JSON (the real alternative), struct only saved 2.9%—below the minimum threshold (default 10%). Rather than risk the encoding overhead for marginal gains, auto returned compact JSON, guaranteeing excellent performance with zero complexity.

Key insight: Rows/columns formats actually hurt compared to compact JSON (113K vs 91K tokens), but auto intelligently avoided them. And while struct was marginally better, the gains weren't worth the format overhead.

With AGON: You get compact JSON back (35.8% better than pretty), paying zero format complexity, with zero risk.

Use Cases

AGON excels in scenarios where data structure varies and intelligent format selection provides value:

  • Variable data pipelines: Data that changes shape (sometimes uniform arrays, sometimes nested objects) where auto-mode selects the optimal format
  • Data projection workflows: Use cases where filtering fields before encoding is important (AGON.project_data)
  • Cost-sensitive applications: Where honest fallback to compact JSON prevents paying encoding overhead when specialized formats don't provide enough benefit

When AGON helps most:

  • Repeated nested patterns (AGONStruct: up to 49% savings vs pretty JSON)
  • Uniform arrays (AGONRows: up to 58% savings vs pretty JSON)
  • Mixed data types where adaptive selection matters

When AGON helps least:

  • Tiny JSON payloads (encoding overhead > savings)
  • Highly irregular objects with no repetition (auto-mode falls back to JSON)

API Reference

Encoding

from agon import AGON, Encoding

# Auto (recommended) - uses fast byte-length estimation
result = AGON.encode(data)

# Auto with accurate token counting (slower but precise)
result = AGON.encode(data, encoding="o200k_base")  # or "cl100k_base", "p50k_base", etc.

# Choose a specific format
result = AGON.encode(data, format="rows")
result = AGON.encode(data, format="columns")
result = AGON.encode(data, format="struct")
result = AGON.encode(data, format="json")

# Auto-mode controls
result = AGON.encode(data, format="auto", force=True)        # never pick JSON
result = AGON.encode(data, format="auto", min_savings=0.10)  # require 10% savings vs JSON

Decoding

# Decode AGONEncoding directly
result = AGON.encode(data, format="rows")
decoded = AGON.decode(result)

# Decode string with auto-detection by header
decoded = AGON.decode(payload_with_header)

# Decode string with explicit format (header not required)
decoded = AGON.decode(payload_without_header, format="rows")

AGONEncoding Methods

result = AGON.encode(data, format="auto")

# Get the encoded text (for use in LLM prompts)
text = str(result)  # or just use result directly in f-strings
text = result.text  # explicit access

# Get character count
length = len(result)

# Get format that was selected
format_used = result.format  # "rows", "columns", "struct", or "json"

# Get format header
header = result.header  # "@AGON rows", "@AGON columns", etc.

# Get text with header prepended (for auto-detect decoding)
with_header = result.with_header()

# Get generation instructions for LLMs
hint = result.hint()

Helpers

# Keep only specific fields (supports dotted paths like "user.profile.name" or "quotes.symbol")
projected = AGON.project_data(data, ["id", "name"])

# Token counting helper (uses Rust tiktoken implementation)
tokens = AGON.count_tokens("hello world")  # default: o200k_base
tokens = AGON.count_tokens("hello world", encoding="cl100k_base")  # GPT-4/3.5-turbo

Development

This project uses uv for dependency management.

# Clone the repository
git clone https://github.com/Verdenroz/agon-python.git
cd agon

# Install dependencies (including dev)
uv sync --dev

# Run tests
uv run pytest

# Run tests with coverage
uv run pytest --cov=agon --cov-report=html

# Run linting
uv run ruff check src tests
uv run ruff format src tests

# Run type checking
uv run basedpyright src

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

Documentation

Full documentation is available at https://Verdenroz.github.io/agon-python/

This repo includes an MkDocs site under docs/.

# Serve locally
make docs

Benchmarks

AGON's adaptive approach yields variable results depending on data structure and format used. Benchmarks on actual test fixtures from tests/data/.

Performance

Encoding and decoding times for all formats across all datasets:

Dataset Size Records JSON Rows Columns Struct Auto (selected)
toon.json 0.6 KB 1 0.00 / 0.01 ms 0.10 / 0.30 ms 0.09 / 0.12 ms 0.14 / 0.29 ms 0.40 / 0.48 ms (rows)
scars.json 9.8 KB 1 0.01 / 0.05 ms 0.56 / 3.26 ms 0.51 / 0.76 ms 0.64 / 3.20 ms 1.65 / 0.11 ms (json)
128KB.json 249 KB 788 0.16 / 0.91 ms 16.82 / 22.68 ms 14.10 / 17.28 ms 19.49 / 60.26 ms 27.94 / 19.91 ms (rows)
historical.json 127 KB 1 1.05 / 2.50 ms 20.72 / 131.49 ms 21.09 / 30.78 ms 31.90 / 68.84 ms 36.22 / 68.35 ms (struct)
chart.json 196 KB 1,256 0.50 / 1.30 ms 26.46 / 33.20 ms 25.27 / 31.50 ms 35.97 / 57.79 ms 36.55 / 33.39 ms (rows)
quote.json 283 KB 1 0.62 / 1.91 ms 47.15 / 92.92 ms 42.86 / 52.45 ms 67.44 / 102.22 ms 63.21 / 45.21 ms (columns)
gainers.json 257 KB 100 0.72 / 2.06 ms 47.46 / 241.39 ms 42.46 / 68.67 ms 62.38 / 139.56 ms 71.10 / 141.88 ms (struct)

Token Efficiency

Dataset Type JSON Pretty JSON Compact Rows Columns Struct Auto Selected
toon.json Hiking records (nested) 229 139 (+39.3%) 96 (+58.1%) 108 (+52.8%) 144 (+37.1%) 96 rows
scars.json Error records 2,600 2,144 (+17.5%) 2,225 (+14.4%) 2,230 (+14.2%) 2,448 (+5.8%) 2,144 json ⚠️
128KB.json 788 employee records 77,346 62,378 (+19.4%) 54,622 (+29.4%) 54,292 (+29.8%) 59,926 (+22.5%) 54,622 rows
historical.json Historical OHLCV data 84,094 55,228 (+34.3%) 70,286 (+16.4%) 70,286 (+16.4%) 48,969 (+41.8%) 48,969 struct
chart.json 1,256 candles 101,767 71,623 (+29.6%) 51,541 (+49.4%) 51,558 (+49.3%) 65,364 (+35.8%) 51,541 rows
quote.json Single quote (nested) 128,981 85,956 (+33.4%) 67,251 (+47.9%) 65,586 (+49.2%) 69,053 (+46.5%) 65,586 columns
gainers.json 100 complex quotes 142,791 91,634 (+35.8%) 113,132 (+20.8%) 113,132 (+20.8%) 89,012 (+37.7%) 89,012 struct

Key insights:

  • rows format excels at uniform arrays (toon, chart, 128KB)
  • columns format wins for wide tables with many fields (quote)
  • struct format dominates deeply nested repeated patterns (historical, gainers)
  • json fallback returns compact JSON when specialized formats don't meet min_savings threshold using compact JSON as its baseline.

Running Benchmarks

# Run performance benchmarks (token counts + encode/decode times)
make benchmarks

# Or directly with pytest
uv run pytest tests/test_benchmarks.py -s --no-cov -o addopts=""

The documentation site also includes a Benchmarks page with recent results and methodology.

Related Projects and Resources

TOON Format

TRON Format

LLM Token Optimization

Contributing

Contributions welcome! AGON is in active development. Areas of interest:

  • Additional format implementations (e.g., AGONTable for markdown tables)
  • Performance optimizations for large datasets
  • LLM parsing reliability tests
  • Cross-language implementations (Go, Rust, TypeScript ports welcome)
  • Editor support (VS Code extension, syntax highlighting)

Please open issues or PRs on GitHub.

License

MIT License - see LICENSE for details.


AGON - Adaptive Guarded Object Notation

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

agon_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

agon_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

agon_python-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

agon_python-0.2.0-cp314-cp314-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14Windows x86-64

agon_python-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

agon_python-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

agon_python-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

agon_python-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

agon_python-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

agon_python-0.2.0-cp313-cp313-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.13Windows x86-64

agon_python-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

agon_python-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

agon_python-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

agon_python-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

agon_python-0.2.0-cp312-cp312-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.12Windows x86-64

agon_python-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

agon_python-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

agon_python-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

agon_python-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

agon_python-0.2.0-cp311-cp311-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.11Windows x86-64

agon_python-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

agon_python-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

agon_python-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

agon_python-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file agon_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bbd15d42d98999e5c0083881c689f4dc82a94f8eca263c637b0ad8f67f550f2
MD5 954fbaf550b59b3c986685a212090713
BLAKE2b-256 40fd7b967b9560f2ed364b874c8cc164fe09e91203620b53397d9dbd4b759d42

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8bc2967d73b52073b863782598742dd664bf3ef4315a831de0a5a2353e2d090
MD5 819292e8615f7b77502faee3375f2504
BLAKE2b-256 a7753672981bed8dbbdad140ec42200e852e833dfaee085b9f9954425fc00470

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ffcd7a20ae79de8f5ec3211261616eb3976c3504b0d36bb5cfe43d86cac184a
MD5 71deb0d0d317c2388d8106f0eaafa81a
BLAKE2b-256 a1a9bba7922a953775ba34bf986cd2cf1f59a516b1ee9d8d48fb7c1d0f5aec2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7776fe1e488ec055e48a586fcca6f172f0e8009f2b54d95e94b2a23be77a3b5a
MD5 f3edd990eae29da0309cfbb5dc1d6bb6
BLAKE2b-256 d3964953c9bee3343ee961718d657bbe1f573e510cb0c91300f2a28fa87a9f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 361665a9596a31b6402a842d86b9c32df59333503514d101ce91910c655b9510
MD5 3174cacc16e17e4a2122f56443cc9d70
BLAKE2b-256 290830e334a31cef7ba9bfb1b48759db5927bfb517dfa784fe504cdb0c0f5308

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b748b9c930020aa3672b3ab070c88ef6b8099dc53be5b1c14e890f839f48c64
MD5 933891e15c75ea68cc3abde6f6bc0520
BLAKE2b-256 0b7515b8090b5d977896c6d0f1c279d2c2aa451bc05314cea7662ffc6d950a2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88679c858667b7f0cb92d2991185d661f13e2cb6dfd2d3efd815711c2a449311
MD5 c9013494c75e417be23f5319e0a6eb6b
BLAKE2b-256 75739be3a1a1ba86abd7539dcf97e910e2666e0b2594c32a2d384ad45cdf060f

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82f1d8c5e6fe0c90659ad4606efd90e3b9591c87dd1cf19f2b48131106d2c0c7
MD5 1297bea997ff2a69340d75641fe290ec
BLAKE2b-256 859b46da952cd24bee92d576b4b61757bbe833512e54a3e912c6444848051bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8202ac6d1a49884c81f3bf2c7cb08e20ec80b3783ae9e91e29af85dc9b4a36a
MD5 2498f459fde159660e96b54215a7ca44
BLAKE2b-256 2d2b467bfa75a2e3883c9802f767283caefcb58f1eb822b4ae427ee59b38bfe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fdf2ff2f4271446baa073ecc4ca768239be7e4d1b4a779df270d431ca18001c0
MD5 16c2f64869d85789c65785047259cd88
BLAKE2b-256 fa140ebafbacedb3fdd90b8193ce65423b08961edbfdc58a6132d7ef808a8e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d3fe9fb9fe53dddef819b3dcc29ca2ace133b326f40e7d2395acfb492727ed2
MD5 fc6d7c2527096b3bd176172c7d96374b
BLAKE2b-256 816eddb7cf6c9337b574bbcd19ad57317910fa366f12490d3602c6640743c99f

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb9d2e4c5ab13773a1e698dd21c929ba799b28650cf30fddeb57f57e37378241
MD5 2b5173420b748a1fdee1363c0f0ac0a4
BLAKE2b-256 20ab0f461d9a45f71ad9e330961400cfae09d11286ac68e5c5c56605dfd28c49

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 625ab80a1bd160ff11be855e9fec60173918d902ff8c57d08a03d903ba5dfcd9
MD5 0a2ebe4976d27ce5f9e1ef9819d618de
BLAKE2b-256 e7ed13ffae54e144b800899fe8e9ea1c94607c6e4ee4abe36243e15ddca86c25

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0677af1b2c0245983b8002213257a7b41f5035ee197714e71c9a51e695758d1a
MD5 53fca0f24d6ab1aa9e3a9f3da3e72b61
BLAKE2b-256 50f0b86c680bc23999a9c9ed47f811ef6fc2cd559842654b9d91813b68145028

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 67a07df886c9475a6224400181ee2c2f6b6dcba720095b8a2b41379da1046f61
MD5 391e5a86822f4bc70fe6dab75f983210
BLAKE2b-256 a8102f55f66422412aea3c8d96a69a206adfa17ac15a168c078dfa8eb9829e89

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b419fbee9da25cf331086c537ba0bbc1c7cf64b412ac32d7b3dbdcba0800aab
MD5 caaa4b647b1c24353944e04a4697115d
BLAKE2b-256 81ae74201a223ca76e53a04e28db5089d18a8794ae8be2809c3613ec7a9d179d

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7f2a194592831d66771ae5eff560a0cd13ab35eabcc0ced5b7e9a4100ac228b
MD5 6a9f8372e6df548f318686715104d979
BLAKE2b-256 e441558cd30bbb37bbcd0b791a32380cb24282829d77a03cccb7fd6e22f15642

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c294844d70d7ffc45693211b1cb008e5042913d5e783390b205c372797d85ac4
MD5 94ef9f812bf4536db0cb04dbed221370
BLAKE2b-256 cb605e9e705acec1c0368d208780e0702edbcb8f0d87bd48206d00efe88a24eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d275316c00f5ce50c16f210290eed8e9d3cef9050ea0efde4285dd0985177504
MD5 29007bd575354119a1c8f644750e380d
BLAKE2b-256 6bf8b3e1abb5efc12c4fdebc273e92399da7cefd34e6139514d79be89cface86

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e54807fbe8c92259088d46cec8622da8b7bae69ef59ac662295de7129727409e
MD5 c508f9fcb3718e2e879a9aa5392a6f62
BLAKE2b-256 97345eddd82c028ae0c74e159357d3af34f4e1e01803e3a681da1cf5bb9b3549

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d497b25ff5628e2095d2d727fc72d23da6dc6a4f285bc9135058934056a9c7e2
MD5 edec22c71b2e33d01dd9883f1940548c
BLAKE2b-256 27fe820552e0aea3928eefe4ffc40478cc7d58b75954a7dfd8501744c6fb597c

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b5814ac30e5ef0f636b39572c8f438a2936b67f21ad67fe55745b530fd88f97
MD5 56b229aeb919a05544013c97bc068b22
BLAKE2b-256 fbd9bf975bd1a723800992f5a8a97cd476999c872ca8bbbb67b285daa0a561d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54817335e2001232aba8dfa31213fe90367d05ceb803eed29102e33f7e77694e
MD5 f86b7361ed3386a1973b9c5d53a9701d
BLAKE2b-256 6a4df6b8719625a1ca2a4788861e3a75b603762f9f2a1f645442e0fd78390bf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agon_python-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for agon_python-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 addf461931f802fbb051a4a9fe52b9e02a9c175803592e0400010a57be5ec4a1
MD5 977bccc10d50648b586cb3c80538aa14
BLAKE2b-256 f119b3a194582fccbd27563cd8380de49bdb7631c97dc7af488d4bbabdd6008f

See more details on using hashes here.

Provenance

The following attestation bundles were made for agon_python-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Verdenroz/agon-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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