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-0.5.0.tar.gz (10.7 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.5.0-cp314-cp314t-win_arm64.whl (57.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

reductable_params-0.5.0-cp314-cp314t-win_amd64.whl (64.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

reductable_params-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (256.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

reductable_params-0.5.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (259.6 kB view details)

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

reductable_params-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl (64.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

reductable_params-0.5.0-cp314-cp314t-macosx_10_15_x86_64.whl (62.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

reductable_params-0.5.0-cp314-cp314-win_arm64.whl (54.6 kB view details)

Uploaded CPython 3.14Windows ARM64

reductable_params-0.5.0-cp314-cp314-win_amd64.whl (58.3 kB view details)

Uploaded CPython 3.14Windows x86-64

reductable_params-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (202.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

reductable_params-0.5.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (202.3 kB view details)

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

reductable_params-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (61.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

reductable_params-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl (60.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

reductable_params-0.5.0-cp313-cp313-win_arm64.whl (54.7 kB view details)

Uploaded CPython 3.13Windows ARM64

reductable_params-0.5.0-cp313-cp313-win_amd64.whl (58.4 kB view details)

Uploaded CPython 3.13Windows x86-64

reductable_params-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (204.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

reductable_params-0.5.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (204.3 kB view details)

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

reductable_params-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (60.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

reductable_params-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl (60.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

reductable_params-0.5.0-cp312-cp312-win_arm64.whl (55.1 kB view details)

Uploaded CPython 3.12Windows ARM64

reductable_params-0.5.0-cp312-cp312-win_amd64.whl (58.8 kB view details)

Uploaded CPython 3.12Windows x86-64

reductable_params-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (216.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reductable_params-0.5.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.2 kB view details)

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

reductable_params-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (61.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reductable_params-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl (60.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

reductable_params-0.5.0-cp311-cp311-win_arm64.whl (55.2 kB view details)

Uploaded CPython 3.11Windows ARM64

reductable_params-0.5.0-cp311-cp311-win_amd64.whl (58.5 kB view details)

Uploaded CPython 3.11Windows x86-64

reductable_params-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (202.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reductable_params-0.5.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (201.8 kB view details)

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

reductable_params-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (61.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reductable_params-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl (60.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

reductable_params-0.5.0-cp310-cp310-win_arm64.whl (55.3 kB view details)

Uploaded CPython 3.10Windows ARM64

reductable_params-0.5.0-cp310-cp310-win_amd64.whl (58.5 kB view details)

Uploaded CPython 3.10Windows x86-64

reductable_params-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (191.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reductable_params-0.5.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (191.4 kB view details)

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

reductable_params-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (61.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reductable_params-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl (60.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: reductable_params-0.5.0.tar.gz
  • Upload date:
  • Size: 10.7 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.5.0.tar.gz
Algorithm Hash digest
SHA256 dcec9f320b0b986df89ac9ff4ea609f5c9dc8234d3b302f567245b6bee1db8bd
MD5 50ec57234c96a63369b2731d278e5b3c
BLAKE2b-256 7a3e7f6e0f59fb7be1fa438d76c0184cdbb913354d7152065d784bc20b12abde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fe59701864c0a325753bb7a10bda7b32e9d7b0c4ea73569920b7330308ce488c
MD5 00b6335aef4594158d0239b40af77e40
BLAKE2b-256 f841d0f5546431df48aa16ba04c3729e8496df4840f26184525136fbf75eb89b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 27fbcd0a0e2a103f86556aaead1b79598a05d07bf449e64436eb21741a37c41f
MD5 a6f6fc5cb1b5b5de680fce96c509e2df
BLAKE2b-256 4e7c2bba4d98416c1661e6d22f925bd7c39603f431540093c256dd640e4ff764

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e155d6f27d682818292e536f1718bfedf1e9fe926e316e93cfe0c23df689d164
MD5 4cc56ed12ec014ca1d0c7102beee745c
BLAKE2b-256 2fd94277b99485c5ef8f4dc020e74ea076c1161ad3d3cf4de09f36d6208680d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 129e3d260bf92e2d1e712eda830c94baae3a64c6d6fe8629e98a45b439ee91d9
MD5 0b71db9ff8a10732c89b3d8f34711e09
BLAKE2b-256 80bc4b3c382f37d35c2239b9cb8e187df87cf93fbbe98ad5e54d2a2dbf9a9142

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 961bbe46f05967c91f875ebfaf467b07968a7499829e9ddc4382b8ffb6c6e4b7
MD5 248393d108bda55739b6b59c7aac9357
BLAKE2b-256 9ad886e4ec7c26a5f4b5166b81ff8fbcafdbd89d1d11d6720c97ad43ff691cdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 09ec40f5d9e224108e019e62d337579bd3f267c41666867340881fb2dfba11a6
MD5 f0593f84651ae92bcfb3640695866309
BLAKE2b-256 3f2fadc9159300b5e91bf02952a4968a34272139a707a5414558af5e0a149304

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0aa698a1fdc545d680284a6d94bbb3da255e0e8c23e7f1aff5ff00c64342f955
MD5 ff82b7079531efabc4771dbbe38a435a
BLAKE2b-256 e11666dad1bbab03154c1fdfb95de3e7ab3290ec546f21332b3ebbbf649d0644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8db7e1a11b41c315899c3ba6cea777938a5e0297a06b120fba5508da29b9edc1
MD5 67dad73e6f0b1f0397a35782b1b96073
BLAKE2b-256 a692666784a63883b221332617b8fb658e13bb45c2d3eb3d98c905ebb2995e1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19ac49f516bfc247ba8d667a466d3800ae697323048b0159111b63b4bccbb12b
MD5 243dde6d81fc88191b38818105a2ba43
BLAKE2b-256 c9bbe0bef2a38c7c2579b7742e0dc1adb02fbe4f72d72bf4026fa1ef4322416a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7e36904116c033b3ffd0092f0661d3c2770cbf4e77fdb18b4250f32df6a59944
MD5 951d2bbfb9e1b74e92c0c50c3f32e9ff
BLAKE2b-256 59948632fc0e5493ec358df10da5ea01f6f1e9c21bbc8fd90b7206ce04f30880

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2593ad691e5f84d8791ee167af1724f085b11caa8130cbbebdb5b2be25553fa
MD5 68c95e98d1cdd979e83db9151cb36b9c
BLAKE2b-256 f83c76414af7110f2711bda197eee91419fc7134f781aa896bc4d4f072bce600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0893a5c55c996a68ff58c4b474e29c52da78eef50abfcccc3ebc0b5ac4a22b08
MD5 67d124b2835636bfcb4317e1bdc827e9
BLAKE2b-256 4f440ab22f54a5c44eb9c97d8d73b2bad5c2c8c4ec458f1cdd47ffe264c2df3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a4ade694998d24dbc149bb4790dde4c844fe1ebedbd93232a5c846458d8c8a44
MD5 56b3cb16141dff7f07196cf68d77b831
BLAKE2b-256 a667f13417d5bdf490c37a24dcd2e3d1aa5adcc55b99f4557bf911ef5dc572df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3258ac3ba91b15efe328aa2099ea43a7bc8089a668ce038f81c09ffb098af3db
MD5 74b52da8570383b0dbe3e3e7ea698f60
BLAKE2b-256 c0477a34a829668b96abb27fe0fd6ce3beb14b8add0e118dc6ea3e7bc25c5347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 146bec26444cde6287e4f2957d57e555aedfb0e9b2804f7e5e9309e20f6c9eb8
MD5 aec6ff6ff0ba6797d3f25b968b879e8e
BLAKE2b-256 86996a98d23ad276302ac3b2ca126838c48ffdad4f6fb35967f600fdd97d166a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4e8a9d7ce31d741a9112f7fd148b5dc46386871fbe685596e2ef56e2fab4ffe8
MD5 2fb44492b2a478e94c1b4e09fc685703
BLAKE2b-256 9df655f81b1e61e24d1c8ebb22ee93ce0a4811dcae339b998a33de2955459ecc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24b38557385bc2d477a900e41787c9a1a29838148d7db268d3c06de03475b13a
MD5 8e866134c59677b8c20898292f43a60c
BLAKE2b-256 bb6019d2093ec377cf7fc2dec7378590659bb1611e754391a2ffa6d78bdd0d68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 32ee5f713d84be535d4636f659a91b5c58bbd725ce9949cce3df2b4659dae4f4
MD5 0b1b126a194fc43c78aad0028ff459a5
BLAKE2b-256 66c66021979fc288efc866e345951624d24a3831b7d8bef747c876741ed2f6cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a92636fd1f1dbbd7b4ba3afbcf52554f627b182734c26693c61d6728bc6b20bb
MD5 8b7b9e6b8431116458a471be32d6e32d
BLAKE2b-256 635b64a6db5151dcf40530a6c09f724edd75fca27990a7d43cbdcb1954a95c41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4ac8c7a8b2dafb43b11661024d3e67e43ada5270e9a1e6a4a1f664894375e72
MD5 94e3133837920bc9baffff7588de0b59
BLAKE2b-256 4d1c6e4cc528d90af1bfd62ef2ff36e38905339c3a581d6a8a0d742bb3a0309a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d70524f62a0c1ccbb4611874748610a527baac42963e269a27861903a64e603
MD5 8b830f723967bf2990dfa854c684a5e5
BLAKE2b-256 3b6ccf83508cde7581db7e61f9028f4a25d7d81d410312f454f02b57bc5b3343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f9bdda34d05a8ba804317cae9927baac5a98aa9b612cff8cbadc5bcf04cfdbce
MD5 95548760c34a571491f5233c70148253
BLAKE2b-256 c58a46d0a7b4f51dd7e509abb3f5741e1182179e130bf789a78fad70f9ef3618

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc90c4cd7acae6f9aee39b41560ea566c97e07811f79cc6f6b33ed94c0eab988
MD5 f558d998486da36612eabed8cf211b70
BLAKE2b-256 5ba14f98cf50c9a3775db5684530445c13a7c410175661bb345e5ae75f3f2ce1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e0c98bbb2d0c5fb03f6268a143e33037d21abd7b9a5fdbea4f38b326adaad48e
MD5 e895164faaa6317516f85602262b157d
BLAKE2b-256 5e098919df39babdc577048d760a3e9eb5c4d4244ac31b6677ae953acb1beec9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 257e3f20e9d7c7cd07d24eb3524cc5710c6990e088dedd6e5778a42a68b12a86
MD5 3a89b79f915dee3539b5afe141effdb0
BLAKE2b-256 b2bbe7d1df83170d52ca810316c93c0ca91ba0bc3d9b0347c2e1eb09b5c4798d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5f90ffe9802431580acf142c139e3170b0ca9ac7af512f4cb1978d6f89c32899
MD5 3d2e652cd568952abc1ccd7b30534c75
BLAKE2b-256 42527901e0ccc68d86bbc4e87e05247f15231cb0a4eed6b04b94c3a1931a8146

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a6c59f1c698b4d4d8cbe9224dfc19483447f9381d95076961dc3cdbc74b8aa5
MD5 f3281efab1fe9c1d7dac587dbc925a90
BLAKE2b-256 f0c40b465e6ef7cbfa0a69100835a1f070de1cc58a5d27f64ee7a8d3ceadaea8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ed0898b5abd93c473f107a8ac899a5359787a414d1ca3f670922cf57c2f418eb
MD5 fd2085af2e459989cb1095c2ea0bc74d
BLAKE2b-256 7891900f228b978c7320c32d1225e77d7825958aa31c3ffb0e541b6c832908f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c560e02ef666c640281e6b1378ea6a15d5839cfce69b90137fe2afca331584f8
MD5 fae897ee3ca14608309f9d1657e2a66a
BLAKE2b-256 b1428608d4b8d75e9d84ec636d65c9c5b2aac66650ab5b8373da2644ab6313c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c894135004191c0d82d2b180859f0f8803809de18d4809f2ca17eb48cd79b300
MD5 78247a22cffe3f5895561474c2e223b6
BLAKE2b-256 eec018ccc032a41cbe8d5beacb901ff987858f993b437ceec3f7e6c55aca7714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1b689dde424a96ec4d4ac7c5b4d049f5c564a5661f45ea369fe645baa4108cc6
MD5 69bab5cf744eda9896aad3e9a66ba4c2
BLAKE2b-256 56f2e6b94b483798dae15b5f8ee3910f87135efabc10e3d16b094019e61be1d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 770a9a5bb8a69a450a81d4d6005993dba85f75ae096595625c5f65dcc159a8b2
MD5 cb1372057cde53adc2715abc160615b7
BLAKE2b-256 e542cbb4e579ec402d2dfdc6e17bf6e82786064f987aae46ff8192b42817a656

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e4e7e2447d9173edf6ee20e43e02bf4a2be18adae0c0e84aede3c1f44d3cfad
MD5 21962c7a3e0a56df410b8ea96f7074c5
BLAKE2b-256 e0358445f4e2d5ce6096100be28df4355f21db4d3e874a8830f74b6d5dcf2bf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c29f28cdc7bab79bee11f37e29440420bcf38fea30d54578ed722b9678c45f6f
MD5 c1b5e9e0fe329d6bd55ca5f8283aa1dd
BLAKE2b-256 55ebd555ecc54992f53606c59c502ba3961c53af86348cc20bb8f29f598647fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d61cdcf43fb8b8e106f9eb99cba621dbfb9ee52b906201c292927137998b097
MD5 6d2bd6d07988b8a0ec6f4398fd8c6b90
BLAKE2b-256 2d9de3cece1894c80a1747ad347e414e50ce0e7c4abf0a3cdd0f5272d4bfba9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for reductable_params-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 315c216f4a75c392b015be2d7d43f41bd1fbf38a6f8e8ede8e0d8c2366e4db7f
MD5 f9e72dc91da2c4bcfafdf09517c9673c
BLAKE2b-256 010088d37aed287fda0745df180a65484a90846b2c4cd5bfe188273faa6b3ca1

See more details on using hashes here.

Provenance

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

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