Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions libs/kest-core/python/examples/bench/bench_throughput.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
KEST_BACKEND=python uv run python examples/bench/bench_throughput.py
"""

from __future__ import annotations

import concurrent.futures
import json
import os
Expand All @@ -27,7 +25,13 @@
# Allow running from the bench directory or from the project root.
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../../"))

from kest.core import KestEntry, sign_entry, LocalEd25519Provider, Passport, PassportVerifier
from kest.core import (
KestEntry,
sign_entry,
LocalEd25519Provider,
Passport,
PassportVerifier,
)

PROVIDER = LocalEd25519Provider()
THREAD_COUNTS = [1, 2, 4, 8]
Expand Down
Loading