Skip to main content

filters arbitrary paremeters before sending them off to be called

Project description

reductable-params

PyPI version PyPI - Downloads License: MIT IDIM NO AI

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

from reductable_params import reduce


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

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

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

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

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

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


if __name__ == "__main__":
    main()

Benchmarks

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

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

Project details


Download files

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

Source Distribution

reductable_params-1.0.3.tar.gz (11.5 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-1.0.3-cp314-cp314t-win_arm64.whl (40.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

reductable_params-1.0.3-cp314-cp314t-win_amd64.whl (42.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

reductable_params-1.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

reductable_params-1.0.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (48.9 kB view details)

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

reductable_params-1.0.3-cp314-cp314t-macosx_11_0_arm64.whl (39.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

reductable_params-1.0.3-cp314-cp314t-macosx_10_15_x86_64.whl (38.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

reductable_params-1.0.3-cp314-cp314-win_arm64.whl (40.2 kB view details)

Uploaded CPython 3.14Windows ARM64

reductable_params-1.0.3-cp314-cp314-win_amd64.whl (41.7 kB view details)

Uploaded CPython 3.14Windows x86-64

reductable_params-1.0.3-cp314-cp314-musllinux_1_2_x86_64.whl (39.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

reductable_params-1.0.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (40.1 kB view details)

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

reductable_params-1.0.3-cp314-cp314-macosx_11_0_arm64.whl (38.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

reductable_params-1.0.3-cp314-cp314-macosx_10_15_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

reductable_params-1.0.3-cp313-cp313-win_arm64.whl (41.1 kB view details)

Uploaded CPython 3.13Windows ARM64

reductable_params-1.0.3-cp313-cp313-win_amd64.whl (42.5 kB view details)

Uploaded CPython 3.13Windows x86-64

reductable_params-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (41.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

reductable_params-1.0.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.0 kB view details)

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

reductable_params-1.0.3-cp313-cp313-macosx_11_0_arm64.whl (39.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

reductable_params-1.0.3-cp313-cp313-macosx_10_13_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

reductable_params-1.0.3-cp312-cp312-win_arm64.whl (41.0 kB view details)

Uploaded CPython 3.12Windows ARM64

reductable_params-1.0.3-cp312-cp312-win_amd64.whl (42.4 kB view details)

Uploaded CPython 3.12Windows x86-64

reductable_params-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (41.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reductable_params-1.0.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (41.8 kB view details)

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

reductable_params-1.0.3-cp312-cp312-macosx_11_0_arm64.whl (38.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reductable_params-1.0.3-cp312-cp312-macosx_10_13_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

reductable_params-1.0.3-cp311-cp311-win_arm64.whl (40.9 kB view details)

Uploaded CPython 3.11Windows ARM64

reductable_params-1.0.3-cp311-cp311-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.11Windows x86-64

reductable_params-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (38.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reductable_params-1.0.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (38.2 kB view details)

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

reductable_params-1.0.3-cp311-cp311-macosx_11_0_arm64.whl (38.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reductable_params-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

reductable_params-1.0.3-cp310-cp310-win_arm64.whl (41.1 kB view details)

Uploaded CPython 3.10Windows ARM64

reductable_params-1.0.3-cp310-cp310-win_amd64.whl (42.4 kB view details)

Uploaded CPython 3.10Windows x86-64

reductable_params-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl (39.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reductable_params-1.0.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (40.0 kB view details)

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

reductable_params-1.0.3-cp310-cp310-macosx_11_0_arm64.whl (39.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reductable_params-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl (38.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: reductable_params-1.0.3.tar.gz
  • Upload date:
  • Size: 11.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for reductable_params-1.0.3.tar.gz
Algorithm Hash digest
SHA256 1caf28a04ce93c93c263e9bfbf6e09ea2fa089b8cefcf938bf2208e088ce2c76
MD5 62b11ca11fd534f53ab61ab49b6338dc
BLAKE2b-256 8d58005fa88819204ba2698266f685b3a24e189bd87f9aac7304dc858e2c5ff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3.tar.gz:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5110ad5af7166c4eb357c6ce733578a1b2b9ac15ca77b80ef9774a11a81a03a4
MD5 273fd1980ff270d7b89d44f53d803cd1
BLAKE2b-256 69550a8cfc16e49a7fc5e1824f1490a3f4b810cd8db3fa78a14004c9f2aa2594

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314t-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7db8de93a396689451dfcd1513bdf18e11aa7c2693e243a17e3c8f0753479f43
MD5 9759889300584309484546a57ebb67f6
BLAKE2b-256 2f52f9a4e15107cffceaf75b5f7a797ba79c7912f758a779fe635b591379796d

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314t-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02fe1c1800b74bf33792d607b375cd85297c6d2e722fd9da9050fbd6f0730b86
MD5 9c5fb16fa551286cb80e22b2011d051e
BLAKE2b-256 3ee5f7c3a5ac99ae1d53c1d98fddce4b87d564d1671cace6fcf5e78d8f0d7746

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reductable_params-1.0.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 903531432b981d37dbe0671718313b47747e239e9bd501c20b58a2e95d2fe5a1
MD5 be4020a0fda52426d4a1bc72958bfae3
BLAKE2b-256 0e0a33ebcdffe0ba1fbf6584e9be79ff15ddb493939edca26eb7626e7421b89c

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5428231fdc3225b9f42d6e5beb82f476daa97d8ec6193571c861a74e975cc490
MD5 4e0f4fc42cfb236e15e38df59e81c08d
BLAKE2b-256 aa015bc1b9f544309af8cb42c6617c520334210da0c04a64283efd75762b33eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4fbac0e9d986d61fa6b5af7042cd98cda0ec94b5ec7a39c962ef4c9d6cdc3862
MD5 47d34501a8cbaefef4424012bc85d359
BLAKE2b-256 adf66466ab12ce0a0d6848712d9c08c81253b5579aebf4e45a898d5672042ff2

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ae2c529d0e6056e5afa41e18f4d3f2805745a0b957fc5aeb764860ce0c033513
MD5 cd6ae3e34e37d2adf1b488e9c34551ef
BLAKE2b-256 1ea46bc55c5ec3ae5d92c707095fa3055d318ade9c3c5e54dc4bae6aceb857a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a957514d04251947cc66549b4b78efc162022a613217dc355d1524e901ab15c4
MD5 a89c49d21f77cfb820bd689bdd2c644a
BLAKE2b-256 47bd52e874679039ebd805d8f636a1056e6262dd53b3ece6d7bf6033197f74a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c22ab93947584f578e65fb2a3eb9bd84eb1dfae300084bbc3a226167fac176f8
MD5 3dfbf6e2b43647b982e5d926d0b2b643
BLAKE2b-256 3c7294836b44a4683e99eb16f59a9c22612965da23c7b740787cae90d05f29df

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reductable_params-1.0.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 82e6eb179bcec3a2dae0b53e7e842a4a1645851eed8e2931ac680c1a02641198
MD5 d059ee0a922ee6c41a11f33c4aa46d8b
BLAKE2b-256 59f8554155f81d3139c298d4c1a1af8b2c89b0675eb3fc82e839923d5421188d

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5150d40f5b22c748d7b2feaccc076f12c46db87705b09ec20087019aaec4ed18
MD5 7eeabd87ebeebbaed29a738b03619407
BLAKE2b-256 1dac494323ebb67eba401e8aeb7fd07291c2331cc24095aa53cf416165161318

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0aa273962cab08ae3b3ed700b3f19d40c12eda310c93e0f18399aea2c13c9e51
MD5 3b29aa5667c6275c4f7f145729abc3c0
BLAKE2b-256 5797be9e5e0bb285fc1a50086a8b688159891501bd0494763a32aa811dde3cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0be3f2fc2cff250175263b8246319f3b1d1ff2417b2598667fd91d0f593e8ff9
MD5 3589c44e94be2f5f1b83054edc603822
BLAKE2b-256 796c068489e373816b35a9446463f8a8890afdac162ca2476eeec8e0689457f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp313-cp313-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c862417b97f49fe02752ba13af07e46665f20102b042c69127d9562b675fd266
MD5 bd827a20e4ee0a73dfc864da284b5426
BLAKE2b-256 b39595023873e25c30c0c761881d695f06d60ad4f7ee43858b019a9dde88f9a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp313-cp313-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38fd64e61d271e4f5e0251667e97fd0b2ed0020e7be652ff6aee316d2e931b6c
MD5 bc98e517accccd7b95d3b16541d16e10
BLAKE2b-256 efd9b32e39a13f89791b5da7fdb41e28f58877df0d21d34c07fe0b0d49cf8e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reductable_params-1.0.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bfce085f7febde9433d31b6ebe8844278f77aea1b65da6c7d0e10b5f2a8960a9
MD5 4c8673d0752d1c8fc2bb7ba03860b06b
BLAKE2b-256 cc34568361003d8e56522f0eca61eac4a8509f4262c306918f85707b6386625a

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a79a94048aa77eb42b801435545696f2c81542f74d0e781cf50a8a0c830cb8d
MD5 b1db754a365e5fdcd4f51baa8fca12df
BLAKE2b-256 5e317b3af6bbb78f0b6da99b803b3b9f496236e5182ec46e75a0b8d39ccd7d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ed710de63bebc29dfa3baa0f6eac24517c3b9ea909c9575dc994d3a1e51f72e9
MD5 8629bd29c89c4a0d2a7608222b370232
BLAKE2b-256 6389bcb718c699300f062bd7d76363b47baf60d58c8c40b1d366ea78d9e99669

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 492d2aa4dc602a6ea4783d6114c352b0a1429cc6562293c798fb7914b20d47db
MD5 f02899d0a3a27939a2de188b734a8cc2
BLAKE2b-256 3243f7d1d45c58dc35ec569db254faf29fb129a6d5e271d4e0791a8076dcdabe

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp312-cp312-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b27a3e25d0a9e44626932e5658e276f6d422ed42ffdb6c2b3e807f2e93f559e
MD5 80b0ce926038e1f95e9b3d0615b522a4
BLAKE2b-256 5218ec7923541565ad22886cfea0a286293bf3422ff2fa141abbfa1b9caab15f

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp312-cp312-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 768ffcf242ebf4d002fda5315846d88e2eb8ee1e70c8caf861e440fe71e971d1
MD5 1b4b3b12a2dbf5696e13c8de714e8df4
BLAKE2b-256 311a981f3e7b5e9f95de1cbcb71abdaabaf7763219c52dc49a3c8193d8da1f45

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reductable_params-1.0.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dadae7e70ad53b706b04b50c1f9ade7151851ad5f364f7e6bd32ef7dc955d88a
MD5 cc992da76ee0dfb2a02420411488befc
BLAKE2b-256 4030e46c6aea6257425d49cf54484e9acc9bf8b780deee951aa1d94104f5ce94

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56f37212a0c6568a809ba13f0976ce9b85c344ece82e4abf7d0ef79add8d615d
MD5 17979c944219ec445c710aeafe79c1e0
BLAKE2b-256 ccf354519bd43f58efe4723baac09a9682d8439d3cc139a0071e902259b0235b

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1c170d62d03c7fc64064c3f00bef3a9247beb7a0de5e0d3c027afa0728b629ca
MD5 46f2c674718101ad7597101a19c1ce48
BLAKE2b-256 8d9657d633d0e3e408dd343b7be5597197fb75bf360df738efc9c94bff4bbbe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6923a18b3c968dc030ae20c6f02eb29cc47992d01f500c447f54d83e592858cb
MD5 5dc10723fc2ca3825561e3181e30eb5a
BLAKE2b-256 562c599f8254de40224ed0417d257dc8de6ae2ffd94ec8ea74ea2f6a8ca7350d

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp311-cp311-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2b8e82aab4664a2221ea2d126c846955ea197b1bc29f9127c839115b9fc5efdd
MD5 80d9d46d4d3f6a50ce0c195cb88c97c0
BLAKE2b-256 6584559372a954213305b5cd85087f83b1ad6b944ee38c6577cf78367e85c680

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp311-cp311-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eab33576484569bc81a4249ff5fcf425e96ee3c0136d2dac0352e65ef5bc7ddd
MD5 6f0170d4847097a7f79fca0dd85dbd4a
BLAKE2b-256 6bcf98d65ef753fe9c2a124556c32dc8cbc66c748329299ddd9696e028dcf3dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reductable_params-1.0.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 31678e8e80eb7e31c14e98a27938bf399d082c520317f4a9d528ee2692879c38
MD5 f4c0b18e139e41d1a021d5e6f46897e7
BLAKE2b-256 26f9c772f9417c39bd74ec0eb20b28858a834ed0cc8e7b057d20bb2e26afc9bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b02f16a9103b6e2329a09fcc4d361fc9ea2bf95bc7888063792775b11714748
MD5 4a7cd0f24a5bf4c69372dce7b5987aa4
BLAKE2b-256 7d8c7d33eaa871a37a2b8658e0011b6cb66c9dee8f16c117e1643ec797373695

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bbeef82fbf39be768cace14a46c963a1fbeedc2982a9ec154960c951897fbf5
MD5 7bb5e6bb60db3bf316c294afd77aae3e
BLAKE2b-256 5b864fc0898305a3b7610f55852176848098d5c22e72c0a74e7f7af1b454ec6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 369dea28c06fe00ea1db784de4d25f4aa185c89ed9ce3c03eb65cd7e4fd3788f
MD5 c262f4eb6e64d4a170078c199a299c1c
BLAKE2b-256 cda341be8c0f036112af70fe1468ecd278ac684f4535165c5b1bb4b3dbd9434e

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp310-cp310-win_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6dc444529048e754fb36f2fcff62148e9a3a683771c20f3f647f7d528cd45d40
MD5 310181e33b28a4ad854b96d6a303a633
BLAKE2b-256 2aab7c3cf6704bf7f00b2224cf565002f8b55ca57b5510d5029f760b923546d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp310-cp310-win_amd64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 deecb8e30215cd08e62c74c47996bb134ee59eac35e222a6f2987aea6f0c752c
MD5 875a152aef1d6953f794813fcd181738
BLAKE2b-256 8930583764269d2a11ce2fc46096037c7d02d460999fd476c6122a11da4801fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reductable_params-1.0.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c76cca6b53ba2443d8533a48c3ba6884df85ccd891cb14b2b4dc3f947fc00083
MD5 1579111b81640479248a73f587aea446
BLAKE2b-256 aaa6d52d258047f57d42aafbd9932122673ad5ff68fa9d9475dd9d59fc2c93ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59c62596faf62ef2aae137191ede11e65c005ba38a1999efed2f2b7d4e7d4667
MD5 e56bbd98098b2361646a96e1bb3f6b2b
BLAKE2b-256 7e52f8ac3539a3fca1f2cdc71b8fc06cff6c4d05e8be09a20f1dcbfb66ed3fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for reductable_params-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56b11512ef13e445b7ca4d7f3601a378134ffdd036341047801ecdb63faa52be
MD5 90f5fd31b3bf7272466fbfa089868426
BLAKE2b-256 f24af95c585b654db23ef4c4237a643781d3d34411d55b3a773f1ded0b0c07db

See more details on using hashes here.

Provenance

The following attestation bundles were made for reductable_params-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release-wheels.yml on Vizonex/reductable-params

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page