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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file reductable_params-0.1.0.tar.gz.
File metadata
- Download URL: reductable_params-0.1.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a38f92722e6d97e46b6bd1b05ab2c2b682cdf2c05bafdcd187554e1460e821c
|
|
| MD5 |
4fe636a66e7f3fe7bc54156292429a1e
|
|
| BLAKE2b-256 |
b49d4c9a0eb5e94e80300655a121ac24c33e94d87b4ab60c45f8fee799bd1157
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 41.5 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e126a6d1d5a1ce75303592ecdf0c8ad08e83e5acc54db741141936e6ae1f6f9
|
|
| MD5 |
d0ff35ea12457c27171d315610e702db
|
|
| BLAKE2b-256 |
e762b2b64312e0dce7c12ecbc7bfed2ee4b854440e2f26d12f4896cb8868bca7
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 48.9 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d559227380d01d9c65710df8dafbc7d3baffa543643d0735cfc0683c7a153f2
|
|
| MD5 |
ee39dcb012812d217580f9fcbcfe1da6
|
|
| BLAKE2b-256 |
4b6a2c918389a4c5cb90d611e2776eb345cca04c2a56613351dca88608ffc036
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 291.9 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
765b3c8247418cd2f0da539eb6c5dfe6de37597a534ccc51431b1f796c19deff
|
|
| MD5 |
185a31974f38842a31bf6b76c5922b7d
|
|
| BLAKE2b-256 |
5780d9834d0d410094197b5c65ae8c6a4f02fdc84d587600e3275f9323709f71
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 293.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd33b5f8d12d9c6053e3ac2ccb28c96a10019e61abee4bc9194a92c28521f9d3
|
|
| MD5 |
9b0fe8f965cac40857bc2091790b3b28
|
|
| BLAKE2b-256 |
e15467e19adec6b0ae322e974233b1671650ee92841b54dc4ded8bbe622dc476
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 49.4 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e5951356800744a8fc6a03edaec01f0d8527e6e0dfc7150226c9e3df5efadff
|
|
| MD5 |
a26868015b5ee314e9a4cc993a8da75b
|
|
| BLAKE2b-256 |
6d3d1951e6769194d0f2e7a8ebfb1758d8278b3449d2f3a6a73bbb6e7f4511b1
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 47.5 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f6d50c56395580fa0955a3f0468a25c6593858b3b22363c980e3ceb2cf58741
|
|
| MD5 |
556eb1f2fe7f670519e794011ef96f6f
|
|
| BLAKE2b-256 |
531d6dc834b80c6493641bf5ea6512e42056243de3ee89c4b4804b51a92d1382
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 38.8 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5ef108b36f0171cd1eeb8e296281f754caeacb8281dfced9f74059bdf68c315
|
|
| MD5 |
1e3df6abf3c2e8c5012ef74f7be3c8a4
|
|
| BLAKE2b-256 |
67b238b9aa87826aaa6baeb493fcb0e6214f50993f6ea9425b553dc078ba792d
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 42.6 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fb956021d273965f20507dea82a82913260a2646b6fcc5400bf63366dca2f30
|
|
| MD5 |
ee0a078219132bf0ead0c1a79fcb8ae1
|
|
| BLAKE2b-256 |
608c3cb508362e1087642b8fc87d6d410ed944bf7b1165521f37f3f12c45dc23
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 222.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e1a79e77550d53d3600e0b44a5303af8890582e70500f06bc376dd179012a74
|
|
| MD5 |
79aecaebf9d7a504802077edc7acd6eb
|
|
| BLAKE2b-256 |
81e5db292280aed5d462ac8eb180bc5cc65d90f1ab01a6aa783977f1b851e14e
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 220.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2af87e32d3c30ec93370bcf5e8c53a6ef36a2fe4c68a9818671290d3db53139
|
|
| MD5 |
8f5de211c2dbd884b29b821e7128dc79
|
|
| BLAKE2b-256 |
6c34b433078004d9431815ec10102c0187593f36e762b47b3e2b882c01e1e900
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 45.8 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
904dd8a0d407bcf60c6965cef1d6ef6c909d601531bf82e04caea6d9bf0379b1
|
|
| MD5 |
6e38c868c79303a73713f03732f8d987
|
|
| BLAKE2b-256 |
1ea7b0e9b85fbe0bfb74f91ec7b827e25a27453653c9b572cd1f2cedeb2be19d
|
File details
Details for the file reductable_params-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 44.8 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7a9d43acc3d973a775272552363523431ebec189c686861c4db3e081f17276a
|
|
| MD5 |
915fcdfdb7cc39945d101acbb7a0cb94
|
|
| BLAKE2b-256 |
d27f8fbffda74dd9667a7dc622eae9bfa29f893a0966b5e6db5a9f143877f914
|
File details
Details for the file reductable_params-0.1.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 37.9 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
478bcd5c8398c358971504a0b3c6f30cc91e813b222f8609f042bf2354b3fb88
|
|
| MD5 |
938546dc833fa396822681295c0c037c
|
|
| BLAKE2b-256 |
e5697fa46c52f95865f7e165a0437e52079d9c2b96541b627af5055e0387acab
|
File details
Details for the file reductable_params-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 41.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
716f0efd6baa39a2d53eb9217772236452560ab0c0090454f6c3423776507dac
|
|
| MD5 |
fc80dc509fd2887e7cd31c82e4e57ffa
|
|
| BLAKE2b-256 |
45f90fef7ad173c57d0c153ebdfa6dbb3a8251e6a0a0b6f2676dc3dc1a3dcbd9
|
File details
Details for the file reductable_params-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 224.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03a6cd1cf12bfe92392fcc69f737d45c7a214dc581833ffe978e34ff44acd67e
|
|
| MD5 |
e7f3365ee621ae15b8c522a3b0a2452b
|
|
| BLAKE2b-256 |
003bac317321345034c075f2aa2b8ac8b21bec7ef036caf78029542b0a183e3f
|
File details
Details for the file reductable_params-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 223.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bcca69dea70c32e3e6910ac04af5fc3840ba552460f506441f81dfeb4a14fab
|
|
| MD5 |
63659e63f4d10eab52b61316fcfbee48
|
|
| BLAKE2b-256 |
a300dd8368dbfb4999b317fa4ee74ec5c9cf94b09691ce791ddc093bdd8639ef
|
File details
Details for the file reductable_params-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 45.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
550ea18d31353104b461e4fcd6acb602fc526c05f489d9b4b4f3f4fc214d8e3a
|
|
| MD5 |
5d32005bf042a2ee790cbe176301d80e
|
|
| BLAKE2b-256 |
0fa0e921ab5c2af1e590d65a88b69a0079da22c267d8105a066df853708e7673
|
File details
Details for the file reductable_params-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 44.7 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16e1917bd4fc56ba51f8e9c0a77258351fe446185deb46421051cd0b3f925d53
|
|
| MD5 |
a9c0ead4837c21029dadf0a4c2bb49f6
|
|
| BLAKE2b-256 |
c718dd483b7eb7dd98bcbdc019907471d03b1fcf5c77766c1f156133b793ef88
|
File details
Details for the file reductable_params-0.1.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 38.4 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40b67819f6cf3d8b5f1399ef8d176598ab0a27ee5b8caf3a0cae26f3411001d1
|
|
| MD5 |
fffbed22157d7fd758a94988b2218edc
|
|
| BLAKE2b-256 |
9cc2d61cddf3d636d8edcae45cf14199eb207735fad88645097ad42efd9b415b
|
File details
Details for the file reductable_params-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 42.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0737eadd09f18a965c0c666613a2ce08e963809a29db0fa30baf3ebaf00548ca
|
|
| MD5 |
02927ca139fce1d5a180e1921346ad30
|
|
| BLAKE2b-256 |
bd1fafdccdc30527b0f21e15552407f2cc3cf6d7a435e0122ad713c7492fec7c
|
File details
Details for the file reductable_params-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 238.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18f0d4bc6a4b1b04589035c2f3a4d147e4d6c0ba6b3a967d7be2dbed67bbebe9
|
|
| MD5 |
d244008a61c534423f5f594076206a40
|
|
| BLAKE2b-256 |
5acbb7fd9076c3a88a4606228c0dccfb9050b24c6d233c9e28550a4c8c98bca2
|
File details
Details for the file reductable_params-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 236.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b53c8628dd3587ce29d2093baebe041f0fea4a10289cfea7b4f2db3684542971
|
|
| MD5 |
568c72160dccfb8bd172db2e185589e1
|
|
| BLAKE2b-256 |
701256455ad5fb41c7680e2c2f73978a254110d8da7f033214a917a7b89092aa
|
File details
Details for the file reductable_params-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 46.0 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c7645157e960540b17a3ed18eb64035ed112c0f67c7a8960ca0f89760bbdd05
|
|
| MD5 |
35bf2da6b3f2983ef302056b584bcacb
|
|
| BLAKE2b-256 |
38f8fc97e91df145424aa46f39ac155a7736b5e0b5ce2a798f577a0117305b60
|
File details
Details for the file reductable_params-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 45.4 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
765e14f29ddc818c60dbbf58dd74aadbbb703e03582fd2a7fb1f1fb5a0100453
|
|
| MD5 |
16027d82e1c4e36cf1484609c62269aa
|
|
| BLAKE2b-256 |
e1188140546629779dd2cda4e55e58566c2ae9f879454c9064cb81729357cced
|
File details
Details for the file reductable_params-0.1.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 38.5 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9900a797a2d4509e71f362a77d6835d6edf85e979dd68287c5b1466df17ecadb
|
|
| MD5 |
23ea2fb48114e06f3d85fdc1e470b7c5
|
|
| BLAKE2b-256 |
d35cd38bcce1167c5a30f706aeca1d5fe6d4d0bb8ee61fbb1884bdac4795551b
|
File details
Details for the file reductable_params-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 41.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
922c939a78b7e3e736f1f60a14860d91a5baa3aa8804a035a06f7a16ae49905e
|
|
| MD5 |
161ba191e411aa92e20caeea1839c1f2
|
|
| BLAKE2b-256 |
f951e73f73033be83a89f85266d5aba3162f786a33184566660d21d38dd80a42
|
File details
Details for the file reductable_params-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 223.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32c83e2e249927403960d097b8681865eab0d3ccb2cbab8e777533d05d1616a9
|
|
| MD5 |
3616104196aa33c820cfb37284fea1fe
|
|
| BLAKE2b-256 |
12b40f6515d04be0dda5de9662894706adf758e5f565bcc5def2ee8199d3c2e9
|
File details
Details for the file reductable_params-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 220.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2917db3df9c67b59fd088779c85bf555f266411642d6c9d3234446c2a44c427d
|
|
| MD5 |
a0639d45a0327b24b065b694f0109b9a
|
|
| BLAKE2b-256 |
f94ac459699b1a3fc544ab68283954ff7a9096107a7ce39c896dcdbe97d8a838
|
File details
Details for the file reductable_params-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 45.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1045891760942a54be36b4c338a5673adecf73b23ed61f8305b6383f40557d61
|
|
| MD5 |
c11411d079d8b1e6bbb396d031baf885
|
|
| BLAKE2b-256 |
937ca76dfe3706e125d28ef077910be761bd6f84b5300aefaa9bd17de6ff5db0
|
File details
Details for the file reductable_params-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 44.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55fc00be4b568f3931e31ac23902e9e2e11de1faa1dd2ac36e6042382dd3e044
|
|
| MD5 |
003ea65a9765c4fb4428c534de2a9f60
|
|
| BLAKE2b-256 |
18fea23c0b96e10fa75dbcc5417bef0141f072897f1521735aae635641b6cda0
|
File details
Details for the file reductable_params-0.1.0-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 38.7 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
648bb5b23b3760e9c50328677b021604a682118ab9c2afb3bf86bc8b999e1c5e
|
|
| MD5 |
dc336d1376e7f672390a81c004c27a16
|
|
| BLAKE2b-256 |
bbcb934e70b8bf4fa740189ade5a13c84d1efb38e6f8ec4ae9ff92f98ffd5c15
|
File details
Details for the file reductable_params-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 41.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42551437646177dc3bf0356a6d9374102b099770c51effa53043f8f49b2f6bbc
|
|
| MD5 |
22ec66a2ab459b85841dc1ccc2eedbe2
|
|
| BLAKE2b-256 |
73443786b096767185894c7765db7d3c9b21ccea181baf55966f39fafa6a14d4
|
File details
Details for the file reductable_params-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 208.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
284e75ebba19cd9cd56f1897a5ba1c3461a28e069c393627cbab417ebc8f456e
|
|
| MD5 |
eb7c3f4506fb6bbc9befd92e53563f4a
|
|
| BLAKE2b-256 |
0894f9f3d302e277ddc314f737e075ac7acc7eafcef2891db08003cc8e435ed7
|
File details
Details for the file reductable_params-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 207.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ba3dc22f8feecce79f8b033915ba3b25e4f3e1750473518b2de748b4fc27657
|
|
| MD5 |
819a0254b8c0747370bc21954ddd7bfc
|
|
| BLAKE2b-256 |
7bf5108cc29d97926d80bcda5fc96469dcbf692504bc0a0a6dad050f5467dd93
|
File details
Details for the file reductable_params-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 45.6 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12477628776a5ae4ada242752cb02fd8e42eec1accdd77decf7257cfe678badd
|
|
| MD5 |
4c33d34110adda9c3b9af5ece2867a0a
|
|
| BLAKE2b-256 |
f275fecc823d943adba966fc66a3aa34de61178b28a01d8df0d0f356e8665931
|
File details
Details for the file reductable_params-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 44.7 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
503ce3e94590e3dc146de46592989fccf52fd23dbe7bfb7eb9b4b166470b3083
|
|
| MD5 |
42f14b526688218dff2845cfc246d31c
|
|
| BLAKE2b-256 |
16514040c1968d4be9eca4e77c2202ca50ae03f4d4c2c0058b3ce813da2c4c15
|
File details
Details for the file reductable_params-0.1.0-cp39-cp39-win_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 39.0 kB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
682ae8fc9e92f55c5dbdac72232c3ea3b6b3746672ba663de37a42638d8156ec
|
|
| MD5 |
1870dd83be4eaae079a39bb4f36f4aaf
|
|
| BLAKE2b-256 |
fdd137f6af5331f99eefabbe54d292d022ff7aa4999d1260faf88dc79cfd5e98
|
File details
Details for the file reductable_params-0.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 42.3 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
648e5181bd7ee8957cfb7812a58d13e09263764470198aef1c8153daa952d2e9
|
|
| MD5 |
0b7eb7c03c7f31d10ee52fbc06359eba
|
|
| BLAKE2b-256 |
3a1f7c9194550518e6a64086f8ff39d40f70240fe866cbdc76f66df355a370d6
|
File details
Details for the file reductable_params-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 208.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce4de7a5f2f6d57d81d1293735412870383fee9ef321ced597516209193235e4
|
|
| MD5 |
15e66e5c4deb39f79b18e085a1288f08
|
|
| BLAKE2b-256 |
b58e4177dc828fa2a6cc4f004e04dd428f9574e7b475c4903e80d9f639beabca
|
File details
Details for the file reductable_params-0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 207.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e997c9d35497b8d7ddebea722dc7c75a1572adb51e639ea65938c06af3ceb5a5
|
|
| MD5 |
7379f43138e673a86ca425e62492f3cc
|
|
| BLAKE2b-256 |
eeb2b57dea9b4c7c90d1cd3fd722e50385d1e81f775beffe81aed1f14b4436e7
|
File details
Details for the file reductable_params-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 46.3 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e076b9db1a72a28ac8ee288282d08dc1604e8d4d766dafb3bbe06d195de8d1a
|
|
| MD5 |
8d57844f5b5f4ff4ecf06834490dcc6e
|
|
| BLAKE2b-256 |
6047be185db4c1fb66e3da3af9f8022fdf5227d8555a1bb544881531ef12c465
|
File details
Details for the file reductable_params-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: reductable_params-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 45.3 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e00ffd0b06e5d11d37d4a35fa2a09e3f19566c08bc1d64b410bd84e30f942c4b
|
|
| MD5 |
cdaf5cd357976805fb97341ef63b43aa
|
|
| BLAKE2b-256 |
0a3bdfd8ab4e6261fa9a843051900edcc3167d1061009c0f6f123c5e849abc18
|