Skip to main content

filters arbitrary paremeters before sending them off to be called

Project description

reductable-params

PyPI version PyPI - Downloads License: MIT NO AI

A low level Function packer & sender inspired by pluggy that is designed for mass sending as well as ignoring unneeded parameters before sending to a function allowing for large chainable callbacks to be possible in any configuration order.

from reductable_params import reduce


def test(a: int, b: str | None = None):
    pass

def child(a: int):
    print(f"GOT {a}")

def what_is_b(b: str | None):
    print(f"B Is {b}")

def main():
    func = reduce(test)
    # defaults can be installed before possibly sending 
    # these to a child function.
    data = func.install(1) # {"a": 1, b: None}
    
    child_func = reduce(child)

    # Calling child_func will send itself off. 
    # You can customize the data after installing it too.
    # allowing for tons of creatives uses.
    child_func(data) # B Parameter is ignored here.
    # "GOT 1"

    child_2 = reduce(what_is_b)
    child_2(data)
    # B Is None


if __name__ == "__main__":
    main()

Benchmarks

I decided to run benchmarks incase mainly to prove that this could be better than using inspect.signature alone and better for use on a mass scale when running the install() function. Note that smaller is better and that the timer is measured in seconds running bench.py which I have in this repo incase you want to see for yourself.

I'll add a comparison with pluggy in the future as soon as I get around to doing so.

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

reductable_params-0.3.0.tar.gz (10.0 kB view details)

Uploaded Source

Built Distributions

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

reductable_params-0.3.0-cp314-cp314t-win_arm64.whl (42.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

reductable_params-0.3.0-cp314-cp314t-win_amd64.whl (50.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

reductable_params-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (282.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

reductable_params-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (284.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

reductable_params-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl (50.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

reductable_params-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (48.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

reductable_params-0.3.0-cp314-cp314-win_arm64.whl (39.7 kB view details)

Uploaded CPython 3.14Windows ARM64

reductable_params-0.3.0-cp314-cp314-win_amd64.whl (43.5 kB view details)

Uploaded CPython 3.14Windows x86-64

reductable_params-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (223.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

reductable_params-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (221.6 kB view details)

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

reductable_params-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (47.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

reductable_params-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl (46.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

reductable_params-0.3.0-cp313-cp313-win_arm64.whl (38.7 kB view details)

Uploaded CPython 3.13Windows ARM64

reductable_params-0.3.0-cp313-cp313-win_amd64.whl (42.6 kB view details)

Uploaded CPython 3.13Windows x86-64

reductable_params-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (225.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

reductable_params-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (224.1 kB view details)

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

reductable_params-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (46.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

reductable_params-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl (45.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

reductable_params-0.3.0-cp312-cp312-win_arm64.whl (39.2 kB view details)

Uploaded CPython 3.12Windows ARM64

reductable_params-0.3.0-cp312-cp312-win_amd64.whl (43.0 kB view details)

Uploaded CPython 3.12Windows x86-64

reductable_params-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (238.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reductable_params-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (237.4 kB view details)

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

reductable_params-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (47.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reductable_params-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (46.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

reductable_params-0.3.0-cp311-cp311-win_arm64.whl (39.3 kB view details)

Uploaded CPython 3.11Windows ARM64

reductable_params-0.3.0-cp311-cp311-win_amd64.whl (42.7 kB view details)

Uploaded CPython 3.11Windows x86-64

reductable_params-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (223.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reductable_params-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (221.0 kB view details)

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

reductable_params-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (46.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reductable_params-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

reductable_params-0.3.0-cp310-cp310-win_arm64.whl (39.4 kB view details)

Uploaded CPython 3.10Windows ARM64

reductable_params-0.3.0-cp310-cp310-win_amd64.whl (42.8 kB view details)

Uploaded CPython 3.10Windows x86-64

reductable_params-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (210.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reductable_params-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (208.7 kB view details)

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

reductable_params-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (46.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reductable_params-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (45.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

reductable_params-0.3.0-cp39-cp39-win_arm64.whl (39.7 kB view details)

Uploaded CPython 3.9Windows ARM64

reductable_params-0.3.0-cp39-cp39-win_amd64.whl (43.2 kB view details)

Uploaded CPython 3.9Windows x86-64

reductable_params-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (210.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

reductable_params-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (209.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

reductable_params-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (47.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

reductable_params-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (46.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file reductable_params-0.3.0.tar.gz.

File metadata

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

File hashes

Hashes for reductable_params-0.3.0.tar.gz
Algorithm Hash digest
SHA256 7df2f182dc6d84edc3d4f308635a4b06909b805550d012d074cb622dadca9df9
MD5 6a6740dc596fa7747c59266a743da7ba
BLAKE2b-256 c5150dba7fdbc86e9d933dbe9188836a127913a42fe12d42812999f14d62308e

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0.tar.gz:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b53096d239dabded38faef6c4563881c557115beb3a03f88369b9261452038a9
MD5 c38ca20a47048b489ab01f02d8ca39ef
BLAKE2b-256 f6d8a3951fb453e8871ff2f0547aafc8982a28a968a9fdb63e094a8de76b65c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314t-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 81bc8760ef2d7694f7091cc13c1e606296d04bb459197eea5238f0df61e94705
MD5 3f858a79783de00f9d694e206d3cb336
BLAKE2b-256 b1ecdd028ed633c791a9875479ec2b2709c6a22f815cc10b4e9a888053079e0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314t-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13c17125c96988b0d18c7c53227337014a9a7a2767bfd7ce1824ad3f4e8c0f64
MD5 f2e85ebc1bdc44ece96fef229c793015
BLAKE2b-256 223cbb90862373881a069bb85a987205d5197ceefdbd8e14f3c9447bc48d952b

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1f6739432cb4ae0096a592a6e64f5e22a54b224ff93be6a28abd7a628723fef
MD5 b1d69fdd65c9bc0b1e10a726c7e1a664
BLAKE2b-256 2cdb99b0c6cf6a39621c70b90225eaaa483c9e39ed5e9ebf8900447623e43ce8

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cbc4438a0e195581d8d3b037d02aa3536bc91158137880cd675248eff70f7fe
MD5 11dc709f56652fd81a825eac35d6a7aa
BLAKE2b-256 00ba764b5100865d4d43a8f415e7170b429311098118c5d1b4d3f4023d02a999

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 99d120957c1e4e18217e28359f32cb179417d087fabb6cced311d5041023d885
MD5 6d96f7d473c79534d99eb0a1ed2932bd
BLAKE2b-256 453c92a181e9cd72a5724933efca6f2db8fb37a22226c07ed9d06b528c9c62b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d6ce26cf9216bab523e4fc0479c36c5425300e048df3cc707203c4e610b88f13
MD5 0d4e1ddab26cba444b5f24e60b2b2015
BLAKE2b-256 a76ffc83cf0e699d7a19e08b63da19e98b2e8da67d13cbec4022337c51a2ced7

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c0d2784151757d69977a7231bf8e3ed71c20b21b2542ad3429b7b07a10352885
MD5 43591f9b5d555e6e19f7b42575e941c8
BLAKE2b-256 dc39c9fc2a0ff0b136b796a1ec6d287d2c12f563a50648a90db5c0559657b27c

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b17873b27a9e67d26c81623a6d859dc68eb0e5c1e9ed72bd31fb8b25a136763
MD5 d58c2cb643625b42575efcbb7f36de3e
BLAKE2b-256 f348afff9552f1fede3c3228604fa30eb3baca7fc7815f32454b99eea2464029

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 550efd0ed4676af8208c85cee73b84cd462ac0813624ece5371afe60aecd861c
MD5 44daca557f72958532c59bddce9e830a
BLAKE2b-256 c3c9f7905bdda11203ad786f99bd8c2beda48b6a0dcdfc3c836cf6d66e208e71

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dee86d70070f8eefaac19bd43d9fac527da68fe55c493091599c4653f7efb8e
MD5 d703bd5bdb13382e208c303f92942c70
BLAKE2b-256 479c6806c918f1b69f6d4123a4b96713eaa1fd8a849f6b70f900d4c555aa0d6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9666efc265711f966d593a9136c1f6f213a49caff7d8ecc57254cb5b8ddfcbc4
MD5 ba6056552f84f5c0193e57c2170a102f
BLAKE2b-256 ccd4bd9d6386e8a5a3bd796cde801d6df07287cb39dad243f3e05d4303611be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7adf869b65065752e7740a969573e9978f475ab77d9ff3ce899cd68c3a995a91
MD5 ca761178c914afcf20428b3fc8eab754
BLAKE2b-256 cefa6c49c5c08a104451b4af0b949a0946faa0379513cce906a57bcf527dbfaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp313-cp313-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 789c5ac4e4dd81d737342a07a6d9e4cd1930801c69eb9157cefe887aed2f51d2
MD5 5753fbe76e9f311ed9fa3ac3cc7fc270
BLAKE2b-256 52fe609455bd5d22ff093650a089d97f58783facbe376a5547b3994bde642ca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87257d7cef5fa104428b98268ace7520d807dc1505643d7c71f9a6ed9070099e
MD5 5cd408331528c06deaea9f8d889b1952
BLAKE2b-256 9179bb8bd179bc2126dc61379389624895180cbd770f13801a3a6a7feed4c1fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f4c040431c0ffb5ac772a0117d542720f8bebcfcdc76bf01ab32150f3932f78
MD5 dee8c91a1acad38299a59199e9adf375
BLAKE2b-256 8f273daf96866a9f68bc80cd4ecf47866f14c76aaf1718d129abb7bfe62f7633

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 034b7c5080edc7f7b890fce6fc0cf5a42414e40d5806de2be14970622d99c7a0
MD5 7b3a58ab539754002c26962a2c2e3758
BLAKE2b-256 660fc51b05901ebbdf14e83255efa06c290bf5988378d5cd7de15fde61254500

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6f57030533e0c19d78982a8f82cb302bb1736a86ad64fdc67e6c63137ed41ece
MD5 32ddfd4302137b27815adb63be324406
BLAKE2b-256 181dc1ad1a343ac72140422b0d72d2e836d9d4d8dd9493d0d54f1d917f06ac88

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a2d37eb937bd95c46c105f3adf727f7eb80d144edd5c16ab54eb1cedf6c8df3f
MD5 a90fccbd81b3de16ba63b9ff0320296e
BLAKE2b-256 69813541b04663637023b94fd9815c7de53daa4d7a1fe0bcfaf03fcbeeda5524

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp312-cp312-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 25d4e7dea1754301321db0d9c0936e6dd4201dcacd2b4d350730b4eab5a42e14
MD5 57921460ceff8819c150b10dbcd29f8b
BLAKE2b-256 efe826642b6fb387b2fef16b7e0fe861167fe6937efb2586fe5be4491df7dda2

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53566e15669a68feac62cfd9adf2d29b042b08e9768835883b3ce373b9aa8fd9
MD5 b63f60f722bb40807dc2059399b047b2
BLAKE2b-256 c830f8fcc4d2602b7b2307d846ce8babbe84af3f2a9ecd796eb3a5271cd51263

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed780254e1526968b85ef003a9a47e591f42212e099fc409e26d712e481f6250
MD5 5a2fc5d7f9564c32e69ca31a81e6a879
BLAKE2b-256 5c11f0911f671c528f9431e0d1ad200bfd48f82b8bea5ed7aed135b49cb323f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b59107aab217a4b9316bae058abd4e33c72e975175fc6d3b1855faae59f115b
MD5 acda9c14668bb6351c1c2202404a7c87
BLAKE2b-256 bda03a089bef81376712fe875405d81f23c9a7a107be917bb17c8f9ec028ecc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2803e0d8800c8fd929628ba3d8a8735096fb883f45226442ef72c8416ba46fd7
MD5 5b38d56ed070f15ffe7c594d4a8075d0
BLAKE2b-256 a4dd4468fff536010cef85b892c05d4d2ed5536d5ef7d4bb8e6f305cd404d59d

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 60ae3abfd9e7d2aafd39a489e206c19a12d1fbd1249cf00f6a01fd9297b3fa9a
MD5 422b80ed5a86c43fda1e0b9dfa0d7200
BLAKE2b-256 13f3f13002cb0f78af293a79b51b7e9bd71e98fca034e06721093ad2c8617ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp311-cp311-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6512a8dfc2e8704d808f3c664af2c47cf69a02e7af303d0ea85c06b068cbe36d
MD5 73b7335946542ec3e96f7e64997c6e39
BLAKE2b-256 fe86e0af0a185ef0f035a9b9fc1ce581c8201ca84171960f4af2f601baca08e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b84704d77e2e07026f5c3789fade8eb2b49ef210f1668977f8c1ae53473fa87c
MD5 76e375a792468af5e8320bf7938442dd
BLAKE2b-256 04e80b29eb09ba944ea548709f30e861ec614651d867818bfdaa75b61866776e

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3f251e624fc0cba990a084fe4c8393338b25b5d6fc0eb0cbfe90c1de904f8d5
MD5 ef7af4aa49b0d77a9e6909179cc5c941
BLAKE2b-256 091764789ffe9823341dd1cc97499a73200145b8eb85aa3204547bbdd830f1ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f9e1af7ffd12b8e91be654d9172c2e0a7c29f375a4b3d62655e2c055d5e9f91
MD5 10fbf712896ba277539b68d6c77618ad
BLAKE2b-256 f38b919efd1c78d2558c36e2e15661cb924686b2f99eaee50a67f3ec61eb7714

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e30af640c851d4338919c341bf2f45475a32ca9dd2b243838bb3257eb8b450ce
MD5 b797e0a6dbe1ae358daf6273ea64d121
BLAKE2b-256 ffca5d1a31c6ae697f7f792aceef69439e5c004a4f7d53db0c933be338cb9767

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9fa21cd1c2f841904f05fe8aee207b7357896f974e1e23a3cdfd7199fdac8893
MD5 f7e85197b934c90ce91cb5f179b74cf7
BLAKE2b-256 15343e60eb05ab88f140c44e7946ab3fc7f89685c520fb0d6d46d45e07817807

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp310-cp310-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63053a94b03f42d2e839917e64daabbc5066d0d8e6cc6e2eeec376e05a6a9d8b
MD5 89cae81c73433273586f6a64e6ca9796
BLAKE2b-256 da060754d44700f1f54f259a2a7a3dbbb94e28193d70d5028b7d219207dd24f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e3c544dde0eea6078f9d58f5eb3d6a5693c538eeb9a698b7e4d988f64c8e7a6
MD5 9e60563ac4fcbdf0ce2ebd660fcf8b4f
BLAKE2b-256 024bfb451bf6c88cf99cb5c9d1762ea5af8fbe128d5dee256cbf7629793b03a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd7ca57481b432c6e1c83a87e56ae7b971db98bea8817a3f9ae625034573f60b
MD5 577d69dd2724456a0a7cdcb1e58eae91
BLAKE2b-256 25f94d5a9eac60cefddb2dd6d401dccfde9bfb5e79320cba02c1aae001813590

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7d416dfd691af01c5045f43268f7a849f1489602c571ff072979a380e137593
MD5 88be559c4c3c6c0a2b4a236269e86d78
BLAKE2b-256 52d2a4db773d21357911e65a54cd4267b9e337d350696968913ba31ee6ae08ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fdc653033957241e2615ba66431305b622b82c15811c7d2ed281011083af185
MD5 932736cf4c2c1030bc084041c4e7ffa7
BLAKE2b-256 7884fa906fd808e78d360be0e3ea9fb90d97fd12019fff65aa7be890ec795d52

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c1f5beb83b36b0a2bd61295de6fd6a56eeba05637e43a7cbac1de734d0bde72c
MD5 b8af829c5f176001cdfb7d2c0c03547a
BLAKE2b-256 6346026f6a22a740febc6a39ce30531670adf41a4e96417e331b1b8612f68d83

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp39-cp39-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 08860868e357deb167807a421006b8b2a7984edbe1072ca31b146c8c08b5df97
MD5 71c4a342675fd91f7312a3a2fbdad1ff
BLAKE2b-256 67cc137e2ce4fdf7f9eb63b56bb59e6e495273e4573c82d3f3dbd66356bc7f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp39-cp39-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dac94997415b03360ad43043fbf868d9e89090254f7574a00ad2865014898f90
MD5 4168732ac8d1d97dd10ca7bf580fb852
BLAKE2b-256 3253b533b6c80da60968974090fa0362174c0becaed371d56c370791d8bd4101

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6cb90f2fdf99e9e0151626b1911dd8d6aebf28a8642d00ae6504a0c179d01c1
MD5 7f6d25e8c5de964e858eb2685390fe6e
BLAKE2b-256 6f669024ae6b4e3c9ba14cd5a0f2c1ee0ae2a4ef0978d0f6c03e9717cf1f2391

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40409b4a86188107e40cf2855200b66c7437018c17f07265927fbaf35ebd8ea6
MD5 e0f91f8586d05916aa787104418f6b7f
BLAKE2b-256 359e1e46d25605ac6905ae96b57ef0d2accc77a713932a1a94a1231480935505

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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

File details

Details for the file reductable_params-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ca73d198d6c1b449811f2c970b34dc740b3513dfeb712c53d162592ecacca08
MD5 a4554a16758aa145b6b7f13b04f40348
BLAKE2b-256 bfbb7f2f34c01f1f102148d4bad9da6c3b4f23b597a05c08991e0538f647201d

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

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