Skip to main content

SketchLog

Status Python Version License

Bounded-memory streaming metrics with explicit approximation guarantees.

SketchLog allows you to ingest high-throughput event streams and extract accurate percentiles and cardinalities in constant memory. It combines DDSketch for latencies, HyperLogLog for unique items, and Count-Min Sketch for event frequencies.

Instead of storing arrays of events or exporting raw telemetry, SketchLog compresses the statistical shape of your data in real time, making it ideal for continuous monitoring, edge devices, and memory-constrained environments.


📚 Documentation

The full documentation is available at SketchLog Documentation Site (or via /docs in the repository). It includes:

  • Architecture: Details on distributed merges, drift detection, and memory footprint.
  • Benchmarks: Memory footprint scaling and CPU throughput limits.
  • Guarantees: Published error bounds, implementation preconditions, and checked capacity limits.
  • Integrations: How to integrate with Prometheus, FastAPI, and OpenTelemetry.
  • API Reference: Core classes, methods, and persistence operations.
  • Contributing: Guidelines for contributing to SketchLog.

Local Documentation Build

To build and preview the documentation locally:

pip install ".[docs]"
mkdocs serve

Installation

1. The Core Library (Python)

If you just want to use the high-performance sketching data structures directly in Python:

pip install sketchlog

2. The Standalone Server

To run SketchLog as an independent network service (like Redis or Prometheus):

pip install "sketchlog[server]"
uvicorn sketchlog.server:app --port 8080

Quickstart

🐍 Python (Embedded Library)

from sketchlog import StreamLog

log = StreamLog()
log.add_latency(42.5)
log.add_batch([15.0, 88.2, 42.1])
log.add_unique("user_12345")
log.add_event("cache_miss", count=5)

print(f"p99 Latency:  {log.p99():.2f}ms")

🟨 TypeScript / Node.js SDK

Connect to the standalone server via HTTP:

npm install @sketchlog/client
import { SketchLogClient } from '@sketchlog/client';

const client = new SketchLogClient({ endpoint: 'http://localhost:8080' });

// Validated HTTP ingestion with bounded retries
await client.ingestEvents('production_api', {
  latencies: [42.5, 15.0, 88.2, 42.1],
  uniques: ["user_12345"],
  events: { "cache_miss": 5 }
});

🐹 Go SDK

go get github.com/SBALAVIGNESH123/sketchlog/clients/go@v1.2.1
import "github.com/SBALAVIGNESH123/sketchlog/clients/go"

client := sketchlog.NewClient(sketchlog.ClientOptions{
    Endpoint: "http://localhost:8080",
})

batch := sketchlog.EventBatch{
    Latencies: []float64{42.5, 15.0, 88.2, 42.1},
    Uniques:   []string{"user_12345"},
    Events:    map[string]int64{"cache_miss": 5},
}

err := client.IngestEvents(ctx, "production_api", batch)

Distributed Clustering (Beta)

SketchLog supports multi-node clustering without requiring external coordination services like Redis.

You can run a cluster using the following environment variables:

SKETCHLOG_NODE_ID="node-1"
SKETCHLOG_PEERS="http://node2:8000,http://node3:8000"
SKETCHLOG_CLUSTER_SECRET="your-secret-token"
uvicorn sketchlog.server:app --port 8000

Performance trade-off: Mesh mode currently uses deterministic Python sketches to guarantee identical merge state across heterogeneous nodes. Measure this mode with your own traffic before capacity planning.

Community

Join us in Slack! Join SketchLog Slack


What this is not

SketchLog is a streaming metrics compression layer. It is deliberately not:

  • Not a tracing system. No request paths, no correlation IDs, no causal chains.
  • Not a time-series database. No historical drill-down, no label indexing.
  • Not an observability platform. No raw log storage, no ad-hoc queries.
  • Not exact. All results are probabilistic with bounded error. If you need exact percentiles, use numpy.

MIT License

Download files

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

Source Distribution

sketchlog-1.2.1.tar.gz (136.7 kB view details)

Uploaded Source

Built Distributions

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

sketchlog-1.2.1-cp314-cp314-win_amd64.whl (410.7 kB view details)

Uploaded CPython 3.14Windows x86-64

sketchlog-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sketchlog-1.2.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (247.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sketchlog-1.2.1-cp314-cp314-macosx_11_0_arm64.whl (218.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sketchlog-1.2.1-cp314-cp314-macosx_10_15_x86_64.whl (227.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

sketchlog-1.2.1-cp313-cp313-win_amd64.whl (400.4 kB view details)

Uploaded CPython 3.13Windows x86-64

sketchlog-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sketchlog-1.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (247.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sketchlog-1.2.1-cp313-cp313-macosx_11_0_arm64.whl (218.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sketchlog-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl (227.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

sketchlog-1.2.1-cp312-cp312-win_amd64.whl (400.4 kB view details)

Uploaded CPython 3.12Windows x86-64

sketchlog-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sketchlog-1.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (247.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sketchlog-1.2.1-cp312-cp312-macosx_11_0_arm64.whl (218.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sketchlog-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl (227.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

sketchlog-1.2.1-cp311-cp311-win_amd64.whl (397.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sketchlog-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sketchlog-1.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (244.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sketchlog-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (216.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sketchlog-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl (224.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

sketchlog-1.2.1-cp310-cp310-win_amd64.whl (396.0 kB view details)

Uploaded CPython 3.10Windows x86-64

sketchlog-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sketchlog-1.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (243.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sketchlog-1.2.1-cp310-cp310-macosx_11_0_arm64.whl (215.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sketchlog-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl (222.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file sketchlog-1.2.1.tar.gz.

File metadata

  • Download URL: sketchlog-1.2.1.tar.gz
  • Upload date:
  • Size: 136.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for sketchlog-1.2.1.tar.gz
Algorithm Hash digest
SHA256 1a6d81d594f7f89c94cee84812918f48693dc55b6bbe0f84d1f24103483c3cfc
MD5 4660efe9627700bce4e5d2b89e41440a
BLAKE2b-256 14cf41a83eb477efdfe07915de97420ad66093ae93b3b3893c8e57dc4da873f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1.tar.gz:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sketchlog-1.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 410.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for sketchlog-1.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b01059d38d4f1175e9812a1d7f5cdab60cbe6db1fef2507519627f4f0397519a
MD5 38677a23f71a9215ba644adfaff8f696
BLAKE2b-256 b3af6b9354d9a5247a7338518bdc80fb5a3768cc98678ee9724b3e7041bb8fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63befbe14c29872f6d9403a65bf637921278231924922bcbab1185e2d4615d0a
MD5 62636d2a764db96aa8162500913cc427
BLAKE2b-256 2bf2fdd4a921f25daaa36d91a7df0223bd40b1c7fc174dae9f71a216b34f34f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 384a89b227a8ce0520ebf631f7e5234f180fcae213a7e64e8211a1053284e389
MD5 50cb439aa16b792afd4b8e9926996ab7
BLAKE2b-256 1fa09ef67d14c83b8fb048674e5a3cef5bd16f707352b28156d5257c928ff224

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ead3232ca93e49c397a5e516bc9e90fe3fc1316a9203c3b85b996a3c16fc3fbb
MD5 318cd3cd80ed24f3950ffdfcf9ebd06d
BLAKE2b-256 0f75013d2dc5e897326bc7cd07c0cf041504f85e2e0455da3e67dadef62921ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd469be182311a1b67232473894b76321340d2b82d78559a8d2c9b60ea4abfa9
MD5 4cf30d063d248f1f5967a1f176fa01ff
BLAKE2b-256 3a0c4935e6fd74033c7a4247cf8cce0bf832244d03f47e328fd4eca3d8f7f835

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sketchlog-1.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 400.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for sketchlog-1.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b74d3dfae9cc36f20ae5b0f9b85ba0a3ee3758d4fdce0b66a321937318757092
MD5 6b019149a872f9a592baf764af142387
BLAKE2b-256 9910a5a78d06f6ba412190aefa770aa4eb89ae25d4d0b0801a709d92fabceeba

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aed5af2924d476a71f69f340c9d4f3a6166aeb24f55d6179fa56b251ce6d8319
MD5 1a8e5fe666eeb911b67220adee956521
BLAKE2b-256 80fa7d954fe840d5a8e6e3a5617b337d8ae50c91463a7d3110150a1fe9a9bdd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d7702464a95482a61d72a7813e5aac7661c68d09c282a119574ac35c95be4bd
MD5 1ba96f5549f50dadf5c48ae6547e15bb
BLAKE2b-256 6d7166667847ef1f9af9b8a289ae034ffb881af19c3674db34eff766d28dfb15

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55d38080d1148c61baab869def1af70a7226d0ccc2a33382d3b9d66890f9da21
MD5 dd4392aea698e9046c62f3ec8a4d9d45
BLAKE2b-256 eeacf9e52a9d62c28a965fde098520781f0ff641b226214d23434e60d43c1ee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4b40acbde9e162e7cf48f4d675e1ddc16e30a817af364856a71f6218a3fe42b1
MD5 8a84d01162635cbc6845d7fd3ea87a2b
BLAKE2b-256 7e7706d2d8e61819dba8760f85571d27531c7a3a81854ed88d74adad3ffc8b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sketchlog-1.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 400.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for sketchlog-1.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb64b029d52dfec0f2ea9e468c79b0247b3ab0eb4d08ea6626ed890a88aa917a
MD5 fd625be6b8eab8d5c65f1d5e0b348135
BLAKE2b-256 323a61d19c974232dc70e1c6bab7870192664ba848bdd8da7fbf6c49aa9da0f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cf661beb5b78a0f87e556130c6e6f5ad53ab0bb1e3e781ebba0c3eaaf336645
MD5 d21e487e420311f615126bd7bc1666aa
BLAKE2b-256 ecaf2af13ac6eac7ebcfe38dcf67843eda359ca864cbb05979186f31b7206bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f761407d1e7ff338dfdacdd05a6f5e03857a7c9dcdc9c189b7c11a527b7c838a
MD5 222bd0fe13fae78c305cec7bc47d0ae0
BLAKE2b-256 1ce3e6b18d00fecd6cbc3cc5330d3b71e3f81bc12a2c236a6e22fae23c87222e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc9324d01d0ce6030aae4a405ec92132ed93b30426c6c0ddf2d12f942cd97115
MD5 04cd0c8218c32e56daa325e122045279
BLAKE2b-256 5e2ef63056afcd46493912aae057d3e2d83b6b9620d33ecc7c658641efef7db5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9445b266d21d9c4f341ed1f1b6185fe1e12cd844077e0d04cc9b5d6aed69de7f
MD5 4a597d49d5ef845aa8e7ed9ce147eff5
BLAKE2b-256 1df77edf9be088ca65759329237674de1b31c1bf710946629c209a8f54ca0b23

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sketchlog-1.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 397.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for sketchlog-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91fab300436177c05f77f75e9fb7bf89d2c03d1d607aa3e8e5b3400fd6123421
MD5 e5e53d22279f0547c5e60e7bd7c0eeeb
BLAKE2b-256 866e3e7905fc9f901df8036809e250ee3c1180b19120917aa32d7e421d1190f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a429572335be833efcb41c695969668ea0755df00015b9d4f95c6b87e3290f3
MD5 2d2ab6e2cfddfb5f6786e87c6970029c
BLAKE2b-256 6ce1e536a749fb50791fb9b2744a05e998fcfcd06d52f7123af560272faf79ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef1033089ab78de87a95a1a1de2318fb6b57c3d06c1fac5f1f925a361acf5be1
MD5 d0daacf40903888314241d4ce27f54cd
BLAKE2b-256 d64720197d5474cb402bc3563786e2291ad26a012e3b3906e156ab0c7dd53973

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a7e88126348dca951c0fdcfe3a73f65c3c3771b15f55593dfd7fb582e23109e
MD5 8206613d2569611c9bc5d352b8cd6a69
BLAKE2b-256 a6c06322ccea5ea0cd0b8e5deb367c2baaea4f4a7e36224830fa5385f9bf5cce

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 725c4b960cad21cec3c1078618b45396cf1fe77811fa7a26c99e8eed1f7648dd
MD5 5a52d396e07cc2426b81683e77ef472e
BLAKE2b-256 b87272fe258cc40adb51d1e2b4ca6a661ca580272a58ad63dc044a7e7286abb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sketchlog-1.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 396.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for sketchlog-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7ac255a3977ebe77eae1c7d93b835f69379415b5e3811c3f8bfe8af8b4c04879
MD5 d2bd376ca422f2a04e866b2713c254e3
BLAKE2b-256 8116dce60f367e9838a05976ec3de6d09e8a44c5b01a0ac14a39e9ad71b81411

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 911462ba818b034f55e46c4914e6f227d4ad0431f4e89d88c4d1ff06faf69136
MD5 194648826559afd89003c175b5e7d1b7
BLAKE2b-256 f9d5922ef90c73da9654036263431b71e1d4b851cdcf8baf8caefbf7e9196577

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c53cc981db5e3eddf48297482402bef5d362962cedcf13c3dc61c072485751c
MD5 1feb6ecc3bbb004fb59b3e00bbf35c8d
BLAKE2b-256 430edb38dd5c286f8448045ca952d4702435818fe1c0c01beacc12c9665d530c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa731779278fdd4ff005fd3a31cfa5a2bb36a050a1365af37a72b882d5a78954
MD5 e009743076845d6745086e2e6c454969
BLAKE2b-256 9dbb369b51661f8ce04af8a19cf860ae74f365f6b492bfdcb992b4595e48a57d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

File details

Details for the file sketchlog-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sketchlog-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93bfefda6de4238bcb1f2d8d7f29a56735358c82a0474643ff2cb258aaa67c1a
MD5 388a285e0c2afb9dc416666e4a76a43b
BLAKE2b-256 37320ed6919b7149ca58974ea5af2096ffa32f7a7971019c228a82f14c74f99a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sketchlog-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on SBALAVIGNESH123/sketchlog

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

Release history Release notifications | RSS feed

1.2.5

26 files

1.2.4

26 files

1.2.3

26 files

This release

1.2.1 This release

26 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page