Skip to main content

filters arbitrary paremeters before sending them off to be called

Reason this release was yanked:

Vulnerable. Leaks references in C version

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.0.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.0-cp314-cp314t-win_arm64.whl (41.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

reductable_params-0.2.0-cp314-cp314t-win_amd64.whl (48.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

reductable_params-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (285.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

reductable_params-0.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (286.7 kB view details)

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

reductable_params-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl (49.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

reductable_params-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (47.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

reductable_params-0.2.0-cp314-cp314-win_arm64.whl (38.5 kB view details)

Uploaded CPython 3.14Windows ARM64

reductable_params-0.2.0-cp314-cp314-win_amd64.whl (42.2 kB view details)

Uploaded CPython 3.14Windows x86-64

reductable_params-0.2.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (45.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

reductable_params-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl (44.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

reductable_params-0.2.0-cp313-cp313-win_arm64.whl (37.6 kB view details)

Uploaded CPython 3.13Windows ARM64

reductable_params-0.2.0-cp313-cp313-win_amd64.whl (41.3 kB view details)

Uploaded CPython 3.13Windows x86-64

reductable_params-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (220.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

reductable_params-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (219.2 kB view details)

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

reductable_params-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (44.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

reductable_params-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (44.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

reductable_params-0.2.0-cp312-cp312-win_arm64.whl (38.0 kB view details)

Uploaded CPython 3.12Windows ARM64

reductable_params-0.2.0-cp312-cp312-win_amd64.whl (41.7 kB view details)

Uploaded CPython 3.12Windows x86-64

reductable_params-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (233.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reductable_params-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (232.2 kB view details)

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

reductable_params-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (45.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reductable_params-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

reductable_params-0.2.0-cp311-cp311-win_arm64.whl (38.1 kB view details)

Uploaded CPython 3.11Windows ARM64

reductable_params-0.2.0-cp311-cp311-win_amd64.whl (41.4 kB view details)

Uploaded CPython 3.11Windows x86-64

reductable_params-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (219.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reductable_params-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (217.0 kB view details)

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

reductable_params-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (45.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reductable_params-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (44.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

reductable_params-0.2.0-cp310-cp310-win_arm64.whl (38.3 kB view details)

Uploaded CPython 3.10Windows ARM64

reductable_params-0.2.0-cp310-cp310-win_amd64.whl (41.4 kB view details)

Uploaded CPython 3.10Windows x86-64

reductable_params-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (204.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reductable_params-0.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (203.7 kB view details)

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

reductable_params-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (45.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reductable_params-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (44.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

reductable_params-0.2.0-cp39-cp39-win_arm64.whl (38.5 kB view details)

Uploaded CPython 3.9Windows ARM64

reductable_params-0.2.0-cp39-cp39-win_amd64.whl (41.8 kB view details)

Uploaded CPython 3.9Windows x86-64

reductable_params-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (204.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

reductable_params-0.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (204.1 kB view details)

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

reductable_params-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (45.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

reductable_params-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: reductable_params-0.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 536788fc4146b70a47f7b1af4d08e9107c0c091289f3e8ea122de1b583d57bc4
MD5 21fff2ea42dbaeca884e7a62e554d33c
BLAKE2b-256 47739f964974a110ff94dabfccaab85ae76901003b022c1ca690f1ead2287252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e5d1cb65c15e05928d385ee012f840316289313a549dd41d53416aedfde8af73
MD5 7e2952bf84a811ba67ba8fbe78094614
BLAKE2b-256 b6f2101d466414f96ebad8e034e13991366be5de80bd5c681da5705fdd91ecb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f72b05b16ab8177235f4742a5825404def09e63fc470820e65aa67ea2eaeadbd
MD5 914b4c57634e9b00781e88fc0483a45c
BLAKE2b-256 e8c523e7d39b4a8c828aefbda7490c6d58dbdfa0b92d8a337bbc2f46d3ac0135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a3d52ce0c796c6c4527a33cab63704c2ef6ef84cf277f7bf2a2c8ddf9af206e
MD5 a3bee33f669084cddcea649419872d41
BLAKE2b-256 21262c7e2f83f984409de12d02e082f9d43835a17f0cd9c98a221fa1511f5e19

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ab2c7f127997cc6667ac5e061c65c743c48094d41d0d73252ccae7edceac1c1
MD5 86f5a15867195e52c4b3e3fbe9496598
BLAKE2b-256 a7de1c356a8deed192b4cfc20e86e50e169a2c3071fafc765435acea474f8224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adffddea306aee289b31f6e6bd9316734a9f4839420c87fb9047cc5782cb2d1c
MD5 2afb27ffd87d8f62a400a7ea73ee6201
BLAKE2b-256 7bccf995b6b3c72c227ce4f64984f4631cc79412ddc328f63158d89dc8864866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 35fbcd7c8c6dcb0c5baa1ed22c520c893b8642ad6a0a0d97f3b8969f3dc5bdb4
MD5 0742df66e9fbe25d14ccddb165d9f6b8
BLAKE2b-256 6e0bc5c2c34edfdbbeec5b500d49aed59f2fe3537be3a9f4d4d264c7a9c5dc34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ad1d040deea81e49682243d5c4675f4ea97fc330886e124eeb0ecdd024c421f0
MD5 d20a87aada7fec4a621cf967fdfb1f4d
BLAKE2b-256 d276e59b9bad2c9f03dcc9cf0e92847585ab7af7a1a5014c9ec0fa339d5b27e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 52cdf86b293fd1cb43a5fde5769efe88edd9a7d8ad5d466863476e0cfbf137da
MD5 7831071ea7f30804067a0148fda05b89
BLAKE2b-256 a174704de07a26e3dd7e687eae789aa59d589b5e310151d0488984b9ad09b30d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77ce71d4cbc7c3bc4ef2cad2c1c6812d5f47419765e404cd088c84e952df5a6e
MD5 c5abaa263556fa16d439b24b1b6d7d59
BLAKE2b-256 3039b510770224829b1260ae33adf0468accb9ba6e3ff8a524abcbaf303f1057

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de68d8d84da2d172f916e4c2df1ea35847d15d4173235deabaa1b09efaf58bb6
MD5 58ba727f75cab736046a7135632d2b7f
BLAKE2b-256 622edb3466e15c931e320ac540f6793072154df278cbd6d14fcae868f9e3235c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c73c5882446a46462a66075ef358ba685e9d8d4656d849818ec89905876d7377
MD5 baa421885eaa82ad9a2fa0bd0d9fdbbc
BLAKE2b-256 19c26239fbc5382ef56907a9aec2555b2e056039b2ff53142879dc82441e386b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0626b2dd89ad05db0135e92286b521d077f9fe8e0ea1406535605e1650c3583d
MD5 3b6b47dce928a63315414a625058e55d
BLAKE2b-256 c0d8f68fee5a9f23144b90349a248f44f9ec3c57889ed57e993d94d47693be14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 03ff7745ad783cfe65989c47a06f8a30383aedd5016b0dfd374d774c16fb8fc0
MD5 ecaa63bfbe5915943729576105080f28
BLAKE2b-256 1a71f213abfa6d0368ef89f2f83c3f2111136adb403825b3ca90dd077dab4d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ba92728cac33d8aaad4df2f5a91541b3a61d6b3273c575fad7bb20707e5309a5
MD5 5527a17941e32508e35e3f64d2619c0c
BLAKE2b-256 3d4a85ea2fd72779e77f9411d5d2457087ffb2ce326ff3a24cc0162e2f3956f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e75d8616d8cc394f81a76d9b4a292a9a233b4498240225c908ef3521f4be6924
MD5 228b1fa17eb20402ecfa378910b192f8
BLAKE2b-256 0e50cef1db64edbda66f14952f93207fbbfc22819c128538fd589e20fa9388cb

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 843f2074e2bf7894004955f9641276cf04c8c7ff6ad9867f4a8f32f39c4a463c
MD5 925bcd830669bf8ac8ebae04cb51389d
BLAKE2b-256 d1d4ad96ea381862b98aca6598af80b7e2371c6da3834a2fa70e41abbf3ec398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 750f12f3018143dffb969f0d84a62d7b6ad86e56d4998cdf6eda9fdfa145e9ac
MD5 e40e69e828dea25a5c5031549c397eb1
BLAKE2b-256 e701e2f7bdfd9b72e51e37275c9d51fb82463c48945071ded2627cc7737abad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2c5be325b384c5ccca187829a937c15d0ba67c35c4ec850db384202038325989
MD5 ad600770a360dc2c2198a0347245c761
BLAKE2b-256 bd5d3efd2f0d7022f41a0a04adfaa3cb7b5c4249c8baad60647a34b28e492184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 09067239e957356c319fc5c41db3d7f39370ef766a18d295deeaf7d25f973cb4
MD5 0d3d509941706c1f3fde253a2ee1b9a6
BLAKE2b-256 9a167652057bc8803c4c603cdf03ef78915e66d9cb208190a35afcc6939a0c15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b2dc045b87fa9ec280e3aa3822b31c6e8ca257cea3325a572ae131c66ece2e3f
MD5 4256fe78b0bc6e688b88584eec422cea
BLAKE2b-256 ddae7bb6566a8ef380d56d8dc1eb5f2db9c9e9a8f040ef8ea66579842f9298ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1eea582aba5483daa692c258f1474b22e22da5b610ad8f2070279c965389dde4
MD5 0a4adc8c8b5c5955a5412d57d7d7570d
BLAKE2b-256 aade424d3da544dba2bb20bff157ec0dfe118c588b0d8ff9820900d2fef06832

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 983fc3d0e3bb234756a049e1ad11195864412da7d0471bd0a2099592c3ddaa00
MD5 5e1e26bfb4836f64ca49f84d73aa3e9b
BLAKE2b-256 c37df1a9ef560a1cf193b0e4b56f7b758307e3c66e14fcb88d1bf28fcee3a170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73e993917aff048b246c3a386894754ee6353e75f36e27e5a69f51493703e175
MD5 3797f189fd319fddeec8b964adb46c17
BLAKE2b-256 72b6918da06053be3bd47bc1c82eb8d526a317550a8ffb2a754d561a62381716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f3f23f56989e8202ef606e5798197b96674f1fa9fe56bf14be27621f2b3a58ef
MD5 b14d8926a44ea0712a4b926402f3f75a
BLAKE2b-256 05c7e34d686e159da84df6d9ce87dbc0f0850abb89bde5d0dbead21f4990a1f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3beeeb2ab6aa3123add214cacc243df3c5c806d87acc415ae86ef9e0d06b1760
MD5 1f170975e905a52ba96f35b724189c48
BLAKE2b-256 c24ade3ec39f7b3c8746519e5bc4f47cb3c36406b0ac778be844016a3e732bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6c7c473d8cb40b48943dc766203b51bc4d0ef541e438d1eb379ae32a584c8958
MD5 7b287fd374303163567c750312286a31
BLAKE2b-256 92d10143336f99a869a82661b5e692f9ab42e7b8bc1743e6920f4fe2028451c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd7e007b1f919357d0512287fd09880c0b527da6011fe7f08cecba6b5498160a
MD5 79d04f74143e62a47ba83f6a5459b82d
BLAKE2b-256 3008dc77957e67f3ea17ba4d2ecd7de5833e77d55e80f7bd8b178b1067d9e867

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d238decd15cf65d0cfa0643753be5582d4fe6a36f7130aac8ce67750cd9ae1f4
MD5 b8e5ab5a4b1b3281095483d8640f9ab4
BLAKE2b-256 b5a6916e299d81a32f14a500111a24024fc7ad8c15ae57961ea08d93ef37815b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce9923042975c08c637e6e2c0970725f458a4d6ae4918448d4290fd5bf77785d
MD5 eb43f2d84c293050132c7d516d391ed9
BLAKE2b-256 5bcfb4792575cd6e6ce2b4811f7d259db88614cfe62e22eba7b5b8b1e18f577d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40fe4451abf82c4fb18a25a844e5429e475ec00b3a851e34c4dce8a3d4eee81f
MD5 aa1db9bfb1405b96306d5cc8de0863b3
BLAKE2b-256 06d52558f85f1dc06a85f012cd63abb3766eeb1033f26ec53ecb2bcb0fca7b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e7fc0907b271ef40d1d41e5a5b6002a0874317a11edd861663eb39505d17f1a7
MD5 bdacb7dcc87138b9c898ccdc850a817a
BLAKE2b-256 be844c8534259d0d020330ba6dcdb2fda5f35bf5eb5c6cfa3cbbef3a5db15b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ad61724a4c2bb2a56fe1444b19e80ccd29f325729a5c06b7715f449f2e30a164
MD5 855727a2836dbbc8fac83aaf182aed8d
BLAKE2b-256 0f9fbfcec34fbe3bbddb7213b5a8ee5ed2ba88ccdb93d1b37568581b91ecc89c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a210bc4c5b7e2adfe7d947828c4d6c03c209a4a5d70f38c37f68dbd1edd3c997
MD5 cc14c6533773d6912b95995f164755c7
BLAKE2b-256 9cc2d3eced5b9c6a7c426e42fee553f6dabbb498615477d1c7deef79112ee0dc

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a240911ec5fd8346edeaaf25376f3d5481aa7e5155fe7813e5c0320549c9138d
MD5 cf82cfbb37bb29937f5f5faa3942e47c
BLAKE2b-256 e31b57a103ff7c762622eb3fbca60bd8b11a49c9de27c1078d2d6ac02265848e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 531f6861237c7045d8d25c3b24ea001e0b5c4a3b291b022bb3ac4654c70f7aa1
MD5 9e16e57009a5ffb11ca22eaac4071a5a
BLAKE2b-256 ffef135c48ad79420d804ff6202e17138b0281f384140731dfd665b919b34c25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27911cb0d8c5cae0c00f077dcd8e11e7fc9c5ad452e67331963bae3d76d6737e
MD5 ab8d41a53ab158e16786e0c75375816b
BLAKE2b-256 78f9e1ba7eeeebdc2f74bb55644506e634882040d5c3aaf93666042e066bc86e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 63dff641fd10cd1f54b4a69a80c817f36965f36b8e116f84c2e3452aa8c2ae6b
MD5 d40083ceeca49dfa911d03cf17c298b3
BLAKE2b-256 54d6074826929c1cf5449900fa1ea4f94010f4efc072775c7ebf268d186a9acc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 22631ea9e88181a444ddfa9cd26cdf4bfab530a22dbbaa32914821c6ac200ca7
MD5 92b8a126b468ad10fe51ac6e6795c076
BLAKE2b-256 bc8d41132da1639731f1a97fa8b94e7eb5442d6189919b8c4913efebe8e074b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 317ed386d6620bd76b5e03b30296589eeac3fdb77186ff15a8719b3ea9111b8a
MD5 b0ad2c5da0dddbd8806e7375278bc7c3
BLAKE2b-256 2e47c46e91d7ed31e1967acd590e9747a811d88f68fdc2c378f398cc5431cb8e

See more details on using hashes here.

File details

Details for the file reductable_params-0.2.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed63c4b739fc003450c44adb3c39589c2a267cbced5e128113f0fd53dd79a933
MD5 d5534efb9674509801f32a44e7494793
BLAKE2b-256 eb47aa2f4fcd888db129053d2c61ec87327217a22e6aee4c4a19e916f03adbc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f26b634a83a947995e4d4acf9df5e44811d9bf4c23ba482c791371d9607afd2f
MD5 be18e8efa607b29328333ccc1ad50ab2
BLAKE2b-256 3b65f263b717f7abe89aa27fe9d010c9fd2523be76c8bfd7a3abb86bbc2f074c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reductable_params-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf2aa4e58e741b7433a5bec48fe9851aabca107b592de8be867fd2b2d7636c69
MD5 e812631d888ffa78c8b60c519d4b5500
BLAKE2b-256 f93e4fccaf7d859f0e53cb1c43ef62e18968809492f3614b6fa5dde99144d8d1

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