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.1.tar.gz (11.3 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.1-cp314-cp314t-win_arm64.whl (17.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

reductable_params-1.0.1-cp314-cp314t-win_amd64.whl (19.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

reductable_params-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (47.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

reductable_params-1.0.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (48.7 kB view details)

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

reductable_params-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl (16.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

reductable_params-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (15.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

reductable_params-1.0.1-cp314-cp314-win_arm64.whl (17.2 kB view details)

Uploaded CPython 3.14Windows ARM64

reductable_params-1.0.1-cp314-cp314-win_amd64.whl (18.7 kB view details)

Uploaded CPython 3.14Windows x86-64

reductable_params-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (39.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

reductable_params-1.0.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (39.8 kB view details)

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

reductable_params-1.0.1-cp314-cp314-macosx_11_0_arm64.whl (16.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

reductable_params-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl (15.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

reductable_params-1.0.1-cp313-cp313-win_arm64.whl (18.1 kB view details)

Uploaded CPython 3.13Windows ARM64

reductable_params-1.0.1-cp313-cp313-win_amd64.whl (19.6 kB view details)

Uploaded CPython 3.13Windows x86-64

reductable_params-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (41.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

reductable_params-1.0.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (41.7 kB view details)

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

reductable_params-1.0.1-cp313-cp313-macosx_11_0_arm64.whl (16.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

reductable_params-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl (15.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

reductable_params-1.0.1-cp312-cp312-win_arm64.whl (18.1 kB view details)

Uploaded CPython 3.12Windows ARM64

reductable_params-1.0.1-cp312-cp312-win_amd64.whl (19.4 kB view details)

Uploaded CPython 3.12Windows x86-64

reductable_params-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (40.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reductable_params-1.0.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (41.5 kB view details)

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

reductable_params-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (16.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reductable_params-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl (15.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

reductable_params-1.0.1-cp311-cp311-win_arm64.whl (18.0 kB view details)

Uploaded CPython 3.11Windows ARM64

reductable_params-1.0.1-cp311-cp311-win_amd64.whl (19.2 kB view details)

Uploaded CPython 3.11Windows x86-64

reductable_params-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (37.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reductable_params-1.0.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (38.0 kB view details)

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

reductable_params-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (16.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reductable_params-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl (15.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

reductable_params-1.0.1-cp310-cp310-win_arm64.whl (18.2 kB view details)

Uploaded CPython 3.10Windows ARM64

reductable_params-1.0.1-cp310-cp310-win_amd64.whl (19.5 kB view details)

Uploaded CPython 3.10Windows x86-64

reductable_params-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (39.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reductable_params-1.0.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (39.9 kB view details)

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

reductable_params-1.0.1-cp310-cp310-macosx_11_0_arm64.whl (16.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reductable_params-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl (15.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: reductable_params-1.0.1.tar.gz
  • Upload date:
  • Size: 11.3 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.1.tar.gz
Algorithm Hash digest
SHA256 b720d398113d4b940f26c0f738551f0d8f78e7c78bd804cfabc838ab31b05152
MD5 406c46a72013ee57864c0e9192c4b157
BLAKE2b-256 4d9dde2a6c98ef882c5225ced95f98f314a94c901d498eaf1c718fec5924fddc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d36be92d5715be0767683e713889901708b8b30deb7e35ed6e6d3df7aee53235
MD5 e03ac14592d7a536ca627647485b30c0
BLAKE2b-256 c8581f862c6058e126fa30c6897a2130b6551ec936216dfe3b45669a587dff45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 813f6f7690b2f996bd16e61e4d7a27e8b75961775b3cfb292ee69dba88cf1b95
MD5 5e194c59af215009d3f47d84aeb28cda
BLAKE2b-256 601210d0ba05aa9e746072661a791519eff48c9c6618fd81b9b14c8eac9e748a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 156c199cb557093d6fca638b4c34a6a69d2672a071a7de419b896cb3f0e051f3
MD5 df98a4f75d59faf730b6e60b7e3fc9e3
BLAKE2b-256 762d010a7f89c7a8d3797dd6310566f2f172ae8c9958243b8e17db4a10ec3e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-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.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5433f6e6d7243e018ca8b4be1e69ac830ab2964c9865be64ec93bbdb32407fbb
MD5 ef759b37def685fcfc8ddd889e395420
BLAKE2b-256 6afff7c23fce9f5d2380d2722ae70975ba0f2ac13d2e9f489902baa815784003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af195cabe154fad1d570c97d841c1274d12fde2df79baa5eff2da351b2eb9016
MD5 081959c9b758e81d314531163cf3f123
BLAKE2b-256 8a1c2393735bfc48515011a46c055ffa28724b00650ebc370052c3d22c6c7623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2f7b9919b3e9b492a4db151ed41cad17d72eec6c826396d0647db09262ccd222
MD5 2243314d63694f9577bed2533b2a2c72
BLAKE2b-256 4a5c16545972f1951b2438651e408aaa949272caa90346d72d2a67ede4520f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5f84f911fbf0f4f2142cc8e80006809c886f7e7d7cf42ddf72b4ba1cfa14b2eb
MD5 6a71ae3a0314485c880c196969f50e0f
BLAKE2b-256 9454afeba6bb3780e0b05780bb4b3c95b1cbb4940addfe5bd002c8f299f51e59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2aff5cc68ecc3a003a3cbd00b2d0009f268d9ddc81d4f869d9fd90e166562b9a
MD5 298a28d8191691733c73dac472052e6b
BLAKE2b-256 0223cda4f1a47a0370e77b96c62a4afa7d1fa2a7fdfdaf2d168bfd81f4ef2b03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dce42020943c72cde745d4fa508f8b2795a8b20373589a4b12cad810562ccdd2
MD5 8d8374a9c8985e9f717b4bc58ab22387
BLAKE2b-256 def4e938b9920413889ade336f9eb60e16560e159e2c2fc84895e891ed7f2a60

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-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.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c669fe43257d43cbe7f2aab0d912197fd88586f17890408ef06f558003a1a683
MD5 cd8db126718c1d7da5a1f6ae5b5c637f
BLAKE2b-256 f50987c66bb4b0fa356c4a7d5322a2662e544f469916864218606b287a3c3e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7a5c528107247852286792248c6e0781ca963e41026bbc506d4d62c57ced074
MD5 2ebd06c9e0171fc858c786044bb4dca7
BLAKE2b-256 1ce9f3ca462f4c74975123e5b14ebd89f5b9d49af5cb80d6cf49f8497be8dfb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 88ae39550ef8ce45b05114d40367ebd1f136ef597a03a0b7925dfdb469af0fb9
MD5 2354b5a8b4a87e67bec3fb5111ccfa24
BLAKE2b-256 077bd26828721b06de8790917be8de66387390e21b447a8b5da68c6478149908

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1a280732f815a02699c33ab02535a77f1004e3a19418e21f04e0c2e43cd2ec98
MD5 f47c0cff4cc9b1c060e78afd0eab72b4
BLAKE2b-256 2c85a70a662046960a89cac81349579ca3c09c339a95845795db48647d6900ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a4603b566faea5be40f32d44b1bc15984a9c99a85105ff74b7150c5802a1a01e
MD5 7c46fec0045bde9624be64829bf224b9
BLAKE2b-256 1d02d9d36f9f37fb3240daf7f5db6ccd50c14a24e150f9dcdb7c2faf7b56d38a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f142b2d5dc5106c512760f4e341f30e1e1d63b46bad217c71476bfffd961f6b
MD5 a6fa60d0f555393113d818fc9212ecb3
BLAKE2b-256 3fcc8dc12ed2856fa6f275e85c856cb12d3520235fe4f6e9221d206d193eea78

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-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.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1a26722303b5c4ca2f59002d4046c7b98f9ecbbcb3bcc76f0c1b5e82fe7765ab
MD5 41ad093c035e3fbf4b44e1a8e0bb4f52
BLAKE2b-256 570a34043964d54b3bda7a58f201edbb2224b2fc3fd21ac2b7f93d84abae3de4

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c01f15fe4e71c825804f41d18b0e4068a19c03c280d61d87dd3f9bc53f8e97d7
MD5 e5b1a591671780c23599c7e122f0dcf5
BLAKE2b-256 847dcef44da41bd6510232ea9cd56d8dd8d0724cc0eea85806add59d4ab7cea4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 956e35cb921b0df41808b1c3ec235915bbd3e49d38d0c76d645d36df288aef4b
MD5 94fba715e499630fe202441eb0127d04
BLAKE2b-256 e1775d2fa3fc03014c26dacc94d0ddbf1a42a513dcb91ac0266bf3b8f5e0e22d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d110e2e29b88fa8b551b8f57436072e6138b36c5742f7a9fff572cb5e3664c4c
MD5 08c779ac8a7579aa6bbbf92cc9decef2
BLAKE2b-256 95ff8ba83804ed8748849a217c9ca742e65e9e8e98015868a9b41b04acff3718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 306893824d3416a25e37a3964243d938b7cd12a76121cf72ad6a175fed162ace
MD5 066153c79eb7f53a25194e7f7da1e017
BLAKE2b-256 fd8cabc068e215cb0b16cea7e34a7f2016cb362fbd88ea32e0e6db8bdba00bcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bdeaa094d5537361f230b445e1cfa2f00b43787c3473d9ef12c9af290404a4f
MD5 7f1bff48f02906a03f3de18703d08f19
BLAKE2b-256 af1ca62503eb715d0c11559d5ad0ab8f179d6cc01effa7b8e81e39c3c548f828

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-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.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 00d73eeac59bf3ec638a7a4d942a815dd21c1f0d2bf1428c452182ba836b28ef
MD5 797860173368394a5995ad41db7dfc47
BLAKE2b-256 4fa93b6636e54e4974d397f6e57a5341e97e07c20d89e88096b70b170cce4beb

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcab9e7686821bbec7c33297c636d8383921bc9aeb00de93e1413b4bf1e23f30
MD5 88c655ea4d54a40d1eb2ee63bdf9483a
BLAKE2b-256 a42febfa755dda763170850922def2dc3c7a000494eb84e07ed9281526eb886d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fee849f90d831b7441050cdc00a2b2b8c749bf384b89f5766773a7781697bc89
MD5 0ad7e82fafec52c1a8c8c21c472d72b6
BLAKE2b-256 5a15e3e21afcbfe85ab4f8139459f8e7afff3785da845b209e08b9f0598c627b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a3a29df7ae8277704bbfde7ac31d1424dd3772d2f4d540d40a81f51c6d3f0452
MD5 6cbf789d3fe3e25d001d62ced7df0b38
BLAKE2b-256 f502cb1bc0ecf8dc014f75a78c4ebd5730492f40daf94f16824a2395c09115fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 742e2fa92d188c11ddef1127c40e1d5328bffe9621b42ee81f878c82801e2ecf
MD5 397c2089bb061a207774233b74ccb1df
BLAKE2b-256 2919f43f1a23bb3edd3a7ecd158bfb8b1997f241197805d57f7e7bdcc98f793d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bf42db4120fef18c08469c7adbb8ca9794f3bfdf42f3ba071ffb727a28c8556
MD5 2f9d3de0de6a544db3f88b613e0a6374
BLAKE2b-256 248befdb1c0f5061b1b376e31cb849b1a1ea289155536168fa42295192e53513

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-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.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6969976e4de8084f582d9e710f9389f6a7be138d22f03a983aa3127c10d8f1db
MD5 f8a4d8a35571ff36df94e605ec689c08
BLAKE2b-256 ea4bb775c0852e145538c854aae458a530cc7bcae6ec6aa37865a6620a988d65

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79d650a0c1834c3a09ced06abc6023db5ee35cb0c2961de2e8d7a059475f16fc
MD5 17b408d4f7fe0d3871602839a478b9a6
BLAKE2b-256 e3714776f4d08cf9a88ddba2999fa803be23c39e038f8077c05157cb9ebc234f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab1a8256bac45555713b3ceeefdffac5ac126bccfb64b7474459e9bd0ea068bb
MD5 7ba741a593e0a7da61552d403f4ce58f
BLAKE2b-256 edb345079b4d2d06f7c9108fb5efd99372dbe29589af805e7d352c0d81de09f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 8a840790746ad971d15772afffdb9457ed7cf1b1f0989f93a6b5618195e53a48
MD5 af4031b3c6e42d53a6094b5752623f24
BLAKE2b-256 cf9a54fca71ecedfdf8a2d10d80e29d59c9c852ce9a32889fbcb3bef4d59161f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e30b868d44ae08d33ae58550a4942b55d60a74e8cd2e6f444edade1506a79f8
MD5 bbfae8a4ae72454b487489e4ab16f0b0
BLAKE2b-256 82e17cde9cf7d3590c51d880ae5246a3f811479742b2ee7291643fcc7e59d8cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 619f68b7a262746c15056d0ada03348a89c188b12a8f58248d8c20ad2035cbae
MD5 0f83cee581b932db5b23c24703b8a5bc
BLAKE2b-256 8d5bc1527e782f61cca26856406055a78087655261d4f3bd7d8fb02dbd2aead1

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-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.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0ec0ec759290554497a9da7eef6acf5ee16c5edd22088bc6fcac80d3f5e5526a
MD5 c396cba208f8fb2eefc5d6db139cb0af
BLAKE2b-256 2d3680ce6dbbb097c14971c2463c033a84006db3cf1b0e240fc5c671cb4f0406

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d1e5bf213ddef798297c2f2afa0fdf0db2b504a16334cb4898aa246da474562
MD5 30fbd64c376b7f80afa2ccfe46cea936
BLAKE2b-256 1ce866005d91e34cb47246e9f822d47009fdf77e1f99c11068882209ba029671

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73c448d689078aefab596a75b489a195010a0f40a318ba6171d430d062d0774e
MD5 b9f2e8189e86f158bf7a3b31b4bfde67
BLAKE2b-256 845097348bbb97c761d9f335be172d2241a6a86ca99408303d5487b996611d96

See more details on using hashes here.

Provenance

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