Skip to main content

Beats, downbeats and bars from neural logits — a fast state-space decoder.

Project description

metricon

Beats, downbeats and bars from neural logits — a fast state-space decoder.

metricon is the decoder half of a beat-tracking pipeline. You bring per-frame beat/downbeat logits from any model (e.g. Beat This!, an RNN/TCN, your own); metricon turns them into metrical structure — beats, downbeats, tempo and meter — with a state-space HMM decoded by Viterbi. No audio, no neural net, no torch: just numpy.

import metricon

beats = metricon.track_beats(beat_logits, fps=50)
print(beats.times)            # numpy array of beat times (seconds)
beats.to_tsv("beats.tsv")

From probabilities instead of logits:

act = metricon.Activations.from_activations(beat_prob, fps=50)
beats = metricon.track_beats(act)

Downbeats, bars and meter (needs downbeat logits):

# one meter for the whole piece (the best-scoring of the candidates)
bars = metricon.track_downbeats(beat_logits, downbeat_logits, beats_per_bar=(3, 4))

# or let the time signature change within the piece
bars = metricon.track_bars(beat_logits, downbeat_logits, beats_per_bar=(3, 4, 6))
print(bars.times)            # beat times (seconds)
print(bars.numbers)          # position in the bar, 1 = downbeat
print(bars.downbeat_times)   # just the downbeats

Constrain the path through events you already know (the rest are filled in) — beats for track_beats, beats and/or downbeats for the bar trackers:

beats = metricon.track_beats(beat_logits, fps=50, anchors=[1.02, 2.05, 3.07])

# force bar lines without pinning the meter — the decoder still picks 3/4 vs 4/4
bars = metricon.track_bars(beat_logits, downbeat_logits,
                           downbeat_anchors=[0.51, 2.49, 4.47])

See docs/api.md for the full API.

Why

Built from the published Krebs/Böck/Widmer equations (CC BY 4.0 — see docs/algorithm.md): the efficient bar-pointer DBN with a fast, low-memory decoder that comfortably handles long, high-fps tracks.

Status

Beats, downbeats, bars and within-song meter changes all work today, decoded by the compiled float32 kernel, plus "fill-in" anchored decoding from known beats and downbeats.

Roadmap

  • Arbitrary beat-in-bar anchors. Beat and downbeat anchors work today (force a beat, or a downbeat / bar line, at a known time). Forcing a specific beat-in-bar position — e.g. "this is beat 3 of the bar" — needs per-state masking in the decoder rather than the current per-column masking, since the beat-in-bar lives in the state, not the emission column. Planned.

License

MIT. See NOTICE for algorithm citations.

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

metricon-0.0.2.tar.gz (22.5 kB view details)

Uploaded Source

Built Distributions

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

metricon-0.0.2-cp313-cp313-win_amd64.whl (98.6 kB view details)

Uploaded CPython 3.13Windows x86-64

metricon-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (623.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

metricon-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (599.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

metricon-0.0.2-cp313-cp313-macosx_11_0_arm64.whl (101.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

metricon-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl (108.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

metricon-0.0.2-cp312-cp312-win_amd64.whl (98.7 kB view details)

Uploaded CPython 3.12Windows x86-64

metricon-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (625.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

metricon-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

metricon-0.0.2-cp312-cp312-macosx_11_0_arm64.whl (102.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

metricon-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl (109.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

metricon-0.0.2-cp311-cp311-win_amd64.whl (100.7 kB view details)

Uploaded CPython 3.11Windows x86-64

metricon-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (651.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

metricon-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

metricon-0.0.2-cp311-cp311-macosx_11_0_arm64.whl (104.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

metricon-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl (112.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

metricon-0.0.2-cp310-cp310-win_amd64.whl (100.8 kB view details)

Uploaded CPython 3.10Windows x86-64

metricon-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (616.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

metricon-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

metricon-0.0.2-cp310-cp310-macosx_11_0_arm64.whl (104.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

metricon-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl (112.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

metricon-0.0.2-cp39-cp39-win_amd64.whl (101.1 kB view details)

Uploaded CPython 3.9Windows x86-64

metricon-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (615.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

metricon-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (589.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

metricon-0.0.2-cp39-cp39-macosx_11_0_arm64.whl (104.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

metricon-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl (112.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file metricon-0.0.2.tar.gz.

File metadata

  • Download URL: metricon-0.0.2.tar.gz
  • Upload date:
  • Size: 22.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for metricon-0.0.2.tar.gz
Algorithm Hash digest
SHA256 2f234206dfce0e340e52966e8db16c7c323fd1b5a34a1ab51ca1e14ea75d8bba
MD5 db95a3e604655ebb8387a2ff244d0849
BLAKE2b-256 a6141a5e264d9f9377dab0064f12837db82febf4f35b3a3bd611440776b0d416

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2.tar.gz:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: metricon-0.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 98.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for metricon-0.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d351bcf2a0891c3a0479400a4bf4b0713cb27c170cb49c8fea795e3b6cf95ed1
MD5 a67a3f6eab85a5741041479d69c77e0a
BLAKE2b-256 3bc0d4a7f20ad3044b025eaec66430d3a8f4293bc497320c640a8eddf2c32313

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp313-cp313-win_amd64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 259838d86ebfd5c1af624225d3a66657cd42d97fda490969bc3577a1ed3f1a97
MD5 08ad14e4cf94b8c8e37e8bb03e9c0adf
BLAKE2b-256 be5ae10cd5f414b11e9f41412356c550c349f76bcc089b6a5a4d00ee2ba19fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a60d001d818dd62021a1dec449f1df1310095aaa1fa1b1839add73b6566b7fa1
MD5 20410080a0feb426cd09848f5ee006bc
BLAKE2b-256 4a676ea09c57dbad3aec035335ac6e4f9cfe1258f9d3264c0855ae2f09488f7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be827c55567ce3316c96b3e98661d489b37f7710bb05345cdbf8777d63394048
MD5 36ca6c91fd41ebd3e65af0df5993fb52
BLAKE2b-256 efab5bb90d421087824917edf7cd98fbd9cf4719fb6465f70f87977a3e58d42c

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 179c409916d1a9677b7e841b602300fc7e5bed40babe1a223ae426cebd3c9987
MD5 9d3d07fb661294a11d5bab0d18af55ad
BLAKE2b-256 f7f1ebe80e86090e374342cf68afde46f0194f532a633f910d4790904517ea11

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: metricon-0.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 98.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for metricon-0.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0009e3dc316af4f24a05a12c16972bb47ffb94f01ecf744fdd92a873a8047b79
MD5 b9423257d67fbdf6163eb0e8410e3c1c
BLAKE2b-256 976fdfd773da67a5d0a84d5f09ae4a264ca00d096afdad041845ea7250ff9cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp312-cp312-win_amd64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e6f5dfdbc7eb84cbf53aca9cdfcd94c897e63398b6e2e0786a75ba659de4bce
MD5 da8c1a45da75cb8075f1559c56e87436
BLAKE2b-256 63ec36f9b14158064ea26084c1d2adb94d28d4bbfcb6e6879b9e2efa4b323b6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06660a7a16311053db2df6eea53773741ac095be2ec80bd90c48a49fae905504
MD5 432716436d6eee0f2bfb0a9618554e84
BLAKE2b-256 e3f580b4325691a4be9d3f59ec392a6c7a77cbb6a91d732d5a2ed0dfb36dfa87

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69ce75d9120088f4cca1e90866f7f849625f48efca20f17f9cb2c1cdcd28bcc5
MD5 fbdfb187b6682084cc81bdaa5604e248
BLAKE2b-256 21c7e394b718bea141a64679a55a94098fb317cc94034995937d58cea3585a04

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a4fa193bf617c9d59ed5391b1d073f030e5e63b2d4c1460e558d6cf796c384bd
MD5 dd1b000ab416ef9d3175a1868293936c
BLAKE2b-256 f327809029e82a8f72975097b5dc10066a3cac3fb55c20b9195f1dd5e05aa383

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: metricon-0.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 100.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for metricon-0.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cddd0b1772f918465bf9bc9372d47787386519db9c825c453c2ecfadbf77dda4
MD5 661497ba7f6ddf85da073400756dd9ea
BLAKE2b-256 2f5271a9b815e46358d9f40a500cca3d30947d6c1e07efa98d1312976d05f96a

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp311-cp311-win_amd64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2d95c03b5bfe3e6ac08416f2bf488b2d73a22b4cf54bf5a21906e21021ea355
MD5 3b7333b6fe225a5bd33a37927428acdb
BLAKE2b-256 94c54871558d9fd03bded849242f7b2574b1b561d1c2d379811f0a97899fe775

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bfcf4382d776b3636b457bb752023bd1b4aeb49d0b625884c2df351df616143
MD5 17fbf450766785aeb8422db731cdbc94
BLAKE2b-256 816196b3377e404a2b9a6c084792f30461953ff65ba6f06142c01ecb87bfdb3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d85067bd97af45ebdb866fcb72e765164062e3c138a5321e07dd2d913833e18
MD5 9317ca02aa593fc3f01a9bd4756e6b21
BLAKE2b-256 912d47ee8b9073cb5a92993039beb5e51f34945e91d3c630f506af47f52028fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f16692da69acc67943534ffdeb62e10d3daa768e6f569376fc80d93f7de6cf44
MD5 236a5d36b09b00e3b40adc73fdd90978
BLAKE2b-256 bf8205be8c0e1e1142006f7bbea5ea6b54c1c90358eebd1e8fe80fa97170ad72

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: metricon-0.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 100.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for metricon-0.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5143d27dc2891f526d8870fae24a82fd77409dce8e1672df5cacfa7eb968acfd
MD5 db437e3dcc37b4630da4c894d62e4414
BLAKE2b-256 8838c0aa18bcd1cf00ce0200450003ba47c126368c5aa2bafa8ef81a5911209c

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp310-cp310-win_amd64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbb26e6759747ec74976cba1c6ef8e4141da03447a977b19782bf668fd021a29
MD5 78f6bd1fc618c441596080fe17a49676
BLAKE2b-256 465ef2a0f2dc25b6eaae153592a68003aec608f871518c41b3e7d4670016029c

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df8c4925cd692b4260acd3080d7c1a26cea36cd8e9d693730e709cec72bf99e2
MD5 5ce531b280e8c5bc7c05e695fbc5f777
BLAKE2b-256 6234e4c091b57d7a329b1876d6226045727fe98a2cb7b5bc4abd795ef52443af

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fad7e10136cdc81becfdf66591caa473a5dfdeb21d1f4e3890d25d3f66146e0
MD5 5f760972cb3aecaa459ee4acea7e2b2a
BLAKE2b-256 a7f9bb51f4877488190558eb980774a7cfab0541886e6a0aec98e1db3ec9a46c

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c775a052b96f8882eee616971ec5d74a7919939f5f2a1525260f4410af298992
MD5 1063bb22e8bef9ecb3ef4375279523f2
BLAKE2b-256 69ccea1028d0e15888bc3abc895b9162838aa9b208c65c24789de7b2f869cafa

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: metricon-0.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 101.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for metricon-0.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 803d52c1d243cf9389e0b22b7d10cc26f32d7b785dd58e7be24f8fde5f38815e
MD5 547bd199ce64e39cdffc26957e368a95
BLAKE2b-256 b3724cc42ab3b56480c896711220c889748058fd4d8d60077709b695a0993ff2

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp39-cp39-win_amd64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94faacc049d38bbf120aa1b1143c633b5a04a9ba432bc4f94e8a79c53c68d34b
MD5 73b31e7b890924dc97693e8b481d60a0
BLAKE2b-256 7251d992412c955dfb3c0f3dd74909322afff4cb0aa6f5e702aef3f129810ad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d3141e370249a3ab206fbb007639a3b65061f50628db5d1976a3be73eedc540
MD5 488114a8009032b1a56bfc7d520531a2
BLAKE2b-256 35dd8bd7acf4b4bc2ad4075d0ab898cbd044c28c37f4493b6430adb446446144

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 630cf27708926667cfaaaa7e9e833c21f78a77b962883f51fe38ef106e3aec1c
MD5 8147009dadafecdf3c959e42a5b83693
BLAKE2b-256 d52076183e3e08fb244296544f6d6061a58530d8ae7d0ae7421fcb538fd1a6dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on auvux/metricon

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

File details

Details for the file metricon-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for metricon-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 690feb084a47cdb15dbaad4e136a6db070852a5e1df066c6b209567214f1ce5f
MD5 b24cc4013983ed00cc915a3438d21f96
BLAKE2b-256 39242e5290243a1f8142a2473766e8c8ab7cc6a50ad597e5f99492662108cb27

See more details on using hashes here.

Provenance

The following attestation bundles were made for metricon-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on auvux/metricon

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