Skip to main content

Python interface for the numerical database

Project description

NumStore Logo

Numstore

A database for bytes


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-no-asan - Same as debug but without address sanitizer (useful for running against valgrind).

  • --preset debug-ntests - Debug build without any tests compiled in.

  • --preset debug-ntests-no-asan- Same as debug-ntests without address sanitizer.

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

  • --preset release-tests - 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.

  • libs - Each directory inside this is a library.

  • 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 Summary of all Libraries

The application contains various targets:

  • libnumstore - The numstore library is a wrapper over nscore that adds convenience one time operations over arrays.

  • libnscore - This is the core of numstore - all headers are exposed - all heavy weight algorithms live here.

  • lib_pynumstore - The python wrapper over libnumstore.

  • lib_smartfiles - The smart files library is a simple api over a file like object with inner mutations, kind of like numstore but every type is a uint8_t.

  • libc_specx - Core common logic.

  • libnstesting - Testing scaffolding.

The submodule repository qtrepotools contains useful scripts for developers and release engineers. Consider adding qtrepotools/bin to your PATH environment variable to access them.

6.0 Documentation

After configuring and compiling, building the documentation is possible by running:

cmake --build . --target docs

After having built the documentation, install it with:

cmake --build . --target install_docs

The documentation is installed in the path specified with the configure argument -docdir.

Note: Building the documentation is only tested on desktop platforms.

7.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.

8.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.

9.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.2.tar.gz (354.5 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.2-cp313-cp313-win_amd64.whl (687.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pynumstore-1.1.2-cp313-cp313-win32.whl (582.0 kB view details)

Uploaded CPython 3.13Windows x86

pynumstore-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (151.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pynumstore-1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (147.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pynumstore-1.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (149.0 kB view details)

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

pynumstore-1.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (142.8 kB view details)

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

pynumstore-1.1.2-cp313-cp313-macosx_11_0_arm64.whl (119.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pynumstore-1.1.2-cp313-cp313-macosx_10_13_x86_64.whl (123.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pynumstore-1.1.2-cp312-cp312-win_amd64.whl (687.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pynumstore-1.1.2-cp312-cp312-win32.whl (582.0 kB view details)

Uploaded CPython 3.12Windows x86

pynumstore-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (151.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pynumstore-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (147.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pynumstore-1.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (149.0 kB view details)

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

pynumstore-1.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (142.8 kB view details)

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

pynumstore-1.1.2-cp312-cp312-macosx_11_0_arm64.whl (119.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pynumstore-1.1.2-cp312-cp312-macosx_10_13_x86_64.whl (123.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pynumstore-1.1.2-cp311-cp311-win_amd64.whl (687.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pynumstore-1.1.2-cp311-cp311-win32.whl (581.9 kB view details)

Uploaded CPython 3.11Windows x86

pynumstore-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (151.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pynumstore-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (147.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pynumstore-1.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (148.9 kB view details)

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

pynumstore-1.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (142.8 kB view details)

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

pynumstore-1.1.2-cp311-cp311-macosx_11_0_arm64.whl (119.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pynumstore-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl (123.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pynumstore-1.1.2-cp310-cp310-win_amd64.whl (687.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pynumstore-1.1.2-cp310-cp310-win32.whl (581.9 kB view details)

Uploaded CPython 3.10Windows x86

pynumstore-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (151.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pynumstore-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (147.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pynumstore-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (148.9 kB view details)

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

pynumstore-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (142.8 kB view details)

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

pynumstore-1.1.2-cp310-cp310-macosx_11_0_arm64.whl (119.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pynumstore-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl (123.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pynumstore-1.1.2-cp39-cp39-win_amd64.whl (687.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pynumstore-1.1.2-cp39-cp39-win32.whl (581.8 kB view details)

Uploaded CPython 3.9Windows x86

pynumstore-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (151.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pynumstore-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (147.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pynumstore-1.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (149.0 kB view details)

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

pynumstore-1.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (142.8 kB view details)

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

pynumstore-1.1.2-cp39-cp39-macosx_11_0_arm64.whl (119.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pynumstore-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl (123.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pynumstore-1.1.2.tar.gz
  • Upload date:
  • Size: 354.5 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.2.tar.gz
Algorithm Hash digest
SHA256 ed9c47dd3f9e54cfcc3dc6bf304df3a229f44e79ed3ed57a6c0688ebe23423a7
MD5 cb0f6cadda183b2fec715ae101ae7163
BLAKE2b-256 16075c61249a25df75e78491ee1f3185eb608b6683288be2cc5b0a023e625a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2.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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pynumstore-1.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 687.8 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4df0de93c93ded111e7bbff90e572b81f1da540512757608f15cb74abc092772
MD5 515b7186658f98da52f2c3b6915c7053
BLAKE2b-256 9fdf940177daf1cbbd51366308d4743532e369e499d9ad2c9cf1ef9d4c6da930

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: pynumstore-1.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 582.0 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3ecd09640a1da8671bb8cf637b56c788fe18d08f74755d41d565b64e6eb62364
MD5 2271be1362e16ce877e995ef24121afb
BLAKE2b-256 19175c75f65f8bd984c8d682bc0ba1e5f245ad65a8ac38a9617d251d7ee1b77f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 902cd70704257a0762590adee9e4ceb54899b28be16e73b8cd226287e488f732
MD5 b2ab0f14d242946ef80ad9a3bfc36c82
BLAKE2b-256 8b9292ccad8914c53f6f862efd62e54833401db03df22fb02d3407771b4a175f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02097ec851e9fdf2b77b866873fba7721e5b7bff3f836b8691fee179b6ca47f2
MD5 75427ff763c8127eb68bfbe80ef94d85
BLAKE2b-256 7d35747c88999c406e9c02e001b3486a6fc18d1c9bd95c71b29d355dfb80a2a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a4e5517f2f4c8d168fc14b8227494ec47fadfe6ae5060ea7c8ecfc7845d69dc
MD5 a4cab1133dccfd9f2c210e5c812ea8a2
BLAKE2b-256 d2de78f755f478d69a4302c254b0208954162b8f4acaff4be9dca4b1465c667d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e006b4db0d8f6a94840c0d5090cd54d2b07ab19fb536906aaf75f806cbec1241
MD5 b87bd341e9ee41e5f2277f0a86bc5a85
BLAKE2b-256 44092cd30940ed35cfa5ab19a2409713cb9c7c1ef611eafca8794ced24f682af

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a685952a0d623c94edacfbe5bfa2437e773d83573b226e3ed3873e455b7d036
MD5 1d7f7f411736355256af78fc0029932d
BLAKE2b-256 63fb0849e883ed1c4c1e41e52737baaa0576dae6f34bf4b1283958424bf2d7dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a620f486e6e0fae31f61b7bd0c53cf95ecd103ce93ef9e3dbed875be2e48a4fd
MD5 7baaa16d35c5489fd56c2cdce3501756
BLAKE2b-256 1d23575231c31821c9e4796d419b1f715a226a8e4709413b2026813e9f2bbf9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pynumstore-1.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 687.8 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bc43e484fd2f9a376082cf80e962f3d55abbac64382dc5fb16b28b9683568ff7
MD5 6f05bc5b02ac461ad6df0e1cd9cbdb48
BLAKE2b-256 d851b99142ef53a77e0eec3ddbd8c42cdb59667909d424cc1a3f4e98c034589f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: pynumstore-1.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 582.0 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bd3646eba8236f59faf48aaef360a6086c6692d9887aa6bc00aa3069f59f6da4
MD5 d70ab7df9bb08436ec6d1aea983d6499
BLAKE2b-256 875988e5c51b7c5915854156205b2cc86e20d66fef016eb5696c7165f6b07c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b9e5017926a4bbe8ff3d0efaf1f714f9ec0da257c464352d78c41a3244d2648
MD5 31ba0aad9e9ddc35616309d7676ca4b1
BLAKE2b-256 7b489d8335a6fe1707b854451f3ab70a63e9d2f6c8a4a8d77468a342abf92e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb9d8a6ae95d4fda834df14127a4e258f93012fb6799ecfbaa31bdd0b6c67b5e
MD5 93d8a1c58f066d2261bf1160ba8e3f15
BLAKE2b-256 bf0f8ee0e7c264e823a1b34371a9c6a57a8a4ca9a580943ff55e830ba1d49419

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97c7c557b39bdf2c6b218ddef24e0d62cb2e6ac329c398962e3c58fefffb111f
MD5 e5e7b4d29a1a778a25f0479e1d74ba72
BLAKE2b-256 d9673b17a685663f6d37cd9e8a97f47b5e1c8616aff967dad2e1d850a5a5925c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f300140c260bd730ac9f1b3eacf3c7826e8652a15e301cda8ae6c85fbdcbf16
MD5 06ebddaf5a722fbeef46b043df6f143b
BLAKE2b-256 db3c1d48f16907f716e2f50108bee8542833bd7cd8bdc003d2693658c4b16c35

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd92ce9bb4a42c868ce6584cbd05ea4c858177c0301414f88928384fd64035e0
MD5 61962091fc9dd232ed9250e6ca7cd06d
BLAKE2b-256 091b2105058651dd1a06d415baedab4c0738cbd1abeb160058fc20638873db89

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dad71a2bf823db3a906ad5c5c1e09b671bee4d88d36723e0e54148e86bad7042
MD5 a0fbb0c91a8f23b121f5b50851bfa65c
BLAKE2b-256 b7cbd5840601b50838b8a9f882fca5b65590f52ea37796a5821401a38463d417

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pynumstore-1.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 687.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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 16f923e8320a1e5ed05dc4e19044dbdbee2ef45570b92d192224be2ee39a8846
MD5 778d3b716c6a81a3b150fc8265e72857
BLAKE2b-256 48869202cdf0c4a6d7a224c1fffde1a9158047f85b5853912c385fe802847b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: pynumstore-1.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 581.9 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5dd3085a5818f9e8ff07c45f4b55fed0d57f11dbc6292fdc7f28dee356cf0798
MD5 cdd064f1597e86e440951505db2bf231
BLAKE2b-256 2b1f75dda08e663ca18c1cdc0b28ff1e71113fe3f25e1c12a5533d012c7cd841

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf273a6b0d2e2612f345e1adbd112fda41c6c1e82aa9c1044de4ba5fe2052ab3
MD5 53fba95e8b03da147196615de9bba25b
BLAKE2b-256 921145e862506fa137fb3e3185b04c73273fd2bd69b4a587605bb684fbc43263

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12be1dcee7a07cbc75578e68e0907526840ef85533369ae9502256e44eead9a6
MD5 465600c94a1b096f82475d0b8572bd42
BLAKE2b-256 ba67cc667c15481af6fe261097043336e80d8e47f1b73066259f6ac378b8ad07

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7736d56ff4b39afe5b1e4e1034dbfb80b469ea4e8d88d134ffe762c40e18f03c
MD5 e248569de89c0d8e408f8d4e71d53ac5
BLAKE2b-256 04f539a877a24263c5e153e93dee2e5ac1085943a8f4c7c1261951b913d748f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84c38aeff9a9518494476b3e3347ea6598a34cf4d2b6d63fd650d662ad6a9942
MD5 51dfd33621bd7d305ab39173b011e82f
BLAKE2b-256 515347fd67306d36f632741b3e0c1b371a2868255e7720cc4ee59be71bdf108d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22d3e2a16d5721f33599e0a29b7b59eda6bb63ec31642e5d9310ad4ffd615861
MD5 65d9e939377f3e1b7930c14f0b73e55e
BLAKE2b-256 d2299e5ab23ae430b6308b84f536425ac566e4e7decd2502856df92cf053fe15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8a84058a9aeeebd974079b642e89c675eadc53722c33f8c413bb45f0fc9ccee
MD5 c2d7f6f94e0400e293371ccda96af90e
BLAKE2b-256 5fb42eb5f4b965ce531ddc7a1ece19d4db712c3ff6af50b163ac7efdfe63ef1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pynumstore-1.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 687.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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 607b83ad911bc2f02db58385f91107de81a59cd86a95e67983bbf848ff4a054d
MD5 b7b4165212da9a321154300b02807a1a
BLAKE2b-256 e02f4e1397e682c9aa33af78fcf2de4a3e1eb3781a7eef46226512fe27a8312d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: pynumstore-1.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 581.9 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dd06740240269f21088d3156f3b097fdff9068b4b65aaea60314bf2ed6f00a16
MD5 f0a6b041c4aad855be10de9188c26b20
BLAKE2b-256 6a3dd060840154301c9fbb37fbf10542775ed7e6518b4ca011d44394f3780da9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acf5a49c53623e26f8c2d62ad8e4fd91594cedabd23f6a4427a9a82048239911
MD5 629a33c51d90307c9643a4fa3241954e
BLAKE2b-256 cffd906f2f5778f9606c624cf3baa34030308b7ca2cf8c8481b1f8debcdfd1c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e61aa0c061c30b44458d215e0c071b8798680d69285deecb8396c8c18e1d713a
MD5 77ee2479f81e62621c2d6bfd6452d4bd
BLAKE2b-256 81359fc1aedf97e74203ccd67dc6642c546cb123187e60a7109133b9f5215b74

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff02c9f612afedcfd7d35b268f14359e7ea0d17978be47d358a787eb32b6de10
MD5 e1954d4f00b30ba46c4219498ddf161a
BLAKE2b-256 d3f40eea2e9c1fa12292a24ff00e96862c8fafe87b1c12ab69e463b588e214df

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f587b851bdfae86f5f1c8ac8eae6128dede40470f245418f29e1a6e8e4b2c994
MD5 ef829872186005eddda388e915af9c0f
BLAKE2b-256 d427d8fbb51a5f32d22520f110a1cdd9c0ff947b3a95ae18e3aa6ffd00bd98a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d434036f774cbd3f12539d4b72b25d2bde14183365ca3b1f922e839547b235b8
MD5 aa8f3e121e74e70c766c5c82caf02c27
BLAKE2b-256 2f213156fb5aecc4c7fac817c1a48f9e2c1addd705f0480e80e449b122be8666

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 829c3a9c1d3839f9326c0c9f686bd1bb3b6c759eff5ce27dd2f11eef0d3c1b06
MD5 e9d78847585088b6fda2194b274b8ce5
BLAKE2b-256 404f3e4f4be633b8537a5451e7057c6c9ebb6015fea1fd7be363c6e5e2db6323

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pynumstore-1.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 687.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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 310966e9e6cb84d369ba51452e63fcbc785dbb3ca10ee1be35d47db7d842920e
MD5 3b4d6f7916548447d8e85565e3766283
BLAKE2b-256 1d4bca62f66bedc7ac327868a3dc752ff6b996a53043c0faeead4b3f6cf762df

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pynumstore-1.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 581.8 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e590d82221cc9dce68fcc7b2cfd4cdb308bfc90decf531c9db400bae72056814
MD5 34e80abb14061ef4ae8635478071560d
BLAKE2b-256 de81a776f8bc73d2b22fa515e144765c73b48784d18b16efcfa69bb739781278

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f447119b615819416a705751ce5168ed2530c07a78bc4d2a7833da69a875db4a
MD5 51a718cc08957537b6fd3fc3a6ce6908
BLAKE2b-256 70f4de0ecc8c6a18725ed4b6e2a16210d22dd16fe3323ec65cf23c08e0d17303

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ce9c28b5d47bd8641ba401a3bd3ef3a4bfa6a40e5eb4dcd73abc3f6f216cc0e
MD5 f81af3af80ebc5806bb7e1e2562d888a
BLAKE2b-256 335b1d50f8364897ac8dbba2f72d8e82410769fdf11fd966811899d3a52d9693

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c99bb0e3f39d854317ec912d2c87d5427b1598d6bcdb01c9776bc2aa02584838
MD5 7a3b602c38c27c53039f3597823955ca
BLAKE2b-256 a21bd3aa9666162d08b9a14b1bfa05569a5937749d986ae56edff661d310f03f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5bf1ec07c56e18bbfaf0fb4910fbc38edd8b07ab07f5527a627e21e14375d809
MD5 be484a6948d302e5485e7327f2a57eeb
BLAKE2b-256 b4b6f49fe81e458acd35500e0e6411fccf4ed3be9e28878bb233003200e7bbf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f088cfaed4ed9ff4659947fa9ff6e8e93b4525f588f17b7f8028b8e7e79767f3
MD5 ef5ded4cc4e64db69ac1e8a97aa9fb48
BLAKE2b-256 98153e852cd9331e2af176b0c12d3e2550a66f318ef331a2b2e6259bc312ba1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynumstore-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e49ce8bf669f4c9c1ddf797fa82bc9fd92bcd187c9c4c6c4fdebbc6263f4bfc
MD5 38b6a9f0ccadd40e548ef435e946ff4f
BLAKE2b-256 d33de462d05e1610f38e5c9174dbb734fecab690ff5a60cfa8cb07277b8b61bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynumstore-1.1.2-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