Skip to main content

filters arbitrary paremeters before sending them off to be called

Project description

reductable-params

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

Uploaded CPython 3.14tWindows ARM64

reductable_params-0.2.1-cp314-cp314t-win_amd64.whl (48.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

reductable_params-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (289.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

reductable_params-0.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (289.5 kB view details)

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

reductable_params-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl (49.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

reductable_params-0.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (47.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

reductable_params-0.2.1-cp314-cp314-win_arm64.whl (38.7 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

reductable_params-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (221.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

reductable_params-0.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (219.5 kB view details)

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

reductable_params-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

reductable_params-0.2.1-cp314-cp314-macosx_10_15_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

reductable_params-0.2.1-cp313-cp313-win_arm64.whl (37.8 kB view details)

Uploaded CPython 3.13Windows ARM64

reductable_params-0.2.1-cp313-cp313-win_amd64.whl (41.7 kB view details)

Uploaded CPython 3.13Windows x86-64

reductable_params-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (223.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

reductable_params-0.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (221.7 kB view details)

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

reductable_params-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (45.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

reductable_params-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

reductable_params-0.2.1-cp312-cp312-win_arm64.whl (38.3 kB view details)

Uploaded CPython 3.12Windows ARM64

reductable_params-0.2.1-cp312-cp312-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.12Windows x86-64

reductable_params-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reductable_params-0.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (235.0 kB view details)

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

reductable_params-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (46.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reductable_params-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl (45.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

reductable_params-0.2.1-cp311-cp311-win_arm64.whl (38.4 kB view details)

Uploaded CPython 3.11Windows ARM64

reductable_params-0.2.1-cp311-cp311-win_amd64.whl (41.7 kB view details)

Uploaded CPython 3.11Windows x86-64

reductable_params-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (221.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reductable_params-0.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (218.7 kB view details)

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

reductable_params-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (45.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reductable_params-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl (44.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

reductable_params-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (207.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reductable_params-0.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (206.4 kB view details)

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

reductable_params-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (45.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reductable_params-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl (44.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

reductable_params-0.2.1-cp39-cp39-win_amd64.whl (42.4 kB view details)

Uploaded CPython 3.9Windows x86-64

reductable_params-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (208.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

reductable_params-0.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (207.2 kB view details)

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

reductable_params-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (46.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

reductable_params-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl (45.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: reductable_params-0.2.1.tar.gz
  • Upload date:
  • Size: 9.2 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.1.tar.gz
Algorithm Hash digest
SHA256 9c640aa26f609b363c51344dccfe73a86c0d085a198d17e6b0ab1e9eba88fbb0
MD5 7a571075843ead0f7d1255f65b6398b2
BLAKE2b-256 1f84f6c539119d5f20e9d981db8507454b3859412acf96e09a04732378d3ce49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c80f07deffbc57ebac78b967bf01488eec6cf557aff4366d4ca6f9a2f048345c
MD5 cf8cbfc1d5b150b4d9638bcf9463c822
BLAKE2b-256 8083d18a3eb656f06c79b6cdb2d04232ab5883469d75b90225c0b938dc0b861b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b2be45d72b9ecb6451a87abb1a8ccc05c13a14eff955d0a0bcdfadc43d8984a9
MD5 318cfa5165c8f09e7346226cc26eba28
BLAKE2b-256 85d4b00af5c6ab2571b4137c2fc330d5cd06000878f92486540803073d670045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30380a1012c2bccd5b78fe1e3e72561baf00da83e20e012fad0c162d572739e5
MD5 81884838d9b256d4f75ade441d133f4a
BLAKE2b-256 b722f94d4028971d1aa43aef157bb1033712fa08cb50974976e77b4aab6ee0a7

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d62c557a63c14233014d5b28b0d98b44590640f80ee643427a3ba5a3e649a1ca
MD5 655e0e278f0ecd832f6111590c0bae6e
BLAKE2b-256 08abdeca2672738458f8e33e95e5d3d1ec120a37eacbab7320fee486306248e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01bf7cf71902ea638d764fbac48b38d58585c2227c266ef167d44478aa1065a6
MD5 50bf28c5a1ce2762b79578eb367f3eda
BLAKE2b-256 3f403be53e6e06bdbd3a8c6e12271b6610ee2744afa23efeda1faa565df5e333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6268a158c87219b04cf237366db17376ca74b3fb00b9a32b76a9728a971b5165
MD5 448f44d88671348214e847d14f1dfde7
BLAKE2b-256 e9fcb066c70746770ee6fde0e01d8f7da1c4e60f55fff48183029d6a551309d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 51bc5633e3800dd0943732919335ce2e1a8e893c29774d5cfe11f9a90aaf0a87
MD5 c202a43ce95e2628e738b8f34e4c18fe
BLAKE2b-256 933196f29ccb7c7e773273e136aeeebfff605bb4fc4160f3e021f77499684a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8422a8264db706e76506b230bedc2f5e0a9a64a6c39b69e3b9f4d3dfd7178feb
MD5 f9fe355246afc196e82b79eb4d391a80
BLAKE2b-256 179975b52b4e53ceb8e9e853bd3d8dd13426558639636476708be27c98f1127b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdda349d60007568e50830994fbabbe15a803e23adda5129f08540cddb85b83f
MD5 bf4f159e03a4297fe26fd1aba946fd3c
BLAKE2b-256 e93c3ab784c9426f64fa3bcccd5b56808acfaa408ba60bdae6f710cef3165e09

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d21c2ada17bae5c96e992f7275528d27f53a079e502cfa22c1b3395cddfc8eaa
MD5 2746beff3a2af93eca1650ed56a201a5
BLAKE2b-256 adcca6833cf7a8aac01b066e4941e62f532408f7b843826c27d82777476023b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb4cd5db44d5ba9c0b06e7330d0163fe2185adfc46108e3d7ad90ef8bb7614d6
MD5 8045cbcacca7cd2e446a3026218faa1a
BLAKE2b-256 8f219c1da88b74bbb5b8cd888b19ce35acb4af70833d3508c59125efc57cbac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6533e1213fe56f8b50e0ce522ffe6c1a05071bb21121b196c4e382ef3080ce42
MD5 417f9d44e3588cf0a3c57e3049973a2b
BLAKE2b-256 8477831a29ce544f034209f24ffe1328ee1dbac1b5d55ee683348348d522e227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6645f790b8089e799219851e50ea58105dc6f415fe28a69e098cd8f9316aa7da
MD5 4cdb61a6293a48505d17bc9203b28311
BLAKE2b-256 97a257189e8dfcfeb739a842f01fb450d4c3fb57f5b327a6bda19326f9b6b539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ef8318ec9805ca3b5e4c538e0d48cc0a13e885a0fa89968f19fc4e0b959d148d
MD5 7bd895e61e895c60332d3904e8db10a1
BLAKE2b-256 e91bb8720a31f4360559a2358aa80efe9b2f6d126cf7bdf2036a8122f6be152d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1db7e64f939caa77f9178cabdba8c643f0dc4c5607b9b23a327b2130007d21d
MD5 bd45d2f8673d1447e86dbca9fa3c20b7
BLAKE2b-256 1a6c29d0026cf4c7b6271c9906653e82ef08732413100783487894c8e27f850c

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e879bdaa0dd21dce8a8f66fbc9d51e5216e5836995be65879b58147772cf6c8
MD5 ec3bf27c4fa291e4545ef740aa8366ea
BLAKE2b-256 3932227e0544656e0f32003181664cebc7af0566b9d7fc13eff7d7ad6c1c45c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 767ddc4f2557b542000ab922587bcdd2159ddce0a8d1cfb3a92ec05d6e371a90
MD5 6f857187770c64e9acac3ca6f9592adb
BLAKE2b-256 e161fa312fbede8526fe57cd3b1d64d7824991509279eeed62010b77d775e758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a2f70895db7eb9af5ade92d11b593289bbe7ce8e58cac4761d544fc97829f0e6
MD5 f87a47ae7d968e1badfda708877ceb9a
BLAKE2b-256 812dad2d361cdbb9f623db253f99deec74424cb8a4b72fd4a1f7969dcb54a792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 928f23656fe45d959adf22c0e175241d86e40ee44733e6d138e5b7d30de07ca2
MD5 6b42ef9db0ca16a8bda6391a84b6d592
BLAKE2b-256 9827ee9b1521ba9e3d5d80c896a53d2203e6aea8cb3351164db5a0752e941ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3f99df93f0ba73755c00574f09cf11c93c78283cee870293697afe4c32f44e63
MD5 ecc0d4c8bdb7cb0d409469906e30a668
BLAKE2b-256 c16e2d99b5c165f97540b7ada24bd4029c0a4635bb8d9d43aefbf3c6e3198ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d428f55310cce34e26887d6fbc2dbcd8b10e512ae3ddf8f8b605377eaeb8208a
MD5 6f36b71b7bbf125a23d6fadbe26ff733
BLAKE2b-256 203e32b519e6bf3d8c8a5e6d712da0082d5d72be751136225df82673015e0601

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da11d6473ea280eecbf8597d8fd41388188df504ee6900b98bf1200c3f0a9b7e
MD5 6837899eecb2ebc2d4fb7d7c49c92594
BLAKE2b-256 e7d01cd909bd760682805e85813e693a0265697f8c251c764be95b385f0b99ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d146ac3a47af812a248ecdd5886aaf0e072ee6e15ec6d25442094c349c9d0b8
MD5 de7dbc10857b57c49a842f815310f873
BLAKE2b-256 75633da013b8eb16baf292c4111f67e941224a5cd5330c094384044027fda15f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 371eb7f24c629b7d68b54de83c2a61235f010fc8b88dfcc0050c2402958b95e0
MD5 93f58a0f45439c4f6db50aafb36b8b44
BLAKE2b-256 556957ae4d14958423e5c6e06532001774479d037283f2783b6b9399e0856216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4d48c14126b17ff977a491e9338a3c1212d4278dda356a046a7e695ff856c8fc
MD5 54a60d62d24871afb80acffb778d30db
BLAKE2b-256 803590c2ea63748580e20e4a8a1ecec474c3c7ea5a33c62ef973faf0588cf0a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3eebf303a5315c3f017a7dfd05c32920519f5875ccf48312f6c7e24b520d5469
MD5 b9d1d3ea9c824b5f03ee0bfdc6d48476
BLAKE2b-256 423d9cda8491190e1e0d006e5c13098bea8c3b64031f9eae403df26e7ca1a461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f37047d12cdb6dbb436a2a80031e6c776e469e27aadeec1f1b680c295df38e5
MD5 e5303cffd4fdf7d51674c4c6324d18ed
BLAKE2b-256 878274814c3a11d70cbb5642fdafb6d02ecc7cd299298a66690be1ef752ae774

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32acc888c2ffc5b43812492f0a2c0d9989fed11198d9ea6d0d5eab0f3a30afd1
MD5 8e22d82338f81e939fcb599388bf9511
BLAKE2b-256 002ec4c8c905cbcce2f7f4ba25d0d1c453b16c303c82083adef0da3574c458ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 893047d8e1490d6ad290ab5521ec9b69f18d73963d389e53e168a8bf8e3d8e12
MD5 4ed6288b793498521fd5ca8480d968ed
BLAKE2b-256 a6a11b9ecf8b1dc069f7f9151e0928284a10efb80410197845fcf5bb3eb15b3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8c997cf990b16547439d79a9bc2fae9ab638fa6be86ab80e48ff0574de9ef43
MD5 e394c7c9aa6b7faa82e47c6450e10999
BLAKE2b-256 985cfa341bf95431108b442ca421f065e3df692c3024004c899c56eb97b1bf20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ab502b72b2f71e6ffe03841a40ccd12f8ab46c86cbc851cffff29deadba71f2a
MD5 c2fe40af03fe3b53848d5230c50266d5
BLAKE2b-256 528c21e17d38b444e4fa0931cd1a32f71efb395c73d79b0a6cc8cb053a816e0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b1b173bffc01d040831e403e35c44c6fb84d42be625f1a6feeea3f0a524c5cd4
MD5 c5569f2dd0174422ab20fa022da3180e
BLAKE2b-256 d7d384305583474999b5e43f92ce17afecae477d7c56ea271074a30b971e61f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 317cd11f455f04b62228d9d26ebb7db0b329b7f5620617a0780a736621113ffa
MD5 e4b76df612d0f6631320ee01b06f6716
BLAKE2b-256 b290425a074d1cc36b7881828f82cf6933c7c349b51716c6193a51f2c79c8095

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e780629af6f5f2b5e3cd72053ec7328798b9be51b0287974331e3215860effd
MD5 e16fc76532338367e34f146036350401
BLAKE2b-256 753b0bb44b17fcb130a5dad6ccbd4d83686956486d1acf485ad654c0a15e266d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff5005cc60ca4e2865d20f9e7891d52dfb3869288ce81372ef2bdafa08cc6df2
MD5 12d83660fd769690925cd019eadbc01f
BLAKE2b-256 f825937200919e47c15139131ab81811f1a2516bfef3cdc995c17e7c7a9532ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 779d54fda46c6476710e25cda4f307f9037edd63c3a5d6fa7eac96c3b6a3cf90
MD5 fea83dc585f543749b2bc82ffc8a90eb
BLAKE2b-256 2392b9c5c29491486decada612d5f777b4cb9c101337a07e266aba6b768113fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 de9dd01a635d5cc89bc16f4e0f546305c1e750bfd1cd5ea84d256bc0a14f9d15
MD5 3ad84df5f197aca04d1f734038e57c75
BLAKE2b-256 7619cb99ed9e64bd435e6efd022d077cea3da756a516b6206fee82e24cf4c2f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 015c55a8776914cdd1447800c1a263ded91f59bb2370f1d0a73800b5cf4f4ca2
MD5 ffa1a41379d36e993cf3abf62bf63b3c
BLAKE2b-256 05101cb988ca2a7b9f1af9375a3df32a283a71311d14bcefb79e724dd4e719e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f98b544f384462e43276157a02957b23046b1145a04d6efb492debb8895a245
MD5 2bd0524f0e1467ee9265f8ccd8124222
BLAKE2b-256 ba818e1ce6e87a338b7d99560d7e7b0bdd9bd6d3077630e1e610cbfe85663125

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8210410a5da8b3881dcf65f38c64fcd32ab2f05892c6c63ecc895d1d3cfc741b
MD5 03d37a4779c3fca0f4961f38490358f2
BLAKE2b-256 fac58c13d981fdd01b50a25d1e2bf28aa4ced532c74137da015e0356b16e0b0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f490246062d134c7ac076aa95d904c07ca8954e66bd6197e2690ebea1e4cfed
MD5 0ff421cee509f783336be8fc55ac33cb
BLAKE2b-256 105bf96f61c73f36021b920cc781780aa8e4262cc7e598e1a0ddd5fa1dd0a2e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f71e60dcdb71d06df5b0f53f43249566b0f67f69ceef8763809664df08552050
MD5 ab57ef68424258df20969d13f8bec319
BLAKE2b-256 1b24f0e9b65c992d66072d9bbb5c75596b454d5a7c671780dd3d492a2cd1ae48

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