Skip to main content

Python interface for the numerical database

Project description

NumStore Logo

Numstore

codecov GitHub Actions GitHub Actions

A database for arrays

Numstore is a single file embedded ACID database built for arrays written entirely in C with no dependencies. Currently it has a nice easy python interface to use - but stay tuned for more features as it grows.


1.0 Quick Start

1.0 Install Numstore using pip

pip3 install pynumstore 

1.1 Run a Sample Application

The following example shows the main operations you can do on a numstore database:

The available things you can do to a numstore database are:

  • Create a new variable
  • Delete a variable variable
  • Get a variable
  • Insert data into a variable
  • Read data from a variable
  • Write data into a variable
  • Remove data from a variable
  • Begin a transation
  • Commit an open transaction
  • Rollback an open transaction
  • Close and reopen a database

You can see more examples in samples/pynumstore

import numpy as np
import pynumstore as ns

# Basic Operations
with ns.open("mydb") as db:
    ######## Part 1 - A simple Create Insert Read Write Remove example
    y = db.get_or_create("y", dtype="f32")

    # Start with a fresh dataset if y already existed
    del y[0:]
    print("Initial State: ", y[0:])

    # Append twice
    y.append(np.array([1.0, 2.0, 3.0], dtype=np.float32))
    y.append(np.array([4.0, 5.0, 6.0], dtype=np.float32))

    # Retrieve the whole array
    print("Seed Data: ", y[0:])

    # Insert in the middle (inner mutations are first class operations)
    y.insert(2, np.array([4.0, 5.0, 6.0], dtype=np.float32))

    # Retrieve the whole array
    print("After inner insert: ", y[0:])

    # Overwrite data at the start
    y[1:4] = np.array([9.0, 9.0, 9.0], dtype=np.float32)
    print("After overwrite 1: ", y[0:])

    # Overwrite data at the start
    y[3:7] = np.array([1, 2, 10, 12], dtype=np.float32)
    print("After overwrite 2: ", y[0:]) 

    # Remove every even index
    del y[0::2]
    print("End state: ", y[0:])

    ######## Part 2 - Demonstrating some ACID properties of numstore

    # Without a transaction - mutations happen in "auto transaction mode"
    counts = db.get_or_create("counts", dtype="i32")
    del counts[0:]

    # You can wrap operations inside a transaction to be explicit
    with db.begin_txn() as txn:
        txn["counts"].append(np.array([1, 2, 3], dtype=np.int32))

    print("First state: ", counts[0:])

    # When an exception is thrown - numstore roll's back changes:
    try:
        with db.begin_txn() as txn:
            txn["counts"].append(np.array([99, 99, 99], dtype=np.int32))
            print("After modification (inside tx): ", txn["counts"][0:])
            raise RuntimeError("something went wrong")
    except RuntimeError:
        pass

    print("counts after rollback: ", db["counts"][0:])  

2.0 Building from Source

2.1 System requirements

  • C compiler supporting the C11 standard
  • CMake
  • Python 3

2.2 Linux, Mac, Windows

cd <path>/numstore
cmake --preset debug

2.3 Build!

Numstore is built with CMake:

cmake --build --preset debug

You can see the options of various presets in CMakePresets.json as well as build your own custom presets using flags found in ./cmake/Options.cmake

Here are some other cmake presets:

  • --preset debug - Debug build. Logging enabled. Asserts enabled. Symbols included. Portable. Not stripped. Address sanitizer compiled in.

  • --preset debug-valgrind - Same as debug but without address sanitizer (useful for running against valgrind) and portable.

  • --preset debug-coverage - Debug with coverage enabled

  • --preset release - Release build. Logging disabled. No asserts. No tests. Optimized for your machine. No address sanitizer.

  • --preset release-tests-asan - Same as release but with tests compiled in (to ensure unit tests pass with or without asserts).

  • --preset package-release - Portable binary with stripped symbols.

There's an upfront Makefile that has common targets that I run a lot but in general this is just a tool to help me reduce keystrokes new developers should use cmake as much as possible - while using make if there are any common workflows.

2.4 Pynumstore

2.4.1. Install

pip install -e libs/pynumstore

This compiles the C extension and installs the package in editable mode. CMake and a C compiler must be available on your PATH.

2.4.2. Run a sample

python samples/pynumstore/basic_operations.py

All PyNumstore samples live in samples/pynumstore/.

Note: pynumstore is in an unstable state - more docs to come while work is done on pynumstore - for now run samples in samples/pynumstore.

3.0 Configure your build

Numstore has compile time configuration of various application specific attributes such as page size, number of bits for a page number etc.

You can see them all in cmake/Config.cmake.

These are common configuration options:

  • -DNS_NS_PAGE_SIZE=4096 - Page size.

  • -DNS_MEMORY_PAGE_LEN=4096 - Number of pages to fit inside the pager buffer pool.

  • -DNS_WAL_BUFFER_CAP=1048576 - The size of the internal in memory WAL.

These should rarely be changed:

  • -DTSIZE_BITS=32 - Number of bits needed to represent the size of a data type.

  • -DPSIZE_BITS=32 - Number of bits needed to represent the size of an index into a page.

  • -DBSIZE_BITS=64 - Number of bits needed to represent the size of an index into an array.

  • -DPGNO_BITS=64 - Number of bits needed to represent the size of a page number.

  • -DTXID_BITS=32 - Number of bits needed to represent the size of a transaction id.

  • -DLSN_BITS=64 - Number of bits needed to represent the size of a log sequence number.

  • -DPGH_BITS=8 - Number of bits needed to represent the size of a page header.

  • -DWLH_BITS=8 - Number of bits needed to represent the size of a log header.

4.0 Project Layout

  • apps - All applications in this directory are built and linked with all libraries built in this project, making it easy to create on the fly applications for simple utilities on the database.

  • samples - A list of samples for easy developer onboarding.

  • src - Source code and private headers

  • include - Public headers

  • scripts - Simple scripts for auto code generation or formatting or ci / cd. Mostly python.

  • cmake - CMake utilities and includes.

  • docs - Documentation for numstore.

5.0 AI Usage Policy

I use AI the way I use a language server: as a tool, not a co-author. AI usage is fine but not for heavy tasks.

Things I ask AI to do:

  • Add edge-case test scenarios to existing unit tests (reviewed before committing).
  • Review an algorithm I've written and flag anything that looks wrong.
  • Write formatting scripts, CI/CD glue, and other boilerplate I could write myself but would rather not.

Things I don't ask AI to do:

  • Implement features.
  • Delete or replace code I've written.
  • Read a paper and implement the algorithm.

In practice, AI is useful for ideation, code review, and generating mundane code I'll immediately refactor. Every algorithm in this codebase was written by me.

The CLAUDE.md file ensures that if AI-assisted code ever does land here, it follows consistent standards.

6.0 Contributing

File a ticket on GitHub for bugs, feature requests, or questions. Pull requests are welcome - see CONTRIBUTING.md for guidelines. Windows CI/CD support is an open and approachable first contribution.

7.0 License

Apache 2.0. See LICENSE.

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

pynumstore-1.1.3.tar.gz (363.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pynumstore-1.1.3-cp313-cp313-win_amd64.whl (689.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pynumstore-1.1.3-cp313-cp313-win32.whl (582.7 kB view details)

Uploaded CPython 3.13Windows x86

pynumstore-1.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (159.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pynumstore-1.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (155.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pynumstore-1.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (156.6 kB view details)

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

pynumstore-1.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pynumstore-1.1.3-cp313-cp313-macosx_11_0_arm64.whl (123.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pynumstore-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pynumstore-1.1.3-cp312-cp312-win_amd64.whl (689.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pynumstore-1.1.3-cp312-cp312-win32.whl (582.8 kB view details)

Uploaded CPython 3.12Windows x86

pynumstore-1.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (159.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pynumstore-1.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (155.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pynumstore-1.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (156.7 kB view details)

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

pynumstore-1.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pynumstore-1.1.3-cp312-cp312-macosx_11_0_arm64.whl (123.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pynumstore-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pynumstore-1.1.3-cp311-cp311-win_amd64.whl (689.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pynumstore-1.1.3-cp311-cp311-win32.whl (582.6 kB view details)

Uploaded CPython 3.11Windows x86

pynumstore-1.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (158.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pynumstore-1.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (155.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pynumstore-1.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (156.6 kB view details)

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

pynumstore-1.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pynumstore-1.1.3-cp311-cp311-macosx_11_0_arm64.whl (123.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pynumstore-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl (127.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pynumstore-1.1.3-cp310-cp310-win_amd64.whl (689.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pynumstore-1.1.3-cp310-cp310-win32.whl (582.6 kB view details)

Uploaded CPython 3.10Windows x86

pynumstore-1.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (158.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pynumstore-1.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (155.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pynumstore-1.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (156.6 kB view details)

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

pynumstore-1.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pynumstore-1.1.3-cp310-cp310-macosx_11_0_arm64.whl (123.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pynumstore-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl (127.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pynumstore-1.1.3-cp39-cp39-win_amd64.whl (689.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pynumstore-1.1.3-cp39-cp39-win32.whl (582.7 kB view details)

Uploaded CPython 3.9Windows x86

pynumstore-1.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (159.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pynumstore-1.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (155.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pynumstore-1.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (156.7 kB view details)

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

pynumstore-1.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pynumstore-1.1.3-cp39-cp39-macosx_11_0_arm64.whl (123.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pynumstore-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pynumstore-1.1.3.tar.gz.

File metadata

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

File hashes

Hashes for pynumstore-1.1.3.tar.gz
Algorithm Hash digest
SHA256 d837a0659e7dec45b0189e66922f66012bb0d9c4ecd38be3429fb71aa8d2de0c
MD5 23a7c30d17828237d88977db3ad1e12e
BLAKE2b-256 c697aefb32e8b57a1075edf34a653d0f460fe83d062185f054eede224b72f28d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3.tar.gz:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pynumstore-1.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 689.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pynumstore-1.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f66914702de7807140c7e36d1e1b1be49072a18b2c33958987e049d0f22465de
MD5 41d677506364e4501a0d92ad0d7abe92
BLAKE2b-256 4f6e1b9df8451bded7ab652fdac5c431529082a6f16518ca9e793a0b9914023a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp313-cp313-win_amd64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: pynumstore-1.1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 582.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pynumstore-1.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0d51cc77de52f455bee4f74add3fc53be1877076f7edc5af0b6114fe2eaf69d2
MD5 095d2bb30f8a46fb19b8819d5fb90aa9
BLAKE2b-256 9977dbafc98739010e7f3e5671591ce27536f4b690fb0de0f53f06f508f6622b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp313-cp313-win32.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c9167f326330539fc9245cacce2e66491e245952005edb1bd23dd95fbfda1af
MD5 92afb13e0c40a81342a80cac83994fe1
BLAKE2b-256 ca45fc04230f6c5f8ffaeec30c1e26441b52450d0711909321f30053c8d26510

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b09296b170f3b78aa33068cb9e5dfd952b050861eb6cad00f7c644cef8f6cecf
MD5 f878df82bedc26f47dee4e370f2083a9
BLAKE2b-256 bd702c8f5f0e5a9f49f6bd8664e54d94c0f7f7b05becfb6618bb17f0dfe551fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b137f4ecfe5436ce8a4fa4753994927542d5e8cec37a36135d805e6d761d3cdc
MD5 98280897bc1791c6b3e25443362dbea0
BLAKE2b-256 5eb15c1588c556f84b0d0c9b2956ecda0ad5b7e2711f0584bb977b6234620209

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 357bf40fd3a7376416c9a6322c43722bb35cd48976abd31241e515533b3c38a1
MD5 b9e6e6c81509d219df4e66306fe34bb0
BLAKE2b-256 31cad9132bb1be2a23b1ea1f8410d19ab64719b0a60e8f18a2cbff2a16c4e703

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f324f3bbb8864ce3189a8ded8016f085fc4b1a6800e0cb7bbc233cea6ab8657a
MD5 44913ebd632c936f5dbdc014c77717fa
BLAKE2b-256 6eb3faf1a196487115c8a5ce4331ffb39c189dc18a9d5b586de0ab072e3a8152

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 52468f75e451fb0c9f0465a06bbe293027f9d30991d847f64cf15b5898991a70
MD5 793520a4314f3f631b1d1b5eb5ac8c97
BLAKE2b-256 99d6d7fd83d36550ce58e4e3b9668073629ae95c15795ea26e58a545878189ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pynumstore-1.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 689.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pynumstore-1.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 39457b3f60feaa45cfad57b0b03749998e97436691b76bd3133bb858b49963bb
MD5 9886bf00daf2059eb3bef5c72662918f
BLAKE2b-256 8c322357abb4d0d3e3a53304e204ddacaddfb04bd7caedf3d61936450cf0faad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp312-cp312-win_amd64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: pynumstore-1.1.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 582.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pynumstore-1.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f14d512d447fcf2f5d9370a57df9d993769b158abd32116e3545724e91452510
MD5 e7c1ff7c5ba8c422d964b0ef7377d885
BLAKE2b-256 9f29ebfec3e97e03cce205d317d5d6741d86eac26cc6bdb4bfcfbfba87f81321

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp312-cp312-win32.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14d8ff34954201001163d186916753cac3ff76e80c1d23ec8d2af1977c77a038
MD5 15fad3cc68e596176c27248c70604838
BLAKE2b-256 19e45b18391893dbc6d1324aa48bb86e6ea8609bc137b6d9ea820cf0bafff884

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d50b38bc87c539e74581070c62ceadd8e19b96eb81cc6aee88fc35006c439bd
MD5 ba3ecc8169ce9d2e1d559b95a8a1b88b
BLAKE2b-256 9abb40c7a725373cc8eee5ee196f99d8a10c9047cb5e57cdb74b6462342936a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b497b727f4f47a80bca346892a6b3a8550f60694ff6c8f4b93de8ddb08424fbe
MD5 f26b57f196d9887e55f630ba8e67fe55
BLAKE2b-256 eb079ed1c4d258851ad11c96e3b05dd88ed41cc8308f50a2d7fd4db06baa2de6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72c20aad392ecc6f22b236c5964138703e5183b227230e05317ada0e3e63469d
MD5 0dbb54801e9f32e302ade31fb6af885e
BLAKE2b-256 54f98a41e26518d4c88a7ea42952e06a6dd5819bc2e7a390c665ad070ef4d059

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddcdeb9c556299ff255fa72cfd15eca11f3655475f88f09742a6f2f9aabd4b23
MD5 edba48e4727af6047562f21b50494bde
BLAKE2b-256 7ccbc82c26c15295cf27bc80b8c53d7db12837e840256fc0e1bce40133b1b01c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 77cd26059257c0e58bccfa0d08b7686022cebc533b9476380fae206671230f4c
MD5 6921eb67022e6145a585c77dc9d6640a
BLAKE2b-256 734093eee83e3ca6aa00ac2f0081a39666269e09587851ba4195ad09f57b03b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pynumstore-1.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 689.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pynumstore-1.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6818f2f1650de101903e573ff4c3eddcb2c6a0fc788497bbc37d0d36c17c5473
MD5 e4b3e2d185cc1175d4047d83ec703c5e
BLAKE2b-256 e7aaac5da66d03ad549f2821f143bf1a036c1b3e1b2de8ed714db582b402e229

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp311-cp311-win_amd64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: pynumstore-1.1.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 582.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pynumstore-1.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0ce8f512d9a6b42be4ee57e48932aa9d4cc272d0bb960a48527f05ea2f238fc1
MD5 75676726ea70c8a09b7a5ee324944eeb
BLAKE2b-256 b46dd68be1c9898e36b2283be06f176894ee4682916610371068bb589559fc0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp311-cp311-win32.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6d2404e3cdd19de9442a1cf2986e759b725687db1e0ade129efaff095afb9f3
MD5 1d683df118224ab5a89a39e2a1c79166
BLAKE2b-256 8c4245e6a09fa35634fb8cb307ced00793b7540fe1641c125d48a8241cdaab96

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e7f22f8ebed29e536036ccbb1b476e15f3f842ea8ffc9bb84985eca38109350
MD5 aed99ab87ce186097b1eea0479e1f7fc
BLAKE2b-256 f28fb59f3bd1200a8955bf7074fdbd3dab5d329260286de91178813995e762a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b0d67bb458b7366cf31affaec932259f576be1a7b1e775a0a7809dd575e5e7d
MD5 6e84fb7ba4b2852b17dce89079c328a4
BLAKE2b-256 d8e84da4470d5c0687ec0000618797ff896eb7e715eb3bd42b656cf3a561c8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f0e110c95045a50f6883644b7affbb88301fdd81588028bf8439a32b3ed0284
MD5 095040c89ac9279c6180daf52c12c2a1
BLAKE2b-256 04bf9519c7115b3cf643232f429db1aebad77f2757df2606529677d2a2a9605f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7bedb4871b63f8e2b71e6ef71fe14eee1cd7c7fca8cbc774f605f9ca3a152ba
MD5 73af11f4f1a29ac672f85b89756cf101
BLAKE2b-256 a01d56557d6df9b6f844f54bbc19011459135034bd95f7093979fc229f965e26

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a519ec7423d849e937306bff06d6e028dfa02ae739753661b595bfbb8132ca0f
MD5 57069a642262c47e71a730959f24d8bd
BLAKE2b-256 c87a14917aacd52ac9d9d63a04856562f862b50bc9b839a4b074db3ba7811240

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pynumstore-1.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 689.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pynumstore-1.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8cc966ef358ea930c513e3e82c0474433e40989ead756c7e18e988bfa8689870
MD5 8ecc30a572a6c86256d3dad7db5fb431
BLAKE2b-256 f198c6b542f1508847b699bf068b2ac7d9a127b45586823444adfec362b5ebd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp310-cp310-win_amd64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: pynumstore-1.1.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 582.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pynumstore-1.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7d39c1a3cc3aef6993fdbb2f236b4514527875c25c53e310a20bcbdbec22fda7
MD5 105b58e6bd96ed04d568b87f691c7a23
BLAKE2b-256 8c0315b6f425f26685b31117f9761c94094bbe8f6a648dfd6f70da52a6772538

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp310-cp310-win32.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 860650f586d0e9c4593e9fda1c56e90c90614aaf469f034e8a7b6311f9f3fcb9
MD5 8d535b2cc9a55ba708a7a9648c69173b
BLAKE2b-256 975d6332e95c59b3ebb283d234b7d99197d678a4ce391e53167ce72a4d3bcf23

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cf7aa9df5cfed9bc9afe2226f785f6ecd772892154b65bca4843edda7d61870
MD5 6ed85e8f19f63ec060e52a823f19a82f
BLAKE2b-256 6bf813722de359efb440efe6a2f9ce90a03e4f4b843e6484ea5ba02af43b95bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b86122f1aec240ee5249f076811c0aaa0480286d6b70370c4b867e0a97892cc2
MD5 372c35e46b492dcdaad81ce7433ad14f
BLAKE2b-256 8178e39ff01faa7520ec0a43602c1e0bbb8ddcc49688924b48d1b55a65b7cbdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83a95baa2df97586ed9d540ce648fd7306c1359fa370b207482ef8dec0e23ea8
MD5 dc0e6ba87450146d84763e468fdc2b53
BLAKE2b-256 b850a8fe0c0576a69951ea86365a2b1b958618a269d6f7b0e057d4f46fffd11e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dc407d41ed9e93b3cef5897a67960225ba908eb1449ad256af5c0cf325e9408
MD5 8ca6f155ed9db902a73b46fba23a7292
BLAKE2b-256 6fb4fa4273efa201e2fce668530824bde10418adcc283b226654a242c72f9dae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdfb935361b33097228d34c80c9171e858e18b8e13168738e491d75332ad5495
MD5 6ab89fec09c95f247f0d2e5659a9ba7a
BLAKE2b-256 d25011535bb40be149893bb1392eddf1f9c075dfa9ca6d21cd25d8f12e149141

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pynumstore-1.1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 689.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pynumstore-1.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 32d7131bda98109c7c534553374a2bafd52ff05f6655c2a216142fb15de6f479
MD5 a8479b3200847945f881b8f799de3003
BLAKE2b-256 c0047b78b0936ffc11e1f268023a32598b0c1012e60fee04efcef93677292c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp39-cp39-win_amd64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: pynumstore-1.1.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 582.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pynumstore-1.1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bf1b7d229afada765a46205d24f2a54cddd8eba94c807fd23d122882fe8e4f57
MD5 0920511c5ef7c431c33a60bda6d50b09
BLAKE2b-256 098a23d6f96dda6cb9f62a9611e3de4dcaff21808da3aff882246f0526d5886b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp39-cp39-win32.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78b8002c13a32bf2645b39ff53d4ba5f04cda36785cad02a3e7edd89dde8eca4
MD5 0915e764503597f5935356829d194640
BLAKE2b-256 abb5a8ecbd4b14aecff777b19e927f2d31d5650e99d59d2657e875f6ae0d8169

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39ae196d7b84e7c81524356b0a2db7fda8c7edfab3b2dcd101015a87e3d3e57a
MD5 e40c9c577200f3227059b397a6eee41b
BLAKE2b-256 27cb6aec3950328bc300ef5dd38b6927d3800ec47301bdda727e35402ce129c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1413ef67e09263e7eadbb30fc51c68365222223b53a955f44e43ce887855994
MD5 09f640f01dff1abd6aca5c351a66d9f7
BLAKE2b-256 5ce5cb3f1e01527d9017036556f04172307d071889692bd876fd8208e275c3f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7ba44e4f7f65c441e85070e38dd56bf8c6c1c3d3a131d0c8b205020d0c3c9ba
MD5 7f0a1d12d20e9def5004536a0c6e3d90
BLAKE2b-256 ee3737fd337efc4c3dfddd3d0db26a7cf3063b7e99c2aa82971e2c6273722c7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08b35f31652d4bc587ddceba8eb3d0666298073b41d812adea0f0ac69e4a859f
MD5 3b2d21336eadac7b2a94edfb07ccb3e6
BLAKE2b-256 8ad27e1b6b77e589621d630bbdfb8e2c829277d5365622760e6b34e9b8a11b10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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

File details

Details for the file pynumstore-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 298297af014c1c7728a4d70ed5b341429780eec93bfc538db9b7cfa4b9d84d9a
MD5 e06d83b0e21528192f5593fb9e657bd9
BLAKE2b-256 bd44a5f79ac77658e8a4736819ba1d00f049fd3740c47bfa0e0f3940024b3f8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: cibuildwheel.yml on lincketheo/Numstore

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