Skip to main content

Efficient SuperSmoother for Python

Project description

Supsmu

Supsmu is an implementation of Friedman's SuperSmoother algorithm - a time series smoother that uses cross-validation to automatically select optimal spans for local linear regression.

The package is written in C for computational efficiency, with Python bindings for use with NumPy arrays.

A comparison of noisy data and its smoothed version using Supsmu

Installation

Install supsmu with:

pip install supsmu

Python Example

Minimal example using dummy data:

import numpy as np
from supsmu import supsmu

x = np.linspace(0, 1, 100)
# Dummy data - a basic sine wave
y = np.sin(2 * 2 * np.pi * x)
noise = np.random.normal(0, 0.2, 100)
y_noisy = y + noise

y_smooth = supsmu(x, y_noisy, periodic=True)

Additional Information

The C algorithm is implemented with the intent to closely match the outputs of the Fortran version (available in R), however there may still exist some inconsistencies.

Parameters

PARAMETER TYPE DESCRIPTION
x np.ndarray[np.floating | np.integer] x values
y np.ndarray[np.floating | np.integer] y values
wt np.ndarray[np.floating | np.integer] | None weights
span float smoothing span (0 for cross-validation, otherwise between 0 and 1)
periodic bool True if data is periodic, False otherwise
bass float bass enhancement (between 0 and 10) for increased smoothness

References

[1] J. H. Friedman, "A Variable Span Smoother", SLAC National Accelerator Laboratory (SLAC), Menlo Park, CA (United States), SLAC-PUB-3477; STAN-LCS-005, Oct. 1984. doi: 10.2172/1447470.

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

supsmu-1.1.0.tar.gz (86.2 kB view details)

Uploaded Source

Built Distributions

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

supsmu-1.1.0-pp310-pypy310_pp73-win_amd64.whl (121.9 kB view details)

Uploaded PyPyWindows x86-64

supsmu-1.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (126.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

supsmu-1.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

supsmu-1.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (119.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

supsmu-1.1.0-cp313-cp313-win_amd64.whl (127.1 kB view details)

Uploaded CPython 3.13Windows x86-64

supsmu-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (326.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

supsmu-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

supsmu-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (125.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

supsmu-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (127.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

supsmu-1.1.0-cp312-cp312-win_amd64.whl (127.3 kB view details)

Uploaded CPython 3.12Windows x86-64

supsmu-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (329.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

supsmu-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

supsmu-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (126.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

supsmu-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (128.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

supsmu-1.1.0-cp311-cp311-win_amd64.whl (128.6 kB view details)

Uploaded CPython 3.11Windows x86-64

supsmu-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (329.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

supsmu-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

supsmu-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (127.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

supsmu-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (129.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

supsmu-1.1.0-cp310-cp310-win_amd64.whl (128.6 kB view details)

Uploaded CPython 3.10Windows x86-64

supsmu-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (312.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

supsmu-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

supsmu-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (127.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

supsmu-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (129.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file supsmu-1.1.0.tar.gz.

File metadata

  • Download URL: supsmu-1.1.0.tar.gz
  • Upload date:
  • Size: 86.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for supsmu-1.1.0.tar.gz
Algorithm Hash digest
SHA256 1cbf2cbb5cda844557b6d91012c5730f578cd5cdbed934568d8a95711eb7731d
MD5 cfb5cae869c09e98c9093df98df7401c
BLAKE2b-256 e025dfb79aafcc7d33bdcaea15a0dfaa7f5b8a6d071a8180134b2704b49d6d55

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0.tar.gz:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 afa78ae4e2ab59cd1d0f4566afcce9f71975313efac5c9a8806727a04791d8dd
MD5 73a71c09741dd703c9dfd411938f6352
BLAKE2b-256 438d502b500033240e4a5fd9a5c1c08c9035adc8ffb624bfb0610e24302906f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e0f34c640e7a8629b6f0c1d59726bb01862d29fe0b2f71d1422e45f7eafb437
MD5 9f0592eba8f244431a90ebb93566956b
BLAKE2b-256 02947c80f8014266ff4df18a8b7d443c2a440bb8d9e0571f2bde37a6456f01a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4627d6558d687ad136d201c5cc9dfa54b0f65912a34a7b8e353c6d18bd533dc
MD5 d7de25a3677ef548f4c5c4e26f717025
BLAKE2b-256 684d614f0635b2db9941b4ba63b28bfcb6558919aa6749ce466b66af2f706d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1d5c7c8813017c93b0956914b0bcab7e7a59bf29ad0281d291f9c06cb14008e2
MD5 a93364be01d9cc7c3a9294af679b7274
BLAKE2b-256 d5a1e18502e8f9a07fbadd7d0218990160eec7c3e4f5d91d3684fb02fb9aca0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: supsmu-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 127.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for supsmu-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 975e92b352a0f3f4159391f544ca4989acb8247a81aab8175828fdc053b43253
MD5 36cd29596771a5940607ebbdb877dd2a
BLAKE2b-256 da452222a7cefff002ae2d936b66e9e9f61f34e730eb4044be24cd9a7168f8fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb3f0e6e73a019b1e42428cee08bcc737a960bc9f78f5df78ba9d9814c0d146a
MD5 c98d3e4dcefec7e2c2a810277a371f45
BLAKE2b-256 7d422d520cac0b7f26b3ec097c709ce12371c31c38ac1e4cb244ca3b3ad89177

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31467dfbba246cb2cba7f751f5ca6678b1af4c46444d2359a05a83414fb83c71
MD5 805a5d13f6d8ce37030f4ae7c800e52a
BLAKE2b-256 3dfe1349ff2362ebd5b51b7f39dcb2102b6a6ccd430eaf3d7f389b66ac44a3ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 268f8883fd5673b8ef0525ce9fa25d8685b3f0d24bf1fc873ee956bffa360e08
MD5 48453a64ad66295886f7c4f980993da6
BLAKE2b-256 1ff05d010e368dacacc6929884633f15bc9e535d15589ddcf0b469a41ce71f82

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d159dccf695248627ad2e449cc9c28703b9c28ce907e9cc97103a8516ea13688
MD5 82d8e21d8cdecc3f6d828e895e25a7a3
BLAKE2b-256 873f0d93ea5e5be130791806dd97dcd585d0603b73506c2968108316850e3073

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: supsmu-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 127.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for supsmu-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4a39a02951b7578cabe517bba673954580b61686502e5013696942a789fd01a4
MD5 470b8c7c2ed0fc5939967b7033f95db5
BLAKE2b-256 fae779868acf2143217fbde7b730833ab3a1d784f814f023f18e1f181ea26a8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0274f8a148e803a5f90db902c811d0931832228fa3ee2d9ebd6ac697b0f0b496
MD5 4677485f815a156599950c3c5374e419
BLAKE2b-256 77e1fc7ad11dd6915ae70a6d6e05df40a33a584fa39254ad174987a22a1467d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51dab9cdc0bf87bba8749f218727e9e9c714edd398e58a4ad81e923f970b81fe
MD5 299f42f0ddef08647ea01dc09a765bc2
BLAKE2b-256 2f86d3701cb38bb069fbbeb81a4aba2315d9ef5a8c03f5c08ccc7338507bdb43

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 986806191e15827a29f646f6d703a237628628cc79196085d52cd320640e920e
MD5 fde406406c720b6be6eb1f8b073b02b2
BLAKE2b-256 72eab0f2080391153a7e8bf8dba922a84b42dc206965770dae0e70867f30a02a

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cd186fcbf40db0e49fc79d49ba8367460269db49d1243ac84b9762fdca7bf183
MD5 a5640e89e6a30ada141bfa9e0157b4a1
BLAKE2b-256 9c34425ed226e16de7b2df872617f712627cb8651bed2d6599016a3f97bdd68a

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: supsmu-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 128.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for supsmu-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 174313f96a3c88ca7d0ddb1913312860174436dcff923518fc661fe95dd42594
MD5 e7c1d20cf1a4ed7d10e56ad95a688e7a
BLAKE2b-256 a806c19fc8367ddfa23939e42b18beabd4aa7a1571a70034757f73e8aaa331b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd40de103db1c57f0663b000cca63c44d997bcfebb4abb0ddb91c833e1eb046a
MD5 bddd45fbab65d3393c900b59f18baa09
BLAKE2b-256 e0a30a0af671d7b95542a983caf3e341d00b81ac0f701997579bf5c06b9c8db2

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cb3ec9ecab97fa4968b17647fc298079af7c74f1a39ed414910e651d38cc547
MD5 8e8f376176ac552f585a18cbb554a77f
BLAKE2b-256 1a01d3c266951c6f3b9ecf84c2ffc2187ac2361b193ab0d297563bc2a3a3d3d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5692a1397d734ad8edfbc3159ff588f24ef10e22ddd54d8695ab64c897de1332
MD5 1344364f4379eea395a589d495e34f82
BLAKE2b-256 1292bcab55e90c7ef17b46b2e941a05e64e71311426f34c34ce8ba69d530f5ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b091dbf599d85c888c2c8db7ee88e27c1d301bb690e026e7333ea2b79529ed01
MD5 6601cc431d5a5ef08bbe97ec8fa6ab3a
BLAKE2b-256 76eaf8008b04935737b909293cbacc5666ae6769b69b940e97f9397201174ab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: supsmu-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 128.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for supsmu-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f6d23986c5d885353c08c76001c575063ea119f9f045e5da03cc3fc34594272b
MD5 a448e9b74daa1008883acec8b450539b
BLAKE2b-256 e7b634b3a208c017fe4f71924c5d1a835f92351f49e7f48ca88af975fc6a39da

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ae6cd1ed955a30d77b7d4af85b308239e43b74951b1f985b8de843e3b5eb391
MD5 8966dc4be6a2593c1b8457dcd9d2d5de
BLAKE2b-256 3cd3297206e071e5e1bb9b5f12621974de9d3d187449c2d8f237abfba1d8a10e

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a330325ee85cf2e9bc08d926992444bbd6773c861e2613b04ddeec78b26a641
MD5 461d3cb3450e9ea56df0e1943cea73e8
BLAKE2b-256 149c642b497641cd03c9ec7e279fb5a22c8d6e368e72cd1cff7baa21377b27e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12d1bea513c32d222be20ed3cf0c4a3fbdd2e7fe9c86891ed9b64d0f15ba8831
MD5 a54f96c5e75b782d2561c7204fba1c24
BLAKE2b-256 5db696a09e4f386b7d29ef4353e9c4550c53e80bbaeabce9dc342032375ab02d

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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

File details

Details for the file supsmu-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for supsmu-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48e9eb0d0323027412aa0be1986c7f6c0fc75f638424605c36d7db45715e0501
MD5 738a0024988294a649eacf206668df12
BLAKE2b-256 7a4eafaa1044f7ea0c459797b16cb99fd4505d57f831070156e07da96441d32f

See more details on using hashes here.

Provenance

The following attestation bundles were made for supsmu-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on tux-type/supsmu

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