Skip to main content

filters arbitrary paremeters before sending them off to be called

Project description

reductable-params

PyPI version PyPI - Downloads License: MIT NO AI

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

from reductable_params import reduce


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

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

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

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

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

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


if __name__ == "__main__":
    main()

Benchmarks

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

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

reductable_params-0.2.2.tar.gz (9.6 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.2.2-cp314-cp314t-win_arm64.whl (41.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

reductable_params-0.2.2-cp314-cp314t-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

reductable_params-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (276.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

reductable_params-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (278.6 kB view details)

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

reductable_params-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl (49.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

reductable_params-0.2.2-cp314-cp314t-macosx_10_15_x86_64.whl (47.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

reductable_params-0.2.2-cp314-cp314-win_arm64.whl (38.9 kB view details)

Uploaded CPython 3.14Windows ARM64

reductable_params-0.2.2-cp314-cp314-win_amd64.whl (42.6 kB view details)

Uploaded CPython 3.14Windows x86-64

reductable_params-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (218.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

reductable_params-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (216.6 kB view details)

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

reductable_params-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (46.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

reductable_params-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl (45.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

reductable_params-0.2.2-cp313-cp313-win_arm64.whl (37.9 kB view details)

Uploaded CPython 3.13Windows ARM64

reductable_params-0.2.2-cp313-cp313-win_amd64.whl (41.8 kB view details)

Uploaded CPython 3.13Windows x86-64

reductable_params-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (220.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

reductable_params-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (218.9 kB view details)

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

reductable_params-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (45.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

reductable_params-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

reductable_params-0.2.2-cp312-cp312-win_arm64.whl (38.4 kB view details)

Uploaded CPython 3.12Windows ARM64

reductable_params-0.2.2-cp312-cp312-win_amd64.whl (42.2 kB view details)

Uploaded CPython 3.12Windows x86-64

reductable_params-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (233.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reductable_params-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (232.0 kB view details)

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

reductable_params-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (46.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reductable_params-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

reductable_params-0.2.2-cp311-cp311-win_arm64.whl (38.5 kB view details)

Uploaded CPython 3.11Windows ARM64

reductable_params-0.2.2-cp311-cp311-win_amd64.whl (41.8 kB view details)

Uploaded CPython 3.11Windows x86-64

reductable_params-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (218.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reductable_params-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (216.5 kB view details)

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

reductable_params-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (45.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reductable_params-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl (44.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

reductable_params-0.2.2-cp310-cp310-win_arm64.whl (38.6 kB view details)

Uploaded CPython 3.10Windows ARM64

reductable_params-0.2.2-cp310-cp310-win_amd64.whl (42.0 kB view details)

Uploaded CPython 3.10Windows x86-64

reductable_params-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (205.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reductable_params-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (204.2 kB view details)

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

reductable_params-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (45.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reductable_params-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

reductable_params-0.2.2-cp39-cp39-win_arm64.whl (38.9 kB view details)

Uploaded CPython 3.9Windows ARM64

reductable_params-0.2.2-cp39-cp39-win_amd64.whl (42.3 kB view details)

Uploaded CPython 3.9Windows x86-64

reductable_params-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (205.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

reductable_params-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (204.9 kB view details)

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

reductable_params-0.2.2-cp39-cp39-macosx_11_0_arm64.whl (46.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

reductable_params-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl (45.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: reductable_params-0.2.2.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for reductable_params-0.2.2.tar.gz
Algorithm Hash digest
SHA256 54054f2cf36d980736453b4e6c4054887cf72078ebb2603e8ca1fd35bd052e29
MD5 faabaaee9e23123af20a44109db4be94
BLAKE2b-256 b24e3d87419c084fdfa7b7f59a799d914a73b004755d6cc743f30c6f951688e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d735e5dcd3f0e95b32b3753e892582d0571415b0617dc925fba8020687af8c12
MD5 88d72ef57b350270f8b675c33ddd475e
BLAKE2b-256 df46bf4abb0b3ea489463af0c014eedfa24fe31aa1e7c573437e92e3388358eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ffb1057dfbc3bdbe44cdd08fbf89da7e8f8528edb73f79912bd0294f1fee0827
MD5 ff951c81f124d4f63221a04a38444554
BLAKE2b-256 ffc21b6481b4aa95ea236f83fae936c80094f78d2909051467f8c7485ce191d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1af3e648038e19d410bb6384b252b18046399a5a5eec32efdd00e65902ee633f
MD5 296dd2904f1fc2fb1dde5e0d9325a43d
BLAKE2b-256 27a737ae9337975136915e08b753301bc0649df86615492a7d1e967cc7242236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcee85dad9db7beea5b84f3252bbfcf977e1814d643080431c8d4cf3becd8be0
MD5 fd2df7f159ffe8b4a51655184b2c1fca
BLAKE2b-256 afaedb9054be00b9a1740d94bb9c0f7759a9525597ac1784a6e496af9bd59227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e10c63b20bd6b047fb4b321586d5e79f957e7c6475eb1e78bb3ad842fcea33b3
MD5 de76872723a5ab88bf68261bd2e97e97
BLAKE2b-256 23c0798a452f4e3a79c0f4af584d4abfc4349d9300bb3e302a113d322b89a5b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 de8b80ceccba5ad4f66af798f59a9ec4b24cc3e148a5a91e4587696c17846ded
MD5 b9a9c55740e4e679eab7006baadb5e42
BLAKE2b-256 299f8042e73ee7e4c18ef68f7189ff86c1fe921f185502c6bc7cfe92f3796692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 42b2f73e554bfa7d59208baf090fd5cb1fd9bf7af514f2e29c8f4e15675a4567
MD5 c55b21bf1ac3f923138c617917bfaf58
BLAKE2b-256 9110221d6022e5550b307652166c1b302239f445966fdfeac108af6ea4e0551c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f31c30d3754fcd77c4deda9de8811fadfb509c864a3d96e295daf0f82e708b3c
MD5 fa9e1c5bd6702407f9ded5e8a595c523
BLAKE2b-256 b49985360d89f5d87e640f9d903b11df2213db5f1a6e1378ec65b8203d7d801e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5a29b0d246f8de3f223ad7a0a6c2e944dcea90c76725f8a2045a403c24378c8
MD5 0ffd7a497581f7b84820e1cf90858514
BLAKE2b-256 bcea6db597108a1a855bc5b199381b15e490ef3626b66a9765df992cb3a93efd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84711904b0a88d6644735e0330ee7eb23ac86b07b722074c26132ee64ff47cf7
MD5 60a0ab5c90fecb1ba7bcc0d0fd285af0
BLAKE2b-256 88c0518f89e03476b4ae8b4d41700f42fb9df6ed7caa76901e9b92a631639c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ac596754200656fe7d4eadfdd6a6391bec915d0e72b4bfbff1070dfeee54b84
MD5 f847b205acca22dab3cbb25752e75b07
BLAKE2b-256 ef447546af4d9de33f708ea0d2d62fe7604af71c823ee1ba88ec18f9fb5df802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8fd93b57db1ecf3ce32120b2d27ff8ad83642f9c147c20b4a414f861ea9ee9d8
MD5 35ad92c97184eaa5ef21d826a178cd25
BLAKE2b-256 4684096f461b1f9f8c4f1768f836b1e252b779aec0003467888730148ce9b08d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ca78b2f03bf3f3c2873270c4924be5df9e140814d2eab7985b3f6b8589d75def
MD5 d7ce060f6a20c578a1b6e1a6e1c00616
BLAKE2b-256 75de59eaa0fbf366cb8b799acc9e01aeb1435c5d4fc4cbe8fbb2f0d95e969915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 14e32784c5efc37324d4da9d8253a13013120fda0083d84b428152984b8a4179
MD5 e424f4547c071921d92c257cb4f505e8
BLAKE2b-256 9c8ce73befd329c28b5300c340b489fd353e1a7bb0954c25557e45c6a798b35d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ea73be590e552b7a4eb611c67181efbb49a3252b71fef6d0aac6547ef4839d2
MD5 5d04a2cdda2c02f45d344fec56d9b6c8
BLAKE2b-256 2858aafb4323bb4e6dd0af731327f268774a969fe7cb0608e68a683f3927ea32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 291c69518579ecdb55ca790f4e92da471a1456f7f5dbbfd2a8acc6e0ca3ca70a
MD5 5a7e8fabb3f7b42715cf114d4684efc3
BLAKE2b-256 9095ef31a11fdf3831359ab63384b45f105320492a100de9c2ea66b3db7cc381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31f42a8bd50947006c4fec06cf2185ed4a552a4a4d61f09156eca29828271db3
MD5 a8f0c0a011cc6e77489853204736cb54
BLAKE2b-256 a948b99a0ce51a4a73f9af6a4d7ba17e3b07ca77e7a0d8b5055a0acce6492a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba16a774249d08f847c01f339715ab3dde62bd2faa153e1a1ed10b7a1ceda221
MD5 3f7acd3a1fab4e93437cfb25440def5c
BLAKE2b-256 ec82a6446d4e5b0c749846e63dded99ac27a68f2c558bfe472c335037bbe719d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3e936f365e2ca7bfcd283e41c80aec73651f2b4361882b20c39337f7be3a918c
MD5 5394a166c9e10932c2604e43d4b9b5d4
BLAKE2b-256 7478e85eea51cf7f58fec6dda77e64c912d4bf55874a4f6dfd96ba26f2d07ff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bae36c754d0f61498dae0e38cec1730966abc7adf42fc5a3a5b18929a360b4d5
MD5 57f6860e19340d2b41abed6547725e83
BLAKE2b-256 f86f95f0623ec925e91ad4e76f3eee210fe271d8a9e86b5b01ccaa91d3164f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdbb80416605ac7d19166991fea4e16e7c57b2a2d6595e487acd4cc0f63ebe35
MD5 6080b7346cacc4c099ed2f65ed7eaae2
BLAKE2b-256 e2cfc59173f8a1938ba85867ff51aaea295913e17b97dd46f0cfb541653ec03b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb1f217417d3a39b2789a893ecf5ea3f823017cf70d5fdd7f9a127f985beb1ec
MD5 d274f99c9125f5ba4453d21d9a466524
BLAKE2b-256 c1df81e0b4d22ea485537c7b6ba43108e6fa7e2182da9f1c02dedb6e27091a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4aea637c59cb4a19c4d241049c38109e0f76a8e51ef064fcc279e75953f64ecc
MD5 0782477fe3b145eee363d1277e0fc1f2
BLAKE2b-256 e7a97f8255d7094fac0fa682fd34279fc757f5aa98b6cdeba083d1ce3c846763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7466d09ddc9fbdd6381788c814a6dd0595094701d6c91e73cdfaf6e4b535af48
MD5 c5beacb4fdc5cb35d836f3f4cf557770
BLAKE2b-256 c8ee04f88bc91fe3b38af0781e2a7cc07558881029626ef2e3dc942eeee574d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 af6ba0083cb2b01aaa5f086977055b9c45352618f066a79254b02246799a6660
MD5 a39bebf0f938389254cd6705bc83a139
BLAKE2b-256 8ec2a324439b06f2b3481f93766152ecd7681912f7217eaf736f31a126ce7c7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20c7ee7d2952f3a6ea93e92722afd14bccb9d281c60e9cfbc4ac00d7551d5794
MD5 98e7ed0bbca6615c9f700010b5ed5b37
BLAKE2b-256 f579893f4c2871c5c838b1f8dc7049dbdee245f48726be4702fe3b320906d6b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6cff2e6c9dcd689ef9c6eb757368dd3d0e8af96085c4d0748e4ceab01c37ac00
MD5 33ad0dc3ba10a6e662486ce55e08de1e
BLAKE2b-256 90f2bbcddb0a5e0cad5f9b371a3326fdf2495fe8df9e4cf225df17ac109868b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c678171be977779455ac2a62c15f478882d20b75454761350f796c880603d97
MD5 770f94d0b2818905c24aa3caa6cebcbe
BLAKE2b-256 1f24ff7eb4b18455a3d2ed57657a8105fffc23c6f658852cfb6b148d4928f6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a8a614217c4e2467c0a1c4cd8a3eefda520ec1c836c8dd67dadb7a0d9ae5db6
MD5 f53e4bc6465bc1737c0b559dcecf62d3
BLAKE2b-256 738caf12e6ca7647d45d0558175258a144b016efb291f7e5a691a66995225962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed102ff9fddea46d2f389536fc2dee4d6482a8a714b6cf1f023c6dbb4b842a0b
MD5 c6f96f2d6afa8cfe08d7eb784b2e679e
BLAKE2b-256 4f2ff2f798051303082c8973370adce72154984d34b47be94d65635ebf278267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 83d326e02a8c49b27aeb95983981167955be9e6f49fed8526ef4758d55f0e598
MD5 0684a52a7c51204af97e2bef58f21505
BLAKE2b-256 2b12d739a84c6c00fcf88a525f5543f03e71722f04703061c0751369b6b67a39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bc3340f0c69bd49d8f4271d587574b444a6e0fcb926a7c900d2393619fa9c8a7
MD5 d7216f6e27bcbc2ade6457c5f661dc3d
BLAKE2b-256 2d18076b79054bf92f5cb2c7a954c64cd53c68f77a7eedc7c6177af9d2f15186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ddf19430bc9d0b504fee5de68eece6d9df32afbfbaeb88c8ea7a57461d932a1
MD5 c05ecb7acd41a87cfbd304d3385ffe57
BLAKE2b-256 ed8086d34eff33fdc6060a2a54bb2c992312c8db7e53f4f4ef94850f5b68c950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56f7b99d288920337b889dec2cb2d232d788167bccc7eb4c7b2d87c73f09b65e
MD5 9c286c2496715871a76e8cd66b2f7312
BLAKE2b-256 3cf4b0fb015f7a644471947ce31528cac381170c760c87bba37fa3e9f90884d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a70a79c17596074030ed39dfc8126443e704d28a6a8a7dd228926b28a70d3ea0
MD5 901a0abd46cdfe747bb401afd3be1151
BLAKE2b-256 c2b57b0200ac29f135ec886d9abf41d4fd990a8fdd82b77a044e0544506a50e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab38ad187f55693aca7d373f7460739859000d49a63a76323f5cc7ffc3a5fe76
MD5 f22fae1544c243c5b39318ae4235f426
BLAKE2b-256 6bd380f9a6420c183c184a8b34597fa124ce8a7396f7c6cbc286541fbf4a607d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 1f5d9d3f7a6ab31489ec60622d827e091b1e5e73f2f59eab733f504492ca5366
MD5 6cd02e2e8925272b1b0015abde0b88a8
BLAKE2b-256 d6f2baafc8fdd7849d3ff09e61ef6856f573941a8bb4e0b9db695fd78f731908

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 53475e8b798b3a0f8683128a5c52924864a2c423e695f8acacc3759440d6b35b
MD5 9e7680f82b92fc59bdb759b004ad7c8a
BLAKE2b-256 61f1bbd9674bbda62c6ba5e8d7222649314b59528ae1ea98cefb220e05b11f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76ab5478fc839b4ab53fed2244961f5c4c01c8c68c2654612478c309fa29840b
MD5 cab433106f407b178d074846dbca29b9
BLAKE2b-256 1daa50c64e950abef2b41c21809388bba81815554b7e01fde79cbfb4f9cd4712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a00ec1102cbee13d3f728e854f9c89cdac26cddb423d16530029149c68198eac
MD5 82390de7d8d61851ac41e5251fb23982
BLAKE2b-256 2a54fe02dce0e9d228b0a2deaa3751f33feceb2d73ee5451338941f8f3c651f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0a85fe08a152fe7016cd514aab88a9deb1ac31665136abf08e47134bf1f3daf
MD5 cd5335fd88d89b4acd28a1846f8b1617
BLAKE2b-256 06494a60e582564f0c5df83a49891328cb33805580129226c002d5a687eea493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 009fef5112592665dc7217ad4a8abb64551ee781002da9a08dbef553956ea60e
MD5 985902000f953c09f3d1a52d70a04caf
BLAKE2b-256 28032ce49e64e08dae8b6788aed28ab23626747fdb91f8ca8bc9b5bad94011fe

See more details on using hashes here.

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