Skip to main content

filters arbitrary paremeters before sending them off to be called

Project description

reductable-params

PyPI version PyPI - Downloads License: MIT IDIM 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-1.0.4.tar.gz (11.5 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-1.0.4-cp314-cp314t-win_arm64.whl (40.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

reductable_params-1.0.4-cp314-cp314t-win_amd64.whl (42.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

reductable_params-1.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl (48.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

reductable_params-1.0.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (49.5 kB view details)

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

reductable_params-1.0.4-cp314-cp314t-macosx_11_0_arm64.whl (39.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

reductable_params-1.0.4-cp314-cp314t-macosx_10_15_x86_64.whl (38.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

reductable_params-1.0.4-cp314-cp314-win_arm64.whl (40.3 kB view details)

Uploaded CPython 3.14Windows ARM64

reductable_params-1.0.4-cp314-cp314-win_amd64.whl (41.8 kB view details)

Uploaded CPython 3.14Windows x86-64

reductable_params-1.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (39.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

reductable_params-1.0.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (40.3 kB view details)

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

reductable_params-1.0.4-cp314-cp314-macosx_11_0_arm64.whl (39.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

reductable_params-1.0.4-cp314-cp314-macosx_10_15_x86_64.whl (38.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

reductable_params-1.0.4-cp313-cp313-win_arm64.whl (41.2 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

reductable_params-1.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (41.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

reductable_params-1.0.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.2 kB view details)

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

reductable_params-1.0.4-cp313-cp313-macosx_11_0_arm64.whl (39.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

reductable_params-1.0.4-cp313-cp313-macosx_10_13_x86_64.whl (38.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

reductable_params-1.0.4-cp312-cp312-win_arm64.whl (41.1 kB view details)

Uploaded CPython 3.12Windows ARM64

reductable_params-1.0.4-cp312-cp312-win_amd64.whl (42.6 kB view details)

Uploaded CPython 3.12Windows x86-64

reductable_params-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (41.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reductable_params-1.0.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.0 kB view details)

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

reductable_params-1.0.4-cp312-cp312-macosx_11_0_arm64.whl (39.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reductable_params-1.0.4-cp312-cp312-macosx_10_13_x86_64.whl (38.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

reductable_params-1.0.4-cp311-cp311-win_arm64.whl (41.0 kB view details)

Uploaded CPython 3.11Windows ARM64

reductable_params-1.0.4-cp311-cp311-win_amd64.whl (42.3 kB view details)

Uploaded CPython 3.11Windows x86-64

reductable_params-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (38.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reductable_params-1.0.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (38.4 kB view details)

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

reductable_params-1.0.4-cp311-cp311-macosx_11_0_arm64.whl (39.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reductable_params-1.0.4-cp311-cp311-macosx_10_9_x86_64.whl (38.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

reductable_params-1.0.4-cp310-cp310-win_arm64.whl (41.3 kB view details)

Uploaded CPython 3.10Windows ARM64

reductable_params-1.0.4-cp310-cp310-win_amd64.whl (42.5 kB view details)

Uploaded CPython 3.10Windows x86-64

reductable_params-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (39.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reductable_params-1.0.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (40.4 kB view details)

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

reductable_params-1.0.4-cp310-cp310-macosx_11_0_arm64.whl (39.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reductable_params-1.0.4-cp310-cp310-macosx_10_9_x86_64.whl (39.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for reductable_params-1.0.4.tar.gz
Algorithm Hash digest
SHA256 c1ac3969956b4a931d5d7a43f0ebf261c51a7d096c6594fa7e6277269b525809
MD5 a23daf3f05cc596b5910fc1ff9aee4b0
BLAKE2b-256 1d7bb156c31650b7c6ff98864884e678a06716737e3da795d701004a9d667354

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4.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-1.0.4-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5ddcaa11c0c771d1c098975b408e658736b2877978ef144eed086733dea5a1f8
MD5 962c02d66246efcf94f3de1428410738
BLAKE2b-256 d891c16971c4fb6098aa429288eb40d777ac7ed8400a535d9699137725fe515d

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4b4886b951773becf706fa3aaed41db3d8e777b94f452e9f16a3cdc07f18130f
MD5 4b47deea5f7e077c764fd5dcec745d07
BLAKE2b-256 fe326a11ee5ef681522aaaab67adb24bf0a176c79419481e822d92c63f10655c

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c4b0967bbc2ee72a82725fed8cf13d11e64b488c8b4b244e342f71023821457
MD5 c8090d4e4db0c95c6574ffa2839fe30e
BLAKE2b-256 44b30d61a0a01446a9065d7a42cf42f3b17847ae284ef442d7ad18ed4bf4525c

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b3d0f05290593fdc69bd77bd2fc255e1094aac4f8401c61fe0a561ecf55dc740
MD5 7eac9a80c99779cdf18ab14b85c7b990
BLAKE2b-256 4860da296c493aa337da81c3718064682a7865193591bc8be321340df4cc97ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_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-1.0.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c677802fdea32e995e9ca5d4a2edec1f943a9593aad39b794a0e017a3bc10a7
MD5 158048146bc1ad7e5ae5684e9734e269
BLAKE2b-256 ee10a2d396b72ebd3368149ea850542f96dbf9c9c26f740a4bbd730aa39b948e

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 31ef084ff3f720b7909cdc7af233145074b22b110da07ca9249922bfc3e0b571
MD5 212586b77d0684014d867a4ece1c4b9f
BLAKE2b-256 9c6a4facad087a2603635977b312b38ee03c395a27c7bcabc04efbd8f2390172

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a09ae41fd21cee42d02c1efbf271b584c4c95d69c061f6e502282325652098e9
MD5 52f73c5770a1d1b12f0b92db61fc270a
BLAKE2b-256 e3d24e1a61ad62fba704bef5ebfe6041283e976611fdeac8ee2c20683500cdd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6131a100cca7726bb737e665ea75eb2379e787cdb46b219e7dea3ed1106d76e9
MD5 7bcaa42dbc64c3f000c921daff915abc
BLAKE2b-256 644f7ea386cd471adc32ca5dce3cce438a0626f92c6e4296c4c221f7f2af31ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d9897b938a14a54edc8c1e01c07c101c78af48b57cb17e4dabb617d508700ea
MD5 34b1848f2abff74ff7be4319c616e226
BLAKE2b-256 5289cc843d007215f7c605a1f23fe7be0e71d18769d7cf93cc8d493f946959a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7f185c02e789772caeeb641b2d36939c357b8ea610a6b0c7cc6df3d935d1c17c
MD5 7608d62e8b26bb77bc91be9d7d17f5e8
BLAKE2b-256 ff155aa54189e9d7e4276c5a927a6bece36bc380cd62520a94c788c5d6bc574d

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_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-1.0.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9d87e517a738c00993505432669a73cea4bc53cb0d8e71ea634c2f58e270567
MD5 cb4532c4c944a1f53c9b315dfffbbc29
BLAKE2b-256 78a9a097e15574ef20eb2023b57dc45fb6079d2dad8b39c240caf80abaf554f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f0b1cb6b9ce277fe58c4d101a2e6e73b0d0584b520682d181366e86442c17a6a
MD5 3fb11e9a00c24bb450dce6eb8abd3349
BLAKE2b-256 26beedcff1390d5c2623d4c5ebe662aa8cbc839e06311f93af259ebb2c7f15a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a934e1af0c14ab4e415ed316c946d39a54f2eefbf323d89ff7e0bb0e271b6fa3
MD5 c28a472ee6c15cb4852944f0e70cad01
BLAKE2b-256 e6ab1feb5dde1d40473f0105e61cd2cc7b61c958f9fb866c7d40987f32c60b2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 848cce85c407f86660ef7c1cd883d74d5b313a47965fb2b8549e25e0ddec62f2
MD5 6d786be2a6b4bd0a5949141c902c91f9
BLAKE2b-256 e8b66948ead685db82f4b81946f3abf61e794484a97d84347ca737de2984c16c

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0a7af3ddac891d629d374e7b237a3f02f201fc491515d7087b041069af87868
MD5 a7d6ff54faf0b70c697a30831a75210d
BLAKE2b-256 87d24f18d13e5562f378d71e3bf19646febc8da257bed9953aa04c7566540075

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7d466defba538b51064c0cbadfa207ee153b727efe8104fb0fb7ceca434a134d
MD5 38aa293fbf5f6517ed50627973ddd770
BLAKE2b-256 38d143faa3a683503cf46332ce7ccc16c9f3b833a8e5c48ffc537cdc91848cb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_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-1.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b881443c69f1082c39fcdca170ebf432c2555f71b1837b513ef37d415e63242c
MD5 931ced31914fc1c030452f29da3f1390
BLAKE2b-256 8c12450b65d549f3b82659c39b591706c45766f2a36cdab5fe86c4816e52576e

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c8d33f701d46529f7cfa150e090431ce53c2f18910d8d53c4b7ecb4f791f1364
MD5 b1dbde252410ba399bf9c666ac73e6bd
BLAKE2b-256 fb722587a44fb56bcacd11e3e0b78e9eb625e324e79918fb439b138b6ffdb786

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6a2e31bee063ac09f90a47d81b796391e4a0bb0ae9ac78b30aeff444c79d4ea5
MD5 33b4eeb201f6734d5583f7522d76ce6a
BLAKE2b-256 92228489f329821a29670b9f75fb7f03d4766e08f9a25a9811f2fa857c818d9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7de5ba0169c7e80e48edc512e6c6971566618c776f2058e146a17418e681161f
MD5 054e3fc2352337236c06092daf2a7ee0
BLAKE2b-256 cc49a025636d04ba116df170994aa46fb8a3d63fd059e0ff4190a7b490a92542

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bb517b866880888899a64e843b93192bb02373f3667ed1197cb95fc45f3eae6
MD5 d7f47420383418bb291be7c34bca7651
BLAKE2b-256 8cab09358e1775dfe92e619fa9764d191496cef7b2d4f8df0ae0c54b6f4e46df

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 cfe2b37826755f33d6e57336cf2ed873f9c0f25b07d4ff89ce93b04885e5db4d
MD5 270b9b7299f72208ce9c6b2d186e0c9a
BLAKE2b-256 4c28f0297089b7fc906ed31e51c8ba5d1508aa9458e11db1eb6a974485eebd57

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_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-1.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d1016565d01ac7201e7e74db6cb024ae15c829b8a1a1d7aaa2aedf1daffb8eb
MD5 133319c59d7c9cb1b70677474bcd367a
BLAKE2b-256 90bb556f0214cd76d2ae172bc646ce0d349eaebcda68f336804ec716caf5bdcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2b43640a53bf50ce03ccad88f5df96be92cc4a724a0cbf6dab89c566d6cdc86c
MD5 773556a0c4c0414c0b60c7e474aa078f
BLAKE2b-256 4be3440eab44751adde618c08b7d8ea36002c787814fec9aaa2f13c976dbcd9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b929c24cad4b25385e2990d20755e277b48bf1a597f9bc8c29f7a0672121bfcd
MD5 392dc34133c1da0d871a08ee8ce7f80e
BLAKE2b-256 ee3acadc92dea33345ec5f629da835acf18b6fb63121194945ce06d9346792e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 abb4ada9c94a38619c6443a1a60664aa0fbf7fa9956941dc87e96c270a1e1484
MD5 042ddc6918cd710cb5b5dcf5145c521d
BLAKE2b-256 6870647a57c36543d96773a692973b4893e6cd6c5d728a4aea414dcd7323f4e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e914c689d8f8bd6de10a72ab85800694f9e742c9afc53efc3eb8b97f069384a3
MD5 a83a493bccaf4427315ebb03d3d2aaf5
BLAKE2b-256 044fc337f0b5ebb3f3e3ea75a793a47ab2973db5ce6c4f159b1c7d2aa6cb15c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7e149bf680a6d99c99c67c0b2f53ff7bb4c091519887349f004134d1b4cb6324
MD5 fe53e7e04d1f6fdfb25827f273364272
BLAKE2b-256 26188e67b3bef6a8e50a203b41c86d7eb61ab0514ed3179792d772fffaf37ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_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-1.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7947bced5383735c1a666ccb92a17b3b23796f7ea405700c471bd4f116dd508
MD5 8c6f697ad72af666b978b387c0437d4e
BLAKE2b-256 02c9c146f9e5dce635a419aec86c7c8695cc7966e4b86456f5040b2e9aa48318

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7e76fd056326b6b0d58cdff7b60ef2b1d0a1e0738e80e36c182949ed4f2c2b5
MD5 1ff8f18868a6a8d6dfe451bdc54bb5a9
BLAKE2b-256 802e6dd183241450bb18a20ebdf72482c4f3e7160bbc5538c4c1c4cd3b82c6b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 dc13240059a52a159e46a067b6d0984ebe7d98bfd685d814b32e970d44593c46
MD5 774a07fff422ea0e6b2460b210ba220a
BLAKE2b-256 d76f94531bb5049a5fa5fc2702c0961dbe6c815c2294fb10c590838a0ed3430b

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51edb2210f4c9c426efb8e2e3c83ceee9254580ffe79e1d180413ef94a534701
MD5 07df130eea6c0f6c93a91fa9f09d456a
BLAKE2b-256 bb1efd832bca20637a525c598d2db7eb4fcc3ce604fb78ca92f8dc0086859856

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 318345f9093345adb911f193731a841ee0d7e4e78d6b9149f28dfaec85f3292c
MD5 5b42d504460cdd59a8e54237dce3ddfc
BLAKE2b-256 0da31a65c30355294a4805edefca9f3c3f973db4f3ab23d0663739b2776b0718

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dd4f9c4d61bd0764b740ab2f7c4ba412fc5dc0bad7ccb6165dc41da80bf51020
MD5 358f5f4a2300239554d99169372f0b0a
BLAKE2b-256 7938cb5af0fddddbfe1e299042c5f6e3845098eb6c16bf9f3531fa9a3ae72101

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_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-1.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65f35ddf8919225b701bc5b13df0c52fad58a9c2ac78a802bb9f9c659b3f6d50
MD5 4617d0ef9451d817d3aafb8ac425667e
BLAKE2b-256 eaaabd2bf6c5b6c3183c5807b0fd7f7e7568e3a31dea7ae200e9e070674e731b

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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-1.0.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8560f482ecd8f5223f2673a965c42d901f5930448df4248f775a2431be3eb82f
MD5 70d4a84f4c4048f2aa9a3cf51885aa10
BLAKE2b-256 42f682640beb38f2088d21fe8772c1a7992b7160ba537976ce0863b0ef910ad3

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.4-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.

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