Skip to main content

A tiny C++ Time Series Database library designed for compatibility with the PyData Ecosystem.

Project description

StampDB

drawing

StampDB is a performant time series database inspired by tinyflux, with a focus on maximizing compatibility with the PyData ecosystem. It is designed to work natively with NumPy and Pythons datetime module.

Key Features

C++ Core

  • Efficient CSV Parsing (csv2 based).
  • In-Memory Indexing for fast lookups.
  • Append-Only Writes for data integrity.
  • Simple and fast Range Queries.
  • Atmoic Writes.

Python Frontend

  • Seamless conversion from C++ CSV objects to NumPy structured arrays.
  • Relational algebra operations like joins, summations, and more using NumPy on structured arrays.
  • Use Native Datetime objects for I/O.

You should not use StampDB if you need advanced database features like:

  • Access from multiple processes or threads
  • An HTTP server
  • Management of relationships between tables
  • Access control and users
  • ACID guarantees
  • High performance as the size of your dataset grows

Use Cases

  • IOT and Sensor Data
  • Scientific and Research Data Acquisition
  • Single Node Data Processing
  • Private Data Storage

Installation

Supported Python versions:

> 3.6 && <= 3.13
OS 3.7 3.8 3.9 3.10 3.11 3.12 3.13 PyPy
Windows 🚫
Linux 🚫
MacOS 🚫

i686 ISA not supported.

Using pip

pip install stampdb

Build from source

Clone the repository.

git clone --recursive https://github.com/you/stampdb.git
# If csv2 C++ library is not cloned, you might have to explicitly clone it at `libs/csv2`.

Build the Python API.

python -m build

Running tests

After going to the tests/ folder, run:

python -m pytest -s

Quick Start

I/O using StampDB.

from stampdb import *

# This will create a csv store with time, temp, humidity columns.
db = StampDB("test.csv", schema={"temp": "float", "humidity": "float"})

# Appending a point.
p = Point(time=1, data=[22.5, "moderate"])
db.append_point(p)

# Doing append only writes to the disk.
db.checkpoint()

# Doing in memory deletion.
db.delete_point(time=1)

# Forcing actual disk deletion.
db.compact() # If not done explicitly, it happens on close.

# Closing the database.
db.close()

Relational Algebra using StampDB.

from stampdb.relational import *

# Given the db is loaded and running using the `Quick Start` section.

out = db.read_range(0, 10)
assert isinstance(out, np.ndarray)

s = Selection("temp > 24", out)
assert s.do().size == 1

p = Projection(["temp"], out)
assert p.do().size == 2

plus = Summation("temp", out)
assert plus.do() == 48

orderby = OrderBy(["temp"], out)
assert orderby.do().size == 2
assert orderby.do()["temp"][0] == 23.5

Joins using StampDB.

from stampdb.relational import *

db = StampDB("test.csv", schema={"temp": "float", "humidity": "float"})
for i in range(100):
    time = i
    temp = random.randint(0, 50)
    humidity = random.choice(["low", "moderate", "high"])
    p = Point(time=time, data=[temp, humidity])
    db.append_point(p)

# Written to disk.
db.compact()

db2 = StampDB("test2.csv", schema={"weather": "string", "temp": "float"})
for i in range(100):
    time = i
    temp = random.randint(0, 50)
    weather = random.choice(["sunny", "rainy", "cloudy"])
    p = Point(time=time, data=[weather, temp])
    db2.append_point(p)

# Written to disk.
db2.compact()

data = db.read_range(0, 100)
assert data.size == 100

ij = InnerJoin(data, db2.read_range(0, 100), "temp", "temp")
assert ij.do().size > 0

oj = OuterJoin(data, db2.read_range(0, 100), "temp", "temp")
assert oj.do().size > 0

loj = LeftOuterJoin(data, db2.read_range(0, 100), "temp", "temp")
assert loj.do().size > 0

db.close()
db2.close()

Runtime Comparison.

Though high performance is not the primary goal of StampDB, it performs significantly better than native Python libraries like tinyflux.

Runtime Comparison with tinyflux

Operation Speedup
Writes
Queries 50×
Reads 30×

Steps to Reproduce

  1. Install tinyflux and StampDB.
  2. Navigate to the directory containing benchmarks.py.
  3. Run the benchmark:
python benchmarks.py

Contributing Guidelines

  • To get started on a pull request, fork the repository on GitHub, create a new branch, and make updates.
  • Write unit tests, ensure the code is 100% covered, update documentation where necessary, and format and style the code correctly.
  • Send a pull request.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

stampdb-1.0.0-cp313-cp313-win_amd64.whl (146.6 kB view details)

Uploaded CPython 3.13Windows x86-64

stampdb-1.0.0-cp313-cp313-win32.whl (132.9 kB view details)

Uploaded CPython 3.13Windows x86

stampdb-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

stampdb-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

stampdb-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

stampdb-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

stampdb-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (178.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stampdb-1.0.0-cp313-cp313-macosx_10_15_x86_64.whl (185.8 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

stampdb-1.0.0-cp312-cp312-win_amd64.whl (146.6 kB view details)

Uploaded CPython 3.12Windows x86-64

stampdb-1.0.0-cp312-cp312-win32.whl (132.8 kB view details)

Uploaded CPython 3.12Windows x86

stampdb-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

stampdb-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

stampdb-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stampdb-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

stampdb-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (178.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stampdb-1.0.0-cp312-cp312-macosx_10_15_x86_64.whl (185.8 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

stampdb-1.0.0-cp311-cp311-win_amd64.whl (145.2 kB view details)

Uploaded CPython 3.11Windows x86-64

stampdb-1.0.0-cp311-cp311-win32.whl (132.7 kB view details)

Uploaded CPython 3.11Windows x86

stampdb-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

stampdb-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

stampdb-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stampdb-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

stampdb-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (176.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stampdb-1.0.0-cp311-cp311-macosx_10_15_x86_64.whl (183.2 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

stampdb-1.0.0-cp310-cp310-win_amd64.whl (144.3 kB view details)

Uploaded CPython 3.10Windows x86-64

stampdb-1.0.0-cp310-cp310-win32.whl (131.9 kB view details)

Uploaded CPython 3.10Windows x86

stampdb-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

stampdb-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

stampdb-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stampdb-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

stampdb-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (174.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stampdb-1.0.0-cp310-cp310-macosx_10_15_x86_64.whl (181.8 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

stampdb-1.0.0-cp39-cp39-win_amd64.whl (150.2 kB view details)

Uploaded CPython 3.9Windows x86-64

stampdb-1.0.0-cp39-cp39-win32.whl (132.0 kB view details)

Uploaded CPython 3.9Windows x86

stampdb-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

stampdb-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

stampdb-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stampdb-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

stampdb-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (174.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stampdb-1.0.0-cp39-cp39-macosx_10_15_x86_64.whl (181.9 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

stampdb-1.0.0-cp38-cp38-win_amd64.whl (144.3 kB view details)

Uploaded CPython 3.8Windows x86-64

stampdb-1.0.0-cp38-cp38-win32.whl (131.7 kB view details)

Uploaded CPython 3.8Windows x86

stampdb-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

stampdb-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

stampdb-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stampdb-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

stampdb-1.0.0-cp38-cp38-macosx_11_0_arm64.whl (174.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stampdb-1.0.0-cp38-cp38-macosx_10_15_x86_64.whl (181.6 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

stampdb-1.0.0-cp37-cp37m-win_amd64.whl (135.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

stampdb-1.0.0-cp37-cp37m-win32.whl (124.1 kB view details)

Uploaded CPython 3.7mWindows x86

stampdb-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

stampdb-1.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

stampdb-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stampdb-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

stampdb-1.0.0-cp37-cp37m-macosx_10_15_x86_64.whl (164.8 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

File details

Details for the file stampdb-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 146.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e8fd1aca2cce5df587d363cbcb203f8312f44044e9677dda792609932857345c
MD5 74c506824713931c1db7872cbf333e34
BLAKE2b-256 9bb9db994d6c6fae82d7b8397686caf5531859cc94b8b18ed6c11c918dba532c

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 132.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a2d628947224bac5984b7f6d3a749884504c2fbfe50a453fa2420de7be4388ab
MD5 03b3c5dfeff5611cb52fcc81d79ed6d2
BLAKE2b-256 a5b010f613df2a0ef3f2f1281be83742ad33be44c5eafafcc12816186d600ed8

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0dc66d64eac8339c50176d598cf3f555b1205f9cc66ef2c2e12a3f9139c4a9f
MD5 a758f8114dcefba740f257523df2fd7a
BLAKE2b-256 0cf671c4bd3f0f2978043a35efb5ffb88b3a02e6524d7001f571f5f945155dd9

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c89892cf390a79f5f3dd29097ee737aa433ef1e6821d58406d1c009ce44c2f06
MD5 7e14c9731c20dfcb314157cf691ff85b
BLAKE2b-256 d45ea53dac3bbb0af0ad7c2dc9d68a44b59390f89cba3509e3d93328318c887a

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 326b5462a3691f460e4ad02663fe8c2a73c218e99d2b3ba2ac959f63b54b3e34
MD5 76178607dfb633babd72c2911823afe5
BLAKE2b-256 18a0a295944bbb70810902773f11a36eb025566113ffe0d81ca8586152af9643

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba23dad65ededf4ab00058d5722b1fe6262446d849b700081940ef51985c4ed0
MD5 41418783917880ac3bc5d512da1cfbc9
BLAKE2b-256 9a3566701cbb5f78de485b897540f53e82e71dcc3e4fc6c2892f851f9612d65e

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ed9b2fcb29d8e047c6867a5a2119905e6da84f922d67923891f9dc832e07f77
MD5 c0e1c4b7f6dfc8d4f7c792f41f915469
BLAKE2b-256 df410b462972f5c8f1d8084946ea2e48679c0cd79709b4f9160eb2e6e0b7fc4f

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f67d7439e2cf42b9afac333d1d7a13d178cc6f9dcacc0a48891df6955d4944a1
MD5 4a96d47787506b0ebbbce6ee217ad94c
BLAKE2b-256 cf6b34285c85afe9a1c44e8835e0cd03401e72a532558ae23534bf3fd0a73cd3

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 146.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca890c42ee6d1e087fa31d23a342b89c760dfa399f3811b2b9da093cb519a12c
MD5 76420de8bab109f1167b19603e38fca7
BLAKE2b-256 20aa81ffbd5dc510002aaf3650e6d55fe2f2dda794791afb4c648494861c53c7

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 132.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4febf594f54d737446f26aa3b71b5f4928842869a21845779d7474835e50f2cf
MD5 806570479757dc8a87466479dca75218
BLAKE2b-256 602452cb4c743bbfa1c9aae9d2414f2439e86a94e07bd26d49a1205b8d4dcb4c

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2137de248a1fcada0ed3d6883e29ac90a424fe18c722e1f4125c6a2e66bf697
MD5 4e22f62863d740774955d639f1f93fdb
BLAKE2b-256 3f509435d89bfb12ccb6de6feac6850b4e35519533df2aa105c58e132ceee4f2

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f03ed9ec4c2a007486177a726c28aec783639d616c1e930b64713262a27ee97
MD5 429076e5770a158de511a47128ded90e
BLAKE2b-256 f8b20693706b864e80a4875055c9e97f3c6a10cc4f448e914d953d428abcf020

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b1c808a1eaab107a069a98340497b3c43ef8262114ebff8edd733114a2e2a49
MD5 03eeeb1a92762e0804f59e0bca8a9a85
BLAKE2b-256 072aadb563dfb96adbcbf7a5fae58aa53e51a2684ae4fbcd90c53f32436347a0

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0a0014f7df216a17a65d11812dfc25516ce2343160fadefa17fd0f239b20cbf
MD5 08cb51f464c3dafbb257a68a6dd8c399
BLAKE2b-256 a1dcfe052145dce1a2e0a7e2636252cd49a0e15e31a3bcaaad2838e213d2310d

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0670fadaf9e4860999982c933e8fedf8ef2eb8f0543660734a04dfa857537157
MD5 41af835c27a37f59f1b78d05be54b686
BLAKE2b-256 d7d97988fa0eaf440594a97b59b8188ab143f96f16bffd128742b61a5b3dc6f2

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d29eb0b0f1194511c13e0a8187ca9a43ba4ed78f832813bea36980996a1df7c2
MD5 88ff6624ad2765de58ac718b8503466d
BLAKE2b-256 442681b363139c38f06a648f208c97a42d557ba5a00e34812ccbd5cb47727bb2

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 145.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b4e77960bd5232db215739eadf6902cd2ad16b70d2154163c820a67da247924
MD5 c66d6b299a6048072ab73ae7fde33e65
BLAKE2b-256 d31608167b8adcd9893df7e7da33a5f239e03addac4f6f611c4e5cd1f9f3e3df

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 132.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e1441f6e234df3ff47cb285e13aba55da54a8c12cbd6421cd29320e56004f2d3
MD5 92b188c949eab09eccb52b32edccec95
BLAKE2b-256 102ae7e668e1be2c2b332dd72eb56d1f9a1713a2e73497b9a7ae0d8abf8a97ee

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 800489e81aa4643ca4aa5070c33856e5ff405560e043d8374e22caff1491d3a5
MD5 8cc1f8ee7b0e634a43357177efbb4a20
BLAKE2b-256 e53e86e6322b25e399318932c48c5f6c3ce67122a5fd0923abe0c6b6a3a52f5e

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17dccd0ce0ab9b2ba276d6fa7aaa3491b456d17398f7d183ef7e965fc1ebe112
MD5 ea699e18952d386a1037ffc904b36f80
BLAKE2b-256 3821acfc56fa0968409b2ec58a0baa60b018d00be5cda3055057e2a62bc44ff4

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e0554bd8a8d5496231aeb1e5acfb3f71eef7e72ea6d50f7d0102e79ea51e9fa
MD5 fb869dcf114a771941d1d4672b083aed
BLAKE2b-256 ccbe52af1c974fb5432d529fffad8b02f8e4785104577a56ba1c734aca94ad53

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7adaaebc842b9c59733cc6c88c4bb4afc32b467bca099aa1e903ef2fcb643277
MD5 149fbb6b7a25e1cdff4177e633f2c722
BLAKE2b-256 5359cc57c9112fdc6c03b526c7cc0f643cf6f5246331844ae3f6921ad8f537b8

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 040ca9fee3d60a0614c06aa456577199ad93b39159d751039e8ed2c9ffa156ff
MD5 82fb86dd60b05ab402fc27f588ebb0c2
BLAKE2b-256 30e9ff19225035c83042a0ac980539f56d398e193322cc9cc1816dd302325b0c

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b40c66644aeac81475ace20b283bb77af9c41329aab831e1600d1db4f5cdbd04
MD5 6edc4368c4536591d1485f53cdf57374
BLAKE2b-256 79b4a381d393d1d5c8d9e3b01bb21286ead4ad8cc0109622ade795dc88b10621

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 144.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b63caf6e42b7500319dcc0a3bf8b91f7efb47e88be9523134680b2d3e0913fe6
MD5 7d758f0c3bd03d8a31ef37d378881ea9
BLAKE2b-256 56c3d9766f188a0c3f57af6ab46bf817aeee5b2838be7de0d3a6419720deead0

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 131.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f1522782f6e40156d229726d645fc4491d0cd3a1874f1936813865667b682709
MD5 640f3085a6deeabe5f4af5f634166a48
BLAKE2b-256 005bface5f8bd237d134549cf38c1ef02f91f43febd2eba174d913823d15d67f

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f8dc08fff6e4fdcf3d1ddd3d5227147f76f215c2e8914f8f02709caaac17df8
MD5 593682405051aa1026bdd12a6739776d
BLAKE2b-256 b44e322903a748bdccea9151aacef52f1fc469d406b8d34bc4f1e3840932774e

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9258f95191632d48f3738fca1da12bdc306f15c8369a0b98b4a9faeed7e70341
MD5 e8aa28acaf91023c372e3d9d1b0aa2ac
BLAKE2b-256 72ac79ad8726f450d999755f644abe057a8d2590efdbda79bb3ce9170b0de9e2

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 874e3c41e6376fa7bc9a49150e222bc5864b897bd8107936498234dcfc22d6d1
MD5 4ca8adde6645069ff84e8cf0bb73c5f3
BLAKE2b-256 8e5364dd03f253c7e15c26b3090eb4bf4895e77043ae75c0765b4b78fa9d327f

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f18ccb52d9049fc8645de076637e1a1d95010ac476a31203dc5eb9dadc901082
MD5 1d8de3e87b665d022c754cbaab06659c
BLAKE2b-256 ac9021196b6406534cdd2165a91908f5ad25f4fb73da754f50b0d512c7f71e23

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb62da823207f4387faed874dc77e467383ac0ea39266e82038dd9a2a7a9f419
MD5 ac6e8d3cb34f49ceb74526b438919d83
BLAKE2b-256 0b1252e513c2d4aeb0348d3d470c09a7c6a894fba5ac6696555994590ccd1120

See more details on using hashes here.

Provenance

The following attestation bundles were made for stampdb-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on aadya940/stampdb

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

File details

Details for the file stampdb-1.0.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5181f6fcc4e8badc6ad4db8f2930ba4063a04997d04cc56a499e977784e3f083
MD5 e4f1fa71e0e4aa3e6cef0d71d9e38233
BLAKE2b-256 36f6daafbe45a1a6c9c985b007eadef99e84dac44fda7a05074b7e3cf2b55c3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stampdb-1.0.0-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: release.yml on aadya940/stampdb

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

File details

Details for the file stampdb-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 150.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eca998904f03f228b597ec66529895442c0178910aae16e2c5368331958a2283
MD5 82a7c7b06226d25d0ac4f8033e659800
BLAKE2b-256 3d3d5224bf72b41633aa5775ac31af24c340681c993808ba395d50d3974c3b39

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 132.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c5aa6bb0861582870fe8e991e831a17283c5d28caf6aac49b9657587d1e9a800
MD5 d89e1d669fe07a7fddc93207b75a833d
BLAKE2b-256 6c75c3ddcfd125d6c32ad628950f13883e0a04c353896fa1fd4eacd88ac669f9

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d8660a96eac52cd46ef7a40889c2ed79e390ed0641bbfb3e02f94b2a7ba974d
MD5 42a7455a1eeb583d53e23eb9e957d87b
BLAKE2b-256 a5c5261a36cff7bdd1a8bd43f9471507fb618626423f567851d8a829e3502314

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f44168af23f9f26d26aafb28a352cfb92baa68d0aba3e42cc01425e404611406
MD5 dc7af76c98614f996cf8f5c270e8ff7e
BLAKE2b-256 3c27e0e6762ccb33a33210f1ecf1631f89165a018e5cfdbaaddf52db00df0c8a

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb36f11826f49eafa5522dd2144c92f667f42c52899936fa7d27dac3dbb96520
MD5 b6e530ec0a2ce87d1ae30e021edc238e
BLAKE2b-256 a8daab97447d053f6624becbedbdfe1e8da700f14ee12b5553d5b20802b79499

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 853fb5c562560a12ba095cbc1d6c90f8c67e0394b07308c8e362b6fabcdd6403
MD5 bf912789ff02cead941b1702b4e83fcc
BLAKE2b-256 00f0028ca4cb4b19ef2fc0d692899456c12591969822a969b94025008ea72fc6

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 733e57cd28bc30d7c9d8ec285dd2b764fc3a23e2aef42195b29fdbdfa33005c4
MD5 6bd467ee07b860984f2e23669b9774e7
BLAKE2b-256 9a0c1b8a625b33c001bacaab9876e645b7208c9acb86bacaf5003e0aab8042c1

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4cf3c565dcc8f43cd59aea375aae2ed518be1a5a4b94e820034b7a42f17e3858
MD5 9d57b9a081b8695fa79d16176d32dfb0
BLAKE2b-256 fba9fbf45f1dfaf74dccefe8822007b383fd0f23be1e242967c2dec89586c203

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 144.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 54983a631a79cb33ba4a95768280244653bee83d2f272fe92315c685d38a3721
MD5 8da0b539562d54c4adae489318e5048f
BLAKE2b-256 6fab2a54dca98236e16120434bb78bcc3e3f58042728185b485cfd4305d85df9

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 131.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e5ad4a637dacc752a7474cb8836b1e3af7c6c349c38b0406c9f7d0e2cc2451bc
MD5 5d96af4ce5b1cc520bc323f8faab21ba
BLAKE2b-256 1060761c1c9ee3664f3e3b9c12cb2862f58cc7ee76521dda9515f18fe5e73740

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f28b8f6a660bba3dfeed1bf03495b6d7851b7d5c60b14d2d93503cce6c0202d9
MD5 ece06cade9ab656b2e3550180c96b1f5
BLAKE2b-256 d9ea8fc1b19c6d0ebc21d30de94e71d20d3542a0cc523cd0a655a80a72f94e82

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04adc2b050a777f555b0bbcc86ef2d7c7ec89f21d8429569a1d6df07688381b7
MD5 807eba1ff1b7f1b46a541feae7e985d6
BLAKE2b-256 f44c240a9bf1fd57548c68447b9ca27a429b4401f0508fdcb0c094a09cc20f77

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ff5cab91e209e3cd595a1a53271b1d88a2a32ded26854293c1dbe5c9e8fbced
MD5 4f529eaf404fcc682d528a4834af5806
BLAKE2b-256 70334589c58dbd12740d27d98c2b5ccc8fb83eee4a33458caa41c5391f8b11ea

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d460c98342f02b6dc263cd2626f0af5e1d1f2aae3fe0cd2ca1d2bb5612a2d67
MD5 a8ecdceae697fec65ef73987bfdc39c2
BLAKE2b-256 b981e4382a641bc482c09319aca4880282afa94aab2b028a595feae9f2100eea

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f56d11cc9d0b2003b912880f56f466d7f8154d91a7a4d2d78e736343710e4c1
MD5 f727034c89c51231fa294f29a9e96eb7
BLAKE2b-256 686edffc0c91d63b4cd16a2b4c9c128a68fac7e9a6725fa7ca8a7e368c4e536e

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4bba1b7dcf337334514b6b658a88fa9f5184fb28615ed3ab4cfd5cb0743d9054
MD5 72a59944880241e4d1b8aa90c872f61b
BLAKE2b-256 119e93253dc9c161e4d9a4ec1fb74b0f89dc8f73953d4466be6dc1112135126b

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 135.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e7bccf0faaa0b249aeba90ae435398a8926d7a342f5918eb6158f24e70f15bbc
MD5 96e77f551055fd5cecbc91fe63af63cc
BLAKE2b-256 915f8ca18896cc16979c7ffd096bde709028c34af7d49480946ffe0b627a4a81

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: stampdb-1.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 124.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for stampdb-1.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4441aabdf61e729eeae6ca47e2ca0c7b91eac46319fc00a348b3c2798d919a53
MD5 df9b13469371424eb3090572d09e0bc8
BLAKE2b-256 3db521bbe9c4d7fad718826a69eeb171fa292949848cb2a801d38850b07b486b

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d12e6718d900b8816c50f7498583c5ef890d8d0d6765cea3f067c7a6e5f9085
MD5 8d90aabce3ea2ddde072f2e0d03a949c
BLAKE2b-256 366256e45560f87d49082ac9327f0669c32f7eba82559ac9cce1aaf00fbd6ebf

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3281b10fef6ecb0d2b123d03a56e6c4035cf44927d016ff4aa9ab273aeca581
MD5 f39fbc0b4b7efe646944b0afa4527ef4
BLAKE2b-256 718d8cf14b318684bd983d765c59ffdf420cb00241a5565b34b2c3e540afa813

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ad787b6b77d5cbdebd77be8cb67d981dc22d6808e1a42d2e3fbc1f8a6dbcde9
MD5 6ed9a9a856afb2322200a519d7440669
BLAKE2b-256 5bd16df49cbe7ad2c102a3b6c53d60043bb2adfdf6c6d922b784707981d97f9f

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c435fa3e375a8c85d3a1b9bf85d99c12e5cf2578053224c65d0f185b7c5f940
MD5 545e14f75f3119e829ba0647d9690e66
BLAKE2b-256 f9581246f5a244a28dfe7c40b315e369e0bed14da7ace06b3d027affc0bc53a2

See more details on using hashes here.

File details

Details for the file stampdb-1.0.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stampdb-1.0.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a966dedf13f7bf9ae4a7d70e9eeb5be73d445dbb51cca71837d7065c48a15c70
MD5 56384ee6307e6b1713d1aa74ed9924d9
BLAKE2b-256 b573cda3c16057606c166fffbe22db5549e93b5dd44e327754efd476a84a2131

See more details on using hashes here.

Supported by

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